ERC-721
Overview
Max Total Supply
4,999 WAGTR
Holders
342
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
15 WAGTRLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WeAreAllGoingToRise
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.4; pragma abicoder v2; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import './ERC721B.sol'; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract WeAreAllGoingToRise is ERC721B, Ownable { using Strings for uint256; string public baseURI = ""; bool public isSaleActive = false; uint256 public constant MAX_TOKENS = 4999; uint256 public tokenPrice; uint256 public constant maxTokenPurchase = 15; using SafeMath for uint256; using Strings for uint256; uint256 public devReserve = 5; event NFTMINTED(uint256 tokenId, address owner); constructor() ERC721B("We Are All Going To Rise", "WAGTR") {} function _baseURI() internal view virtual returns (string memory) { return baseURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function _tokenPrice() internal view virtual returns (uint256) { return tokenPrice; } function setPrice(uint256 _newPrice) public onlyOwner { tokenPrice = _newPrice; } function activateSale() external onlyOwner { isSaleActive = !isSaleActive; } function exists(uint256 tokenId) public view returns (bool) { return _exists(tokenId); } function Withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{ value: address(this).balance }(""); require(os); } function reserveTokens(address dev, uint256 reserveAmount) external onlyOwner { require( reserveAmount > 0 && reserveAmount <= devReserve, "Dev reserve depleted" ); totalSupply().add(1); _mint(dev, reserveAmount); } function mintNFT(address to, uint256 quantity) external payable { require(isSaleActive, "Sale not Active"); require( quantity > 0 && quantity <= maxTokenPurchase, "Nothing Selected to Mint" ); require( totalSupply().add(quantity) <= MAX_TOKENS, "Mint is going over max per transaction" ); require( msg.value >= tokenPrice.mul(quantity), "Invalid amount sent" ); _mint(to, quantity); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json")) : ""; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error UnableDetermineTokenOwner(); error UnableGetTokenOwnerByIndex(); error URIQueryForNonexistentToken(); /** * Updated, minimalist and gas efficient version of OpenZeppelins ERC721 contract. * Includes the Metadata and Enumerable extension. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * Does not support burning tokens * * @author beskay0x * Credits: chiru-labs, solmate, transmissions11, nftchance, squeebo_nft and others */ abstract contract ERC721B { /*/////////////////////////////////////////////////////////////// EVENTS //////////////////////////////////////////////////////////////*/ event Transfer(address indexed from, address indexed to, uint256 indexed id); event Approval(address indexed owner, address indexed spender, uint256 indexed id); event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /*/////////////////////////////////////////////////////////////// METADATA STORAGE/LOGIC //////////////////////////////////////////////////////////////*/ string public name; string public symbol; function tokenURI(uint256 tokenId) public view virtual returns (string memory); /*/////////////////////////////////////////////////////////////// ERC721 STORAGE //////////////////////////////////////////////////////////////*/ // Array which maps token ID to address (index is tokenID) address[] internal _owners; // 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; /*/////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor(string memory _name, string memory _symbol) { name = _name; symbol = _symbol; } /*/////////////////////////////////////////////////////////////// ERC165 LOGIC //////////////////////////////////////////////////////////////*/ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165 interfaceId == 0x80ac58cd || // ERC165 Interface ID for ERC721 interfaceId == 0x780e9d63 || // ERC165 Interface ID for ERC721Enumerable interfaceId == 0x5b5e139f; // ERC165 Interface ID for ERC721Metadata } /*/////////////////////////////////////////////////////////////// ERC721ENUMERABLE LOGIC //////////////////////////////////////////////////////////////*/ /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view returns (uint256) { return _owners.length; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * Dont call this function on chain from another smart contract, since it can become quite expensive */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns (uint256 tokenId) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 count; uint256 qty = _owners.length; // Cannot realistically overflow, since we are using uint256 unchecked { for (tokenId; tokenId < qty; tokenId++) { if (owner == ownerOf(tokenId)) { if (count == index) return tokenId; else count++; } } } revert UnableGetTokenOwnerByIndex(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual returns (uint256) { if (index >= totalSupply()) revert TokenIndexOutOfBounds(); return index; } /*/////////////////////////////////////////////////////////////// ERC721 LOGIC //////////////////////////////////////////////////////////////*/ /** * @dev Iterates through _owners array, returns balance of address * It is not recommended to call this function from another smart contract * as it can become quite expensive -- call this function off chain instead. */ function balanceOf(address owner) public view virtual returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); uint256 count; uint256 qty = _owners.length; // Cannot realistically overflow, since we are using uint256 unchecked { for (uint256 i; i < qty; i++) { if (owner == ownerOf(i)) { count++; } } } return count; } /** * @dev See {IERC721-ownerOf}. * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownerOf(uint256 tokenId) public view virtual returns (address) { if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken(); // Cannot realistically overflow, since we are using uint256 unchecked { for (tokenId; ; tokenId++) { if (_owners[tokenId] != address(0)) { return _owners[tokenId]; } } } revert UnableDetermineTokenOwner(); } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual { address owner = ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (msg.sender != owner && !isApprovedForAll(owner, msg.sender)) revert ApprovalCallerNotOwnerNorApproved(); _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual { if (operator == msg.sender) revert ApproveToCaller(); _operatorApprovals[msg.sender][operator] = approved; emit ApprovalForAll(msg.sender, operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual { if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken(); if (ownerOf(tokenId) != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); bool isApprovedOrOwner = (msg.sender == from || msg.sender == getApproved(tokenId) || isApprovedForAll(from, msg.sender)); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); // delete token approvals from previous owner delete _tokenApprovals[tokenId]; _owners[tokenId] = to; // if token ID below transferred one isnt set, set it to previous owner // if tokenid is zero, skip this to prevent underflow if (tokenId > 0 && _owners[tokenId - 1] == address(0)) { _owners[tokenId - 1] = from; } emit Transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id ) public virtual { safeTransferFrom(from, to, id, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, bytes memory data ) public virtual { transferFrom(from, to, id); if (!_checkOnERC721Received(from, to, id, data)) revert TransferToNonERC721ReceiverImplementer(); } /** * @dev Returns whether `tokenId` exists. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length; } /** * @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.code.length == 0) return true; try IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) revert TransferToNonERC721ReceiverImplementer(); assembly { revert(add(32, reason), mload(reason)) } } } /*/////////////////////////////////////////////////////////////// INTERNAL MINT LOGIC //////////////////////////////////////////////////////////////*/ /** * @dev check if contract confirms token transfer, if not - reverts * unlike the standard ERC721 implementation this is only called once per mint, * no matter how many tokens get minted, since it is useless to check this * requirement several times -- if the contract confirms one token, * it will confirm all additional ones too. * This saves us around 5k gas per additional mint */ function _safeMint(address to, uint256 qty) internal virtual { _safeMint(to, qty, ''); } function _safeMint( address to, uint256 qty, bytes memory data ) internal virtual { _mint(to, qty); if (!_checkOnERC721Received(address(0), to, _owners.length - 1, data)) revert TransferToNonERC721ReceiverImplementer(); } function _mint(address to, uint256 qty) internal virtual { if (to == address(0)) revert MintToZeroAddress(); if (qty == 0) revert MintZeroQuantity(); uint256 _currentIndex = _owners.length; // Cannot realistically overflow, since we are using uint256 unchecked { for (uint256 i; i < qty - 1; i++) { _owners.push(); emit Transfer(address(0), to, _currentIndex + i); } } // set last index to receiver _owners.push(to); emit Transfer(address(0), to, _currentIndex + (qty - 1)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","type":"error"},{"inputs":[],"name":"UnableGetTokenOwnerByIndex","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"NFTMINTED","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"activateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"dev","type":"address"},{"internalType":"uint256","name":"reserveAmount","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","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":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600690805190602001906200002b929190620001ee565b506000600760006101000a81548160ff02191690831515021790555060056009553480156200005957600080fd5b506040518060400160405280601881526020017f57652041726520416c6c20476f696e6720546f205269736500000000000000008152506040518060400160405280600581526020017f57414754520000000000000000000000000000000000000000000000000000008152508160009080519060200190620000de929190620001ee565b508060019080519060200190620000f7929190620001ee565b5050506200011a6200010e6200012060201b60201c565b6200012860201b60201c565b62000303565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001fc906200029e565b90600052602060002090601f0160209004810192826200022057600085556200026c565b82601f106200023b57805160ff19168380011785556200026c565b828001600101855582156200026c579182015b828111156200026b5782518255916020019190600101906200024e565b5b5090506200027b91906200027f565b5090565b5b808211156200029a57600081600090555060010162000280565b5090565b60006002820490506001821680620002b757607f821691505b60208210811415620002ce57620002cd620002d4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61335880620003136000396000f3fe6080604052600436106101e35760003560e01c80636c0360eb11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c5146106c4578063f2fde38b14610701578063f47c84c51461072a578063fcd2a42714610755576101e3565b8063a22cb4651461061e578063b88d4fde14610647578063c721f08d14610670578063c87b56dd14610687576101e3565b80637ff9b596116100d15780637ff9b596146105745780638da5cb5b1461059f57806391b7f5ed146105ca57806395d89b41146105f3576101e3565b80636c0360eb146104cc57806370a08231146104f7578063715018a61461053457806378cf19e91461054b576101e3565b80633c168eab1161017a57806355f804b31161014957806355f804b314610431578063564566a81461045a57806357ea89b6146104855780636352211e1461048f576101e3565b80633c168eab1461037257806342842e0e1461038e5780634f558e79146103b75780634f6ccce7146103f4576101e3565b806309aa3dcf116101b657806309aa3dcf146102b657806318160ddd146102e157806323b872dd1461030c5780632f745c5914610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612752565b610780565b60405161021c9190612afb565b60405180910390f35b34801561023157600080fd5b5061023a610842565b6040516102479190612b16565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906127f5565b6108d0565b6040516102849190612a94565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612712565b61094c565b005b3480156102c257600080fd5b506102cb610aeb565b6040516102d89190612c38565b60405180910390f35b3480156102ed57600080fd5b506102f6610af0565b6040516103039190612c38565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e91906125fc565b610afd565b005b34801561034157600080fd5b5061035c60048036038101906103579190612712565b610eb2565b6040516103699190612c38565b60405180910390f35b61038c60048036038101906103879190612712565b610fa2565b005b34801561039a57600080fd5b506103b560048036038101906103b091906125fc565b611104565b005b3480156103c357600080fd5b506103de60048036038101906103d991906127f5565b611124565b6040516103eb9190612afb565b60405180910390f35b34801561040057600080fd5b5061041b600480360381019061041691906127f5565b611136565b6040516104289190612c38565b60405180910390f35b34801561043d57600080fd5b50610458600480360381019061045391906127ac565b611180565b005b34801561046657600080fd5b5061046f611216565b60405161047c9190612afb565b60405180910390f35b61048d611229565b005b34801561049b57600080fd5b506104b660048036038101906104b191906127f5565b611325565b6040516104c39190612a94565b60405180910390f35b3480156104d857600080fd5b506104e1611431565b6040516104ee9190612b16565b60405180910390f35b34801561050357600080fd5b5061051e6004803603810190610519919061258f565b6114bf565b60405161052b9190612c38565b60405180910390f35b34801561054057600080fd5b5061054961159a565b005b34801561055757600080fd5b50610572600480360381019061056d9190612712565b611622565b005b34801561058057600080fd5b50610589611719565b6040516105969190612c38565b60405180910390f35b3480156105ab57600080fd5b506105b461171f565b6040516105c19190612a94565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec91906127f5565b611749565b005b3480156105ff57600080fd5b506106086117cf565b6040516106159190612b16565b60405180910390f35b34801561062a57600080fd5b50610645600480360381019061064091906126d2565b61185d565b005b34801561065357600080fd5b5061066e6004803603810190610669919061264f565b6119c0565b005b34801561067c57600080fd5b50610685611a13565b005b34801561069357600080fd5b506106ae60048036038101906106a991906127f5565b611abb565b6040516106bb9190612b16565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e691906125bc565b611b62565b6040516106f89190612afb565b60405180910390f35b34801561070d57600080fd5b506107286004803603810190610723919061258f565b611bf6565b005b34801561073657600080fd5b5061073f611cee565b60405161074c9190612c38565b60405180910390f35b34801561076157600080fd5b5061076a611cf4565b6040516107779190612c38565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107db57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080b575063780e9d6360e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6000805461084f90612ef3565b80601f016020809104026020016040519081016040528092919081815260200182805461087b90612ef3565b80156108c85780601f1061089d576101008083540402835291602001916108c8565b820191906000526020600020905b8154815290600101906020018083116108ab57829003601f168201915b505050505081565b60006108db82611cfa565b610911576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095782611325565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109bf576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610a025750610a008133611b62565b155b15610a39576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826003600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f81565b6000600280549050905090565b610b0681611cfa565b610b3c576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff16610b5c82611325565b73ffffffffffffffffffffffffffffffffffffffff1614610ba9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c10576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c7f5750610c50826108d0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610c905750610c8f8433611b62565b5b905080610cc9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690558260028381548110610d1457610d1361305d565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600082118015610de25750600073ffffffffffffffffffffffffffffffffffffffff166002600184610d8e9190612e09565b81548110610d9f57610d9e61305d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b15610e5157836002600184610df79190612e09565b81548110610e0857610e0761305d565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b6000610ebd836114bf565b8210610ef5576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060028054905090505b80831015610f6a57610f1283611325565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f5d5783821415610f54575050610f9c565b81806001019250505b8280600101935050610f01565b6040517f7339954700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b92915050565b600760009054906101000a900460ff16610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890612bd8565b60405180910390fd5b6000811180156110025750600f8111155b611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890612c18565b60405180910390fd5b61138761105e82611050610af0565b611d0b90919063ffffffff16565b111561109f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109690612bf8565b60405180910390fd5b6110b481600854611d2190919063ffffffff16565b3410156110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed90612b58565b60405180910390fd5b6111008282611d37565b5050565b61111f838383604051806020016040528060008152506119c0565b505050565b600061112f82611cfa565b9050919050565b6000611140610af0565b8210611178576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b611188611f60565b73ffffffffffffffffffffffffffffffffffffffff166111a661171f565b73ffffffffffffffffffffffffffffffffffffffff16146111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390612b78565b60405180910390fd5b80600690805190602001906112129291906123a3565b5050565b600760009054906101000a900460ff1681565b611231611f60565b73ffffffffffffffffffffffffffffffffffffffff1661124f61171f565b73ffffffffffffffffffffffffffffffffffffffff16146112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c90612b78565b60405180910390fd5b60006112af61171f565b73ffffffffffffffffffffffffffffffffffffffff16476040516112d290612a7f565b60006040518083038185875af1925050503d806000811461130f576040519150601f19603f3d011682016040523d82523d6000602084013e611314565b606091505b505090508061132257600080fd5b50565b600061133082611cfa565b611366576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff16600283815481106113935761139261305d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461141f57600282815481106113ed576113ec61305d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905061142c565b8180600101925050611367565b919050565b6006805461143e90612ef3565b80601f016020809104026020016040519081016040528092919081815260200182805461146a90612ef3565b80156114b75780601f1061148c576101008083540402835291602001916114b7565b820191906000526020600020905b81548152906001019060200180831161149a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611527576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080600280549050905060005b8181101561158f5761154681611325565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156115825782806001019350505b8080600101915050611535565b508192505050919050565b6115a2611f60565b73ffffffffffffffffffffffffffffffffffffffff166115c061171f565b73ffffffffffffffffffffffffffffffffffffffff1614611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d90612b78565b60405180910390fd5b6116206000611f68565b565b61162a611f60565b73ffffffffffffffffffffffffffffffffffffffff1661164861171f565b73ffffffffffffffffffffffffffffffffffffffff161461169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590612b78565b60405180910390fd5b6000811180156116b057506009548111155b6116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690612bb8565b60405180910390fd5b61170a60016116fc610af0565b611d0b90919063ffffffff16565b506117158282611d37565b5050565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611751611f60565b73ffffffffffffffffffffffffffffffffffffffff1661176f61171f565b73ffffffffffffffffffffffffffffffffffffffff16146117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90612b78565b60405180910390fd5b8060088190555050565b600180546117dc90612ef3565b80601f016020809104026020016040519081016040528092919081815260200182805461180890612ef3565b80156118555780601f1061182a57610100808354040283529160200191611855565b820191906000526020600020905b81548152906001019060200180831161183857829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118c3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119b49190612afb565b60405180910390a35050565b6119cb848484610afd565b6119d78484848461202e565b611a0d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611a1b611f60565b73ffffffffffffffffffffffffffffffffffffffff16611a3961171f565b73ffffffffffffffffffffffffffffffffffffffff1614611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8690612b78565b60405180910390fd5b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b6060611ac682611cfa565b611b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afc90612b98565b60405180910390fd5b6000611b0f6121b0565b90506000815111611b2f5760405180602001604052806000815250611b5a565b80611b3984612242565b604051602001611b4a929190612a50565b6040516020818303038152906040525b915050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bfe611f60565b73ffffffffffffffffffffffffffffffffffffffff16611c1c61171f565b73ffffffffffffffffffffffffffffffffffffffff1614611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6990612b78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd990612b38565b60405180910390fd5b611ceb81611f68565b50565b61138781565b60095481565b600060028054905082109050919050565b60008183611d199190612d28565b905092915050565b60008183611d2f9190612daf565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d9e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000811415611dd9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600280549050905060005b60018303811015611e84576002600181600181540180825580915050039060005260206000200160009054906101000a9050508082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48080600101915050611de6565b506002839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600182611ef59190612e09565b81611f009190612d28565b8373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808473ffffffffffffffffffffffffffffffffffffffff163b141561205857600190506121a8565b8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02338786866040518563ffffffff1660e01b81526004016120979493929190612aaf565b602060405180830381600087803b1580156120b157600080fd5b505af19250505080156120e257506040513d601f19601f820116820180604052508101906120df919061277f565b60015b61215c573d8060008114612112576040519150601f19603f3d011682016040523d82523d6000602084013e612117565b606091505b50600081511415612154576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b6060600680546121bf90612ef3565b80601f01602080910402602001604051908101604052809291908181526020018280546121eb90612ef3565b80156122385780601f1061220d57610100808354040283529160200191612238565b820191906000526020600020905b81548152906001019060200180831161221b57829003601f168201915b5050505050905090565b6060600082141561228a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061239e565b600082905060005b600082146122bc5780806122a590612f56565b915050600a826122b59190612d7e565b9150612292565b60008167ffffffffffffffff8111156122d8576122d761308c565b5b6040519080825280601f01601f19166020018201604052801561230a5781602001600182028036833780820191505090505b5090505b60008514612397576001826123239190612e09565b9150600a856123329190612f9f565b603061233e9190612d28565b60f81b8183815181106123545761235361305d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123909190612d7e565b945061230e565b8093505050505b919050565b8280546123af90612ef3565b90600052602060002090601f0160209004810192826123d15760008555612418565b82601f106123ea57805160ff1916838001178555612418565b82800160010185558215612418579182015b828111156124175782518255916020019190600101906123fc565b5b5090506124259190612429565b5090565b5b8082111561244257600081600090555060010161242a565b5090565b600061245961245484612c78565b612c53565b905082815260208101848484011115612475576124746130c0565b5b612480848285612eb1565b509392505050565b600061249b61249684612ca9565b612c53565b9050828152602081018484840111156124b7576124b66130c0565b5b6124c2848285612eb1565b509392505050565b6000813590506124d9816132c6565b92915050565b6000813590506124ee816132dd565b92915050565b600081359050612503816132f4565b92915050565b600081519050612518816132f4565b92915050565b600082601f830112612533576125326130bb565b5b8135612543848260208601612446565b91505092915050565b600082601f830112612561576125606130bb565b5b8135612571848260208601612488565b91505092915050565b6000813590506125898161330b565b92915050565b6000602082840312156125a5576125a46130ca565b5b60006125b3848285016124ca565b91505092915050565b600080604083850312156125d3576125d26130ca565b5b60006125e1858286016124ca565b92505060206125f2858286016124ca565b9150509250929050565b600080600060608486031215612615576126146130ca565b5b6000612623868287016124ca565b9350506020612634868287016124ca565b92505060406126458682870161257a565b9150509250925092565b60008060008060808587031215612669576126686130ca565b5b6000612677878288016124ca565b9450506020612688878288016124ca565b93505060406126998782880161257a565b925050606085013567ffffffffffffffff8111156126ba576126b96130c5565b5b6126c68782880161251e565b91505092959194509250565b600080604083850312156126e9576126e86130ca565b5b60006126f7858286016124ca565b9250506020612708858286016124df565b9150509250929050565b60008060408385031215612729576127286130ca565b5b6000612737858286016124ca565b92505060206127488582860161257a565b9150509250929050565b600060208284031215612768576127676130ca565b5b6000612776848285016124f4565b91505092915050565b600060208284031215612795576127946130ca565b5b60006127a384828501612509565b91505092915050565b6000602082840312156127c2576127c16130ca565b5b600082013567ffffffffffffffff8111156127e0576127df6130c5565b5b6127ec8482850161254c565b91505092915050565b60006020828403121561280b5761280a6130ca565b5b60006128198482850161257a565b91505092915050565b61282b81612e3d565b82525050565b61283a81612e4f565b82525050565b600061284b82612cda565b6128558185612cf0565b9350612865818560208601612ec0565b61286e816130cf565b840191505092915050565b600061288482612ce5565b61288e8185612d0c565b935061289e818560208601612ec0565b6128a7816130cf565b840191505092915050565b60006128bd82612ce5565b6128c78185612d1d565b93506128d7818560208601612ec0565b80840191505092915050565b60006128f0602683612d0c565b91506128fb826130e0565b604082019050919050565b6000612913601383612d0c565b915061291e8261312f565b602082019050919050565b6000612936600583612d1d565b915061294182613158565b600582019050919050565b6000612959602083612d0c565b915061296482613181565b602082019050919050565b600061297c602f83612d0c565b9150612987826131aa565b604082019050919050565b600061299f601483612d0c565b91506129aa826131f9565b602082019050919050565b60006129c2600f83612d0c565b91506129cd82613222565b602082019050919050565b60006129e5600083612d01565b91506129f08261324b565b600082019050919050565b6000612a08602683612d0c565b9150612a138261324e565b604082019050919050565b6000612a2b601883612d0c565b9150612a368261329d565b602082019050919050565b612a4a81612ea7565b82525050565b6000612a5c82856128b2565b9150612a6882846128b2565b9150612a7382612929565b91508190509392505050565b6000612a8a826129d8565b9150819050919050565b6000602082019050612aa96000830184612822565b92915050565b6000608082019050612ac46000830187612822565b612ad16020830186612822565b612ade6040830185612a41565b8181036060830152612af08184612840565b905095945050505050565b6000602082019050612b106000830184612831565b92915050565b60006020820190508181036000830152612b308184612879565b905092915050565b60006020820190508181036000830152612b51816128e3565b9050919050565b60006020820190508181036000830152612b7181612906565b9050919050565b60006020820190508181036000830152612b918161294c565b9050919050565b60006020820190508181036000830152612bb18161296f565b9050919050565b60006020820190508181036000830152612bd181612992565b9050919050565b60006020820190508181036000830152612bf1816129b5565b9050919050565b60006020820190508181036000830152612c11816129fb565b9050919050565b60006020820190508181036000830152612c3181612a1e565b9050919050565b6000602082019050612c4d6000830184612a41565b92915050565b6000612c5d612c6e565b9050612c698282612f25565b919050565b6000604051905090565b600067ffffffffffffffff821115612c9357612c9261308c565b5b612c9c826130cf565b9050602081019050919050565b600067ffffffffffffffff821115612cc457612cc361308c565b5b612ccd826130cf565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d3382612ea7565b9150612d3e83612ea7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d7357612d72612fd0565b5b828201905092915050565b6000612d8982612ea7565b9150612d9483612ea7565b925082612da457612da3612fff565b5b828204905092915050565b6000612dba82612ea7565b9150612dc583612ea7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612dfe57612dfd612fd0565b5b828202905092915050565b6000612e1482612ea7565b9150612e1f83612ea7565b925082821015612e3257612e31612fd0565b5b828203905092915050565b6000612e4882612e87565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ede578082015181840152602081019050612ec3565b83811115612eed576000848401525b50505050565b60006002820490506001821680612f0b57607f821691505b60208210811415612f1f57612f1e61302e565b5b50919050565b612f2e826130cf565b810181811067ffffffffffffffff82111715612f4d57612f4c61308c565b5b80604052505050565b6000612f6182612ea7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f9457612f93612fd0565b5b600182019050919050565b6000612faa82612ea7565b9150612fb583612ea7565b925082612fc557612fc4612fff565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420616d6f756e742073656e7400000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4465762072657365727665206465706c65746564000000000000000000000000600082015250565b7f53616c65206e6f74204163746976650000000000000000000000000000000000600082015250565b50565b7f4d696e7420697320676f696e67206f766572206d617820706572207472616e7360008201527f616374696f6e0000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7468696e672053656c656374656420746f204d696e740000000000000000600082015250565b6132cf81612e3d565b81146132da57600080fd5b50565b6132e681612e4f565b81146132f157600080fd5b50565b6132fd81612e5b565b811461330857600080fd5b50565b61331481612ea7565b811461331f57600080fd5b5056fea264697066735822122047f2b0569eaf04ad3b09e0db8ae0cd1c5161439222fb455b9aafc8aac989364264736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101e35760003560e01c80636c0360eb11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c5146106c4578063f2fde38b14610701578063f47c84c51461072a578063fcd2a42714610755576101e3565b8063a22cb4651461061e578063b88d4fde14610647578063c721f08d14610670578063c87b56dd14610687576101e3565b80637ff9b596116100d15780637ff9b596146105745780638da5cb5b1461059f57806391b7f5ed146105ca57806395d89b41146105f3576101e3565b80636c0360eb146104cc57806370a08231146104f7578063715018a61461053457806378cf19e91461054b576101e3565b80633c168eab1161017a57806355f804b31161014957806355f804b314610431578063564566a81461045a57806357ea89b6146104855780636352211e1461048f576101e3565b80633c168eab1461037257806342842e0e1461038e5780634f558e79146103b75780634f6ccce7146103f4576101e3565b806309aa3dcf116101b657806309aa3dcf146102b657806318160ddd146102e157806323b872dd1461030c5780632f745c5914610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612752565b610780565b60405161021c9190612afb565b60405180910390f35b34801561023157600080fd5b5061023a610842565b6040516102479190612b16565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906127f5565b6108d0565b6040516102849190612a94565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612712565b61094c565b005b3480156102c257600080fd5b506102cb610aeb565b6040516102d89190612c38565b60405180910390f35b3480156102ed57600080fd5b506102f6610af0565b6040516103039190612c38565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e91906125fc565b610afd565b005b34801561034157600080fd5b5061035c60048036038101906103579190612712565b610eb2565b6040516103699190612c38565b60405180910390f35b61038c60048036038101906103879190612712565b610fa2565b005b34801561039a57600080fd5b506103b560048036038101906103b091906125fc565b611104565b005b3480156103c357600080fd5b506103de60048036038101906103d991906127f5565b611124565b6040516103eb9190612afb565b60405180910390f35b34801561040057600080fd5b5061041b600480360381019061041691906127f5565b611136565b6040516104289190612c38565b60405180910390f35b34801561043d57600080fd5b50610458600480360381019061045391906127ac565b611180565b005b34801561046657600080fd5b5061046f611216565b60405161047c9190612afb565b60405180910390f35b61048d611229565b005b34801561049b57600080fd5b506104b660048036038101906104b191906127f5565b611325565b6040516104c39190612a94565b60405180910390f35b3480156104d857600080fd5b506104e1611431565b6040516104ee9190612b16565b60405180910390f35b34801561050357600080fd5b5061051e6004803603810190610519919061258f565b6114bf565b60405161052b9190612c38565b60405180910390f35b34801561054057600080fd5b5061054961159a565b005b34801561055757600080fd5b50610572600480360381019061056d9190612712565b611622565b005b34801561058057600080fd5b50610589611719565b6040516105969190612c38565b60405180910390f35b3480156105ab57600080fd5b506105b461171f565b6040516105c19190612a94565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec91906127f5565b611749565b005b3480156105ff57600080fd5b506106086117cf565b6040516106159190612b16565b60405180910390f35b34801561062a57600080fd5b50610645600480360381019061064091906126d2565b61185d565b005b34801561065357600080fd5b5061066e6004803603810190610669919061264f565b6119c0565b005b34801561067c57600080fd5b50610685611a13565b005b34801561069357600080fd5b506106ae60048036038101906106a991906127f5565b611abb565b6040516106bb9190612b16565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e691906125bc565b611b62565b6040516106f89190612afb565b60405180910390f35b34801561070d57600080fd5b506107286004803603810190610723919061258f565b611bf6565b005b34801561073657600080fd5b5061073f611cee565b60405161074c9190612c38565b60405180910390f35b34801561076157600080fd5b5061076a611cf4565b6040516107779190612c38565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107db57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080b575063780e9d6360e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6000805461084f90612ef3565b80601f016020809104026020016040519081016040528092919081815260200182805461087b90612ef3565b80156108c85780601f1061089d576101008083540402835291602001916108c8565b820191906000526020600020905b8154815290600101906020018083116108ab57829003601f168201915b505050505081565b60006108db82611cfa565b610911576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095782611325565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109bf576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610a025750610a008133611b62565b155b15610a39576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826003600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f81565b6000600280549050905090565b610b0681611cfa565b610b3c576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff16610b5c82611325565b73ffffffffffffffffffffffffffffffffffffffff1614610ba9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c10576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c7f5750610c50826108d0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610c905750610c8f8433611b62565b5b905080610cc9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690558260028381548110610d1457610d1361305d565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600082118015610de25750600073ffffffffffffffffffffffffffffffffffffffff166002600184610d8e9190612e09565b81548110610d9f57610d9e61305d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b15610e5157836002600184610df79190612e09565b81548110610e0857610e0761305d565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b6000610ebd836114bf565b8210610ef5576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060028054905090505b80831015610f6a57610f1283611325565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f5d5783821415610f54575050610f9c565b81806001019250505b8280600101935050610f01565b6040517f7339954700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b92915050565b600760009054906101000a900460ff16610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890612bd8565b60405180910390fd5b6000811180156110025750600f8111155b611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890612c18565b60405180910390fd5b61138761105e82611050610af0565b611d0b90919063ffffffff16565b111561109f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109690612bf8565b60405180910390fd5b6110b481600854611d2190919063ffffffff16565b3410156110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed90612b58565b60405180910390fd5b6111008282611d37565b5050565b61111f838383604051806020016040528060008152506119c0565b505050565b600061112f82611cfa565b9050919050565b6000611140610af0565b8210611178576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b611188611f60565b73ffffffffffffffffffffffffffffffffffffffff166111a661171f565b73ffffffffffffffffffffffffffffffffffffffff16146111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390612b78565b60405180910390fd5b80600690805190602001906112129291906123a3565b5050565b600760009054906101000a900460ff1681565b611231611f60565b73ffffffffffffffffffffffffffffffffffffffff1661124f61171f565b73ffffffffffffffffffffffffffffffffffffffff16146112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c90612b78565b60405180910390fd5b60006112af61171f565b73ffffffffffffffffffffffffffffffffffffffff16476040516112d290612a7f565b60006040518083038185875af1925050503d806000811461130f576040519150601f19603f3d011682016040523d82523d6000602084013e611314565b606091505b505090508061132257600080fd5b50565b600061133082611cfa565b611366576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff16600283815481106113935761139261305d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461141f57600282815481106113ed576113ec61305d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905061142c565b8180600101925050611367565b919050565b6006805461143e90612ef3565b80601f016020809104026020016040519081016040528092919081815260200182805461146a90612ef3565b80156114b75780601f1061148c576101008083540402835291602001916114b7565b820191906000526020600020905b81548152906001019060200180831161149a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611527576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080600280549050905060005b8181101561158f5761154681611325565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156115825782806001019350505b8080600101915050611535565b508192505050919050565b6115a2611f60565b73ffffffffffffffffffffffffffffffffffffffff166115c061171f565b73ffffffffffffffffffffffffffffffffffffffff1614611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d90612b78565b60405180910390fd5b6116206000611f68565b565b61162a611f60565b73ffffffffffffffffffffffffffffffffffffffff1661164861171f565b73ffffffffffffffffffffffffffffffffffffffff161461169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590612b78565b60405180910390fd5b6000811180156116b057506009548111155b6116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690612bb8565b60405180910390fd5b61170a60016116fc610af0565b611d0b90919063ffffffff16565b506117158282611d37565b5050565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611751611f60565b73ffffffffffffffffffffffffffffffffffffffff1661176f61171f565b73ffffffffffffffffffffffffffffffffffffffff16146117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90612b78565b60405180910390fd5b8060088190555050565b600180546117dc90612ef3565b80601f016020809104026020016040519081016040528092919081815260200182805461180890612ef3565b80156118555780601f1061182a57610100808354040283529160200191611855565b820191906000526020600020905b81548152906001019060200180831161183857829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118c3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119b49190612afb565b60405180910390a35050565b6119cb848484610afd565b6119d78484848461202e565b611a0d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611a1b611f60565b73ffffffffffffffffffffffffffffffffffffffff16611a3961171f565b73ffffffffffffffffffffffffffffffffffffffff1614611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8690612b78565b60405180910390fd5b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b6060611ac682611cfa565b611b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afc90612b98565b60405180910390fd5b6000611b0f6121b0565b90506000815111611b2f5760405180602001604052806000815250611b5a565b80611b3984612242565b604051602001611b4a929190612a50565b6040516020818303038152906040525b915050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bfe611f60565b73ffffffffffffffffffffffffffffffffffffffff16611c1c61171f565b73ffffffffffffffffffffffffffffffffffffffff1614611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6990612b78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd990612b38565b60405180910390fd5b611ceb81611f68565b50565b61138781565b60095481565b600060028054905082109050919050565b60008183611d199190612d28565b905092915050565b60008183611d2f9190612daf565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d9e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000811415611dd9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600280549050905060005b60018303811015611e84576002600181600181540180825580915050039060005260206000200160009054906101000a9050508082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48080600101915050611de6565b506002839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600182611ef59190612e09565b81611f009190612d28565b8373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808473ffffffffffffffffffffffffffffffffffffffff163b141561205857600190506121a8565b8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02338786866040518563ffffffff1660e01b81526004016120979493929190612aaf565b602060405180830381600087803b1580156120b157600080fd5b505af19250505080156120e257506040513d601f19601f820116820180604052508101906120df919061277f565b60015b61215c573d8060008114612112576040519150601f19603f3d011682016040523d82523d6000602084013e612117565b606091505b50600081511415612154576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b6060600680546121bf90612ef3565b80601f01602080910402602001604051908101604052809291908181526020018280546121eb90612ef3565b80156122385780601f1061220d57610100808354040283529160200191612238565b820191906000526020600020905b81548152906001019060200180831161221b57829003601f168201915b5050505050905090565b6060600082141561228a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061239e565b600082905060005b600082146122bc5780806122a590612f56565b915050600a826122b59190612d7e565b9150612292565b60008167ffffffffffffffff8111156122d8576122d761308c565b5b6040519080825280601f01601f19166020018201604052801561230a5781602001600182028036833780820191505090505b5090505b60008514612397576001826123239190612e09565b9150600a856123329190612f9f565b603061233e9190612d28565b60f81b8183815181106123545761235361305d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123909190612d7e565b945061230e565b8093505050505b919050565b8280546123af90612ef3565b90600052602060002090601f0160209004810192826123d15760008555612418565b82601f106123ea57805160ff1916838001178555612418565b82800160010185558215612418579182015b828111156124175782518255916020019190600101906123fc565b5b5090506124259190612429565b5090565b5b8082111561244257600081600090555060010161242a565b5090565b600061245961245484612c78565b612c53565b905082815260208101848484011115612475576124746130c0565b5b612480848285612eb1565b509392505050565b600061249b61249684612ca9565b612c53565b9050828152602081018484840111156124b7576124b66130c0565b5b6124c2848285612eb1565b509392505050565b6000813590506124d9816132c6565b92915050565b6000813590506124ee816132dd565b92915050565b600081359050612503816132f4565b92915050565b600081519050612518816132f4565b92915050565b600082601f830112612533576125326130bb565b5b8135612543848260208601612446565b91505092915050565b600082601f830112612561576125606130bb565b5b8135612571848260208601612488565b91505092915050565b6000813590506125898161330b565b92915050565b6000602082840312156125a5576125a46130ca565b5b60006125b3848285016124ca565b91505092915050565b600080604083850312156125d3576125d26130ca565b5b60006125e1858286016124ca565b92505060206125f2858286016124ca565b9150509250929050565b600080600060608486031215612615576126146130ca565b5b6000612623868287016124ca565b9350506020612634868287016124ca565b92505060406126458682870161257a565b9150509250925092565b60008060008060808587031215612669576126686130ca565b5b6000612677878288016124ca565b9450506020612688878288016124ca565b93505060406126998782880161257a565b925050606085013567ffffffffffffffff8111156126ba576126b96130c5565b5b6126c68782880161251e565b91505092959194509250565b600080604083850312156126e9576126e86130ca565b5b60006126f7858286016124ca565b9250506020612708858286016124df565b9150509250929050565b60008060408385031215612729576127286130ca565b5b6000612737858286016124ca565b92505060206127488582860161257a565b9150509250929050565b600060208284031215612768576127676130ca565b5b6000612776848285016124f4565b91505092915050565b600060208284031215612795576127946130ca565b5b60006127a384828501612509565b91505092915050565b6000602082840312156127c2576127c16130ca565b5b600082013567ffffffffffffffff8111156127e0576127df6130c5565b5b6127ec8482850161254c565b91505092915050565b60006020828403121561280b5761280a6130ca565b5b60006128198482850161257a565b91505092915050565b61282b81612e3d565b82525050565b61283a81612e4f565b82525050565b600061284b82612cda565b6128558185612cf0565b9350612865818560208601612ec0565b61286e816130cf565b840191505092915050565b600061288482612ce5565b61288e8185612d0c565b935061289e818560208601612ec0565b6128a7816130cf565b840191505092915050565b60006128bd82612ce5565b6128c78185612d1d565b93506128d7818560208601612ec0565b80840191505092915050565b60006128f0602683612d0c565b91506128fb826130e0565b604082019050919050565b6000612913601383612d0c565b915061291e8261312f565b602082019050919050565b6000612936600583612d1d565b915061294182613158565b600582019050919050565b6000612959602083612d0c565b915061296482613181565b602082019050919050565b600061297c602f83612d0c565b9150612987826131aa565b604082019050919050565b600061299f601483612d0c565b91506129aa826131f9565b602082019050919050565b60006129c2600f83612d0c565b91506129cd82613222565b602082019050919050565b60006129e5600083612d01565b91506129f08261324b565b600082019050919050565b6000612a08602683612d0c565b9150612a138261324e565b604082019050919050565b6000612a2b601883612d0c565b9150612a368261329d565b602082019050919050565b612a4a81612ea7565b82525050565b6000612a5c82856128b2565b9150612a6882846128b2565b9150612a7382612929565b91508190509392505050565b6000612a8a826129d8565b9150819050919050565b6000602082019050612aa96000830184612822565b92915050565b6000608082019050612ac46000830187612822565b612ad16020830186612822565b612ade6040830185612a41565b8181036060830152612af08184612840565b905095945050505050565b6000602082019050612b106000830184612831565b92915050565b60006020820190508181036000830152612b308184612879565b905092915050565b60006020820190508181036000830152612b51816128e3565b9050919050565b60006020820190508181036000830152612b7181612906565b9050919050565b60006020820190508181036000830152612b918161294c565b9050919050565b60006020820190508181036000830152612bb18161296f565b9050919050565b60006020820190508181036000830152612bd181612992565b9050919050565b60006020820190508181036000830152612bf1816129b5565b9050919050565b60006020820190508181036000830152612c11816129fb565b9050919050565b60006020820190508181036000830152612c3181612a1e565b9050919050565b6000602082019050612c4d6000830184612a41565b92915050565b6000612c5d612c6e565b9050612c698282612f25565b919050565b6000604051905090565b600067ffffffffffffffff821115612c9357612c9261308c565b5b612c9c826130cf565b9050602081019050919050565b600067ffffffffffffffff821115612cc457612cc361308c565b5b612ccd826130cf565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d3382612ea7565b9150612d3e83612ea7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d7357612d72612fd0565b5b828201905092915050565b6000612d8982612ea7565b9150612d9483612ea7565b925082612da457612da3612fff565b5b828204905092915050565b6000612dba82612ea7565b9150612dc583612ea7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612dfe57612dfd612fd0565b5b828202905092915050565b6000612e1482612ea7565b9150612e1f83612ea7565b925082821015612e3257612e31612fd0565b5b828203905092915050565b6000612e4882612e87565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ede578082015181840152602081019050612ec3565b83811115612eed576000848401525b50505050565b60006002820490506001821680612f0b57607f821691505b60208210811415612f1f57612f1e61302e565b5b50919050565b612f2e826130cf565b810181811067ffffffffffffffff82111715612f4d57612f4c61308c565b5b80604052505050565b6000612f6182612ea7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f9457612f93612fd0565b5b600182019050919050565b6000612faa82612ea7565b9150612fb583612ea7565b925082612fc557612fc4612fff565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420616d6f756e742073656e7400000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4465762072657365727665206465706c65746564000000000000000000000000600082015250565b7f53616c65206e6f74204163746976650000000000000000000000000000000000600082015250565b50565b7f4d696e7420697320676f696e67206f766572206d617820706572207472616e7360008201527f616374696f6e0000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7468696e672053656c656374656420746f204d696e740000000000000000600082015250565b6132cf81612e3d565b81146132da57600080fd5b50565b6132e681612e4f565b81146132f157600080fd5b50565b6132fd81612e5b565b811461330857600080fd5b50565b61331481612ea7565b811461331f57600080fd5b5056fea264697066735822122047f2b0569eaf04ad3b09e0db8ae0cd1c5161439222fb455b9aafc8aac989364264736f6c63430008070033
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.