ETH Price: $3,431.87 (+5.69%)
Gas: 6 Gwei

Token

STONEYs (STONEYs)
 

Overview

Max Total Supply

2,222 STONEYs

Holders

712

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
realniftees.eth
Balance
1 STONEYs
0x7866d20529ab2d70fe3c5a8384905fa5e811b813
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
STONEYs

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : STONEYs.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.3;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import '@openzeppelin/contracts/access/Ownable.sol';
import "@openzeppelin/contracts/utils/Counters.sol";

contract STONEYs is ERC721, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;

	// baseURI
    string private baseURI;

    // Price
    uint256 private price = 0.042 ether;

    // Current supply
    Counters.Counter public _nextTokenId;

    // Minting
    uint256 public constant MAX_SUPPLY = 2222;
    uint256 public constant MAX_PURCHASE = 10;

    // Sale state
    bool public saleIsActive = false;

    // Withdraw addresses
    address WITHDRAW_ADDRESS_1 = 0x6907495b99FF6270B6de708c04f3DaCAedD40A40;
    address WITHDRAW_ADDRESS_2 = 0x3049112397E7B9948f4Ba6618601B7298319eF5f;

    // Events
    event Mint(uint256 indexed fromTokenId, uint256 amount, address owner);

    /*
     *  Constructor
     */
    constructor(string memory newBaseURI) ERC721("STONEYs", "STONEYs")  {
        _nextTokenId.increment();
        setBaseURI(newBaseURI);
    }

    /*
     *  Minting
     */
    function mint(uint256 _amount) public payable {
        uint256 supply = totalSupply();

        require( saleIsActive, "Sale is not currently active" );
        require( _amount <= MAX_PURCHASE, "Can only mint 10 tokens at a time" );
        require( (supply + _amount) <= MAX_SUPPLY, "Purchase would exceed maximum supply" );
        require( msg.value >= (price * _amount), "Value sent is not correct" );

        for (uint256 i; i < _amount; i++) {
            _safeMint(msg.sender, _nextTokenId.current() - 1);
            _nextTokenId.increment();
        }

        emit Mint(supply, _amount, msg.sender);
    }

    /*
     *  Current Supply
     */
    function totalSupply() public view returns (uint256) {
        return _nextTokenId.current() - 1;
    }

    /*
     *  baseURI
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }

    /*
     *  Price
     */
    function getPrice() public view returns (uint256) {
        return price;
    }

    function setPrice(uint256 _price) public onlyOwner() {
        price = _price;
    }

    /*
     *  Sale state
     */
    function pauseSale() public onlyOwner() {
        require(saleIsActive == true, "Sale is already paused");
        saleIsActive = false;
    }

    function startSale() public onlyOwner() {
        require(saleIsActive == false, "Sale has already started");
        saleIsActive = true;
    }

    /*
     *  Withdraw
     */
    function withdraw() public onlyOwner {
        uint256 _each = address(this).balance / 2;
        require(payable(WITHDRAW_ADDRESS_1).send(_each));
        require(payable(WITHDRAW_ADDRESS_2).send(_each));
    }

}

File 2 of 12 : ERC721.sol
// 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 {}
}

File 3 of 12 : Ownable.sol
// 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);
    }
}

File 4 of 12 : Counters.sol
// 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;
    }
}

File 5 of 12 : IERC721.sol
// 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;
}

File 6 of 12 : IERC721Receiver.sol
// 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);
}

File 7 of 12 : IERC721Metadata.sol
// 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);
}

File 8 of 12 : Address.sol
// 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);
            }
        }
    }
}

File 9 of 12 : Context.sol
// 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;
    }
}

File 10 of 12 : Strings.sol
// 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);
    }
}

File 11 of 12 : ERC165.sol
// 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;
    }
}

File 12 of 12 : IERC165.sol
// 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_nextTokenId","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","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":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052669536c7089100006008556000600a60006101000a81548160ff021916908315150217905550736907495b99ff6270b6de708c04f3dacaedd40a40600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733049112397e7b9948f4ba6618601b7298319ef5f600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000e157600080fd5b50604051620040cf380380620040cf8339818101604052810190620001079190620004d1565b6040518060400160405280600781526020017f53544f4e455973000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f53544f4e4559730000000000000000000000000000000000000000000000000081525081600090805190602001906200018b929190620003af565b508060019080519060200190620001a4929190620003af565b505050620001c7620001bb620001f660201b60201c565b620001fe60201b60201c565b620001de6009620002c460201b620017221760201c565b620001ef81620002da60201b60201c565b5062000709565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b620002ea620001f660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003106200038560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000360906200053d565b60405180910390fd5b806007908051906020019062000381929190620003af565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003bd9062000605565b90600052602060002090601f016020900481019282620003e157600085556200042d565b82601f10620003fc57805160ff19168380011785556200042d565b828001600101855582156200042d579182015b828111156200042c5782518255916020019190600101906200040f565b5b5090506200043c919062000440565b5090565b5b808211156200045b57600081600090555060010162000441565b5090565b600062000476620004708462000588565b6200055f565b9050828152602081018484840111156200048f57600080fd5b6200049c848285620005cf565b509392505050565b600082601f830112620004b657600080fd5b8151620004c88482602086016200045f565b91505092915050565b600060208284031215620004e457600080fd5b600082015167ffffffffffffffff811115620004ff57600080fd5b6200050d84828501620004a4565b91505092915050565b600062000525602083620005be565b91506200053282620006e0565b602082019050919050565b60006020820190508181036000830152620005588162000516565b9050919050565b60006200056b6200057e565b90506200057982826200063b565b919050565b6000604051905090565b600067ffffffffffffffff821115620005a657620005a5620006a0565b5b620005b182620006cf565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005ef578082015181840152602081019050620005d2565b83811115620005ff576000848401525b50505050565b600060028204905060018216806200061e57607f821691505b6020821081141562000635576200063462000671565b5b50919050565b6200064682620006cf565b810181811067ffffffffffffffff82111715620006685762000667620006a0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6139b680620007196000396000f3fe6080604052600436106101b75760003560e01c80637146bd08116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461059f578063e985e9c5146105dc578063eb8d244414610619578063f2fde38b14610644576101b7565b8063a22cb46514610536578063b66a0e5d1461055f578063b88d4fde14610576576101b7565b806391b7f5ed116100c657806391b7f5ed1461049b57806395d89b41146104c457806398d5fdca146104ef578063a0712d681461051a576101b7565b80637146bd081461042e578063715018a6146104595780638da5cb5b14610470576101b7565b80633ccfd60b1161015957806355367ba91161013357806355367ba91461037457806355f804b31461038b5780636352211e146103b457806370a08231146103f1576101b7565b80633ccfd60b1461030957806342842e0e146103205780634a60f62014610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806332cb6b0c146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906126f1565b61066d565b6040516101f09190612c0a565b60405180910390f35b34801561020557600080fd5b5061020e61074f565b60405161021b9190612c25565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612784565b6107e1565b6040516102589190612ba3565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906126b5565b610866565b005b34801561029657600080fd5b5061029f61097e565b6040516102ac9190612f07565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d791906125af565b61099b565b005b3480156102ea57600080fd5b506102f36109fb565b6040516103009190612f07565b60405180910390f35b34801561031557600080fd5b5061031e610a01565b005b34801561032c57600080fd5b50610347600480360381019061034291906125af565b610b51565b005b34801561035557600080fd5b5061035e610b71565b60405161036b9190612f07565b60405180910390f35b34801561038057600080fd5b50610389610b7d565b005b34801561039757600080fd5b506103b260048036038101906103ad9190612743565b610c6c565b005b3480156103c057600080fd5b506103db60048036038101906103d69190612784565b610d02565b6040516103e89190612ba3565b60405180910390f35b3480156103fd57600080fd5b506104186004803603810190610413919061254a565b610db4565b6040516104259190612f07565b60405180910390f35b34801561043a57600080fd5b50610443610e6c565b6040516104509190612f07565b60405180910390f35b34801561046557600080fd5b5061046e610e71565b005b34801561047c57600080fd5b50610485610ef9565b6040516104929190612ba3565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190612784565b610f23565b005b3480156104d057600080fd5b506104d9610fa9565b6040516104e69190612c25565b60405180910390f35b3480156104fb57600080fd5b5061050461103b565b6040516105119190612f07565b60405180910390f35b610534600480360381019061052f9190612784565b611045565b005b34801561054257600080fd5b5061055d60048036038101906105589190612679565b61120a565b005b34801561056b57600080fd5b5061057461138b565b005b34801561058257600080fd5b5061059d600480360381019061059891906125fe565b61147a565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190612784565b6114dc565b6040516105d39190612c25565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190612573565b611583565b6040516106109190612c0a565b60405180910390f35b34801561062557600080fd5b5061062e611617565b60405161063b9190612c0a565b60405180910390f35b34801561065057600080fd5b5061066b6004803603810190610666919061254a565b61162a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610748575061074782611738565b5b9050919050565b60606000805461075e906131e0565b80601f016020809104026020016040519081016040528092919081815260200182805461078a906131e0565b80156107d75780601f106107ac576101008083540402835291602001916107d7565b820191906000526020600020905b8154815290600101906020018083116107ba57829003601f168201915b5050505050905090565b60006107ec826117a2565b61082b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082290612de7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087182610d02565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d990612e87565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661090161180e565b73ffffffffffffffffffffffffffffffffffffffff161480610930575061092f8161092a61180e565b611583565b5b61096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690612d07565b60405180910390fd5b6109798383611816565b505050565b6000600161098c60096118cf565b61099691906130f6565b905090565b6109ac6109a661180e565b826118dd565b6109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e290612ec7565b60405180910390fd5b6109f68383836119bb565b505050565b6108ae81565b610a0961180e565b73ffffffffffffffffffffffffffffffffffffffff16610a27610ef9565b73ffffffffffffffffffffffffffffffffffffffff1614610a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7490612e27565b60405180910390fd5b6000600247610a8c919061306b565b9050600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610aee57600080fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610b4e57600080fd5b50565b610b6c8383836040518060200160405280600081525061147a565b505050565b60098060000154905081565b610b8561180e565b73ffffffffffffffffffffffffffffffffffffffff16610ba3610ef9565b73ffffffffffffffffffffffffffffffffffffffff1614610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf090612e27565b60405180910390fd5b60011515600a60009054906101000a900460ff16151514610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690612da7565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b610c7461180e565b73ffffffffffffffffffffffffffffffffffffffff16610c92610ef9565b73ffffffffffffffffffffffffffffffffffffffff1614610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf90612e27565b60405180910390fd5b8060079080519060200190610cfe92919061236e565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290612d47565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90612d27565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a81565b610e7961180e565b73ffffffffffffffffffffffffffffffffffffffff16610e97610ef9565b73ffffffffffffffffffffffffffffffffffffffff1614610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee490612e27565b60405180910390fd5b610ef76000611c17565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f2b61180e565b73ffffffffffffffffffffffffffffffffffffffff16610f49610ef9565b73ffffffffffffffffffffffffffffffffffffffff1614610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9690612e27565b60405180910390fd5b8060088190555050565b606060018054610fb8906131e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe4906131e0565b80156110315780601f1061100657610100808354040283529160200191611031565b820191906000526020600020905b81548152906001019060200180831161101457829003601f168201915b5050505050905090565b6000600854905090565b600061104f61097e565b9050600a60009054906101000a900460ff166110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790612ea7565b60405180910390fd5b600a8211156110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90612ee7565b60405180910390fd5b6108ae82826110f39190613015565b1115611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90612e07565b60405180910390fd5b81600854611142919061309c565b341015611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b90612d87565b60405180910390fd5b60005b828110156111cb576111ae33600161119f60096118cf565b6111a991906130f6565b611cdd565b6111b86009611722565b80806111c390613243565b915050611187565b50807f8334f87aeaf76e52b061d93ee968e51fdd3ad53ca04e80271249227997aab3a083336040516111fe929190612f22565b60405180910390a25050565b61121261180e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790612cc7565b60405180910390fd5b806005600061128d61180e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133a61180e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137f9190612c0a565b60405180910390a35050565b61139361180e565b73ffffffffffffffffffffffffffffffffffffffff166113b1610ef9565b73ffffffffffffffffffffffffffffffffffffffff1614611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe90612e27565b60405180910390fd5b60001515600a60009054906101000a900460ff1615151461145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145490612d67565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b61148b61148561180e565b836118dd565b6114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c190612ec7565b60405180910390fd5b6114d684848484611cfb565b50505050565b60606114e7826117a2565b611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d90612e67565b60405180910390fd5b6000611530611d57565b90506000815111611550576040518060200160405280600081525061157b565b8061155a84611de9565b60405160200161156b929190612b7f565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff1681565b61163261180e565b73ffffffffffffffffffffffffffffffffffffffff16611650610ef9565b73ffffffffffffffffffffffffffffffffffffffff16146116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90612e27565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d90612c67565b60405180910390fd5b61171f81611c17565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661188983610d02565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006118e8826117a2565b611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e90612ce7565b60405180910390fd5b600061193283610d02565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119a157508373ffffffffffffffffffffffffffffffffffffffff16611989846107e1565b73ffffffffffffffffffffffffffffffffffffffff16145b806119b257506119b18185611583565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119db82610d02565b73ffffffffffffffffffffffffffffffffffffffff1614611a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2890612e47565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9890612ca7565b60405180910390fd5b611aac838383611f96565b611ab7600082611816565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b0791906130f6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b5e9190613015565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611cf7828260405180602001604052806000815250611f9b565b5050565b611d068484846119bb565b611d1284848484611ff6565b611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4890612c47565b60405180910390fd5b50505050565b606060078054611d66906131e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611d92906131e0565b8015611ddf5780601f10611db457610100808354040283529160200191611ddf565b820191906000526020600020905b815481529060010190602001808311611dc257829003601f168201915b5050505050905090565b60606000821415611e31576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f91565b600082905060005b60008214611e63578080611e4c90613243565b915050600a82611e5c919061306b565b9150611e39565b60008167ffffffffffffffff811115611ea5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ed75781602001600182028036833780820191505090505b5090505b60008514611f8a57600182611ef091906130f6565b9150600a85611eff919061328c565b6030611f0b9190613015565b60f81b818381518110611f47577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f83919061306b565b9450611edb565b8093505050505b919050565b505050565b611fa5838361218d565b611fb26000848484611ff6565b611ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe890612c47565b60405180910390fd5b505050565b60006120178473ffffffffffffffffffffffffffffffffffffffff1661235b565b15612180578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261204061180e565b8786866040518563ffffffff1660e01b81526004016120629493929190612bbe565b602060405180830381600087803b15801561207c57600080fd5b505af19250505080156120ad57506040513d601f19601f820116820180604052508101906120aa919061271a565b60015b612130573d80600081146120dd576040519150601f19603f3d011682016040523d82523d6000602084013e6120e2565b606091505b50600081511415612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f90612c47565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612185565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f490612dc7565b60405180910390fd5b612206816117a2565b15612246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223d90612c87565b60405180910390fd5b61225260008383611f96565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a29190613015565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461237a906131e0565b90600052602060002090601f01602090048101928261239c57600085556123e3565b82601f106123b557805160ff19168380011785556123e3565b828001600101855582156123e3579182015b828111156123e25782518255916020019190600101906123c7565b5b5090506123f091906123f4565b5090565b5b8082111561240d5760008160009055506001016123f5565b5090565b600061242461241f84612f70565b612f4b565b90508281526020810184848401111561243c57600080fd5b61244784828561319e565b509392505050565b600061246261245d84612fa1565b612f4b565b90508281526020810184848401111561247a57600080fd5b61248584828561319e565b509392505050565b60008135905061249c81613924565b92915050565b6000813590506124b18161393b565b92915050565b6000813590506124c681613952565b92915050565b6000815190506124db81613952565b92915050565b600082601f8301126124f257600080fd5b8135612502848260208601612411565b91505092915050565b600082601f83011261251c57600080fd5b813561252c84826020860161244f565b91505092915050565b60008135905061254481613969565b92915050565b60006020828403121561255c57600080fd5b600061256a8482850161248d565b91505092915050565b6000806040838503121561258657600080fd5b60006125948582860161248d565b92505060206125a58582860161248d565b9150509250929050565b6000806000606084860312156125c457600080fd5b60006125d28682870161248d565b93505060206125e38682870161248d565b92505060406125f486828701612535565b9150509250925092565b6000806000806080858703121561261457600080fd5b60006126228782880161248d565b94505060206126338782880161248d565b935050604061264487828801612535565b925050606085013567ffffffffffffffff81111561266157600080fd5b61266d878288016124e1565b91505092959194509250565b6000806040838503121561268c57600080fd5b600061269a8582860161248d565b92505060206126ab858286016124a2565b9150509250929050565b600080604083850312156126c857600080fd5b60006126d68582860161248d565b92505060206126e785828601612535565b9150509250929050565b60006020828403121561270357600080fd5b6000612711848285016124b7565b91505092915050565b60006020828403121561272c57600080fd5b600061273a848285016124cc565b91505092915050565b60006020828403121561275557600080fd5b600082013567ffffffffffffffff81111561276f57600080fd5b61277b8482850161250b565b91505092915050565b60006020828403121561279657600080fd5b60006127a484828501612535565b91505092915050565b6127b68161312a565b82525050565b6127c58161313c565b82525050565b60006127d682612fd2565b6127e08185612fe8565b93506127f08185602086016131ad565b6127f981613379565b840191505092915050565b600061280f82612fdd565b6128198185612ff9565b93506128298185602086016131ad565b61283281613379565b840191505092915050565b600061284882612fdd565b612852818561300a565b93506128628185602086016131ad565b80840191505092915050565b600061287b603283612ff9565b91506128868261338a565b604082019050919050565b600061289e602683612ff9565b91506128a9826133d9565b604082019050919050565b60006128c1601c83612ff9565b91506128cc82613428565b602082019050919050565b60006128e4602483612ff9565b91506128ef82613451565b604082019050919050565b6000612907601983612ff9565b9150612912826134a0565b602082019050919050565b600061292a602c83612ff9565b9150612935826134c9565b604082019050919050565b600061294d603883612ff9565b915061295882613518565b604082019050919050565b6000612970602a83612ff9565b915061297b82613567565b604082019050919050565b6000612993602983612ff9565b915061299e826135b6565b604082019050919050565b60006129b6601883612ff9565b91506129c182613605565b602082019050919050565b60006129d9601983612ff9565b91506129e48261362e565b602082019050919050565b60006129fc601683612ff9565b9150612a0782613657565b602082019050919050565b6000612a1f602083612ff9565b9150612a2a82613680565b602082019050919050565b6000612a42602c83612ff9565b9150612a4d826136a9565b604082019050919050565b6000612a65602483612ff9565b9150612a70826136f8565b604082019050919050565b6000612a88602083612ff9565b9150612a9382613747565b602082019050919050565b6000612aab602983612ff9565b9150612ab682613770565b604082019050919050565b6000612ace602f83612ff9565b9150612ad9826137bf565b604082019050919050565b6000612af1602183612ff9565b9150612afc8261380e565b604082019050919050565b6000612b14601c83612ff9565b9150612b1f8261385d565b602082019050919050565b6000612b37603183612ff9565b9150612b4282613886565b604082019050919050565b6000612b5a602183612ff9565b9150612b65826138d5565b604082019050919050565b612b7981613194565b82525050565b6000612b8b828561283d565b9150612b97828461283d565b91508190509392505050565b6000602082019050612bb860008301846127ad565b92915050565b6000608082019050612bd360008301876127ad565b612be060208301866127ad565b612bed6040830185612b70565b8181036060830152612bff81846127cb565b905095945050505050565b6000602082019050612c1f60008301846127bc565b92915050565b60006020820190508181036000830152612c3f8184612804565b905092915050565b60006020820190508181036000830152612c608161286e565b9050919050565b60006020820190508181036000830152612c8081612891565b9050919050565b60006020820190508181036000830152612ca0816128b4565b9050919050565b60006020820190508181036000830152612cc0816128d7565b9050919050565b60006020820190508181036000830152612ce0816128fa565b9050919050565b60006020820190508181036000830152612d008161291d565b9050919050565b60006020820190508181036000830152612d2081612940565b9050919050565b60006020820190508181036000830152612d4081612963565b9050919050565b60006020820190508181036000830152612d6081612986565b9050919050565b60006020820190508181036000830152612d80816129a9565b9050919050565b60006020820190508181036000830152612da0816129cc565b9050919050565b60006020820190508181036000830152612dc0816129ef565b9050919050565b60006020820190508181036000830152612de081612a12565b9050919050565b60006020820190508181036000830152612e0081612a35565b9050919050565b60006020820190508181036000830152612e2081612a58565b9050919050565b60006020820190508181036000830152612e4081612a7b565b9050919050565b60006020820190508181036000830152612e6081612a9e565b9050919050565b60006020820190508181036000830152612e8081612ac1565b9050919050565b60006020820190508181036000830152612ea081612ae4565b9050919050565b60006020820190508181036000830152612ec081612b07565b9050919050565b60006020820190508181036000830152612ee081612b2a565b9050919050565b60006020820190508181036000830152612f0081612b4d565b9050919050565b6000602082019050612f1c6000830184612b70565b92915050565b6000604082019050612f376000830185612b70565b612f4460208301846127ad565b9392505050565b6000612f55612f66565b9050612f618282613212565b919050565b6000604051905090565b600067ffffffffffffffff821115612f8b57612f8a61334a565b5b612f9482613379565b9050602081019050919050565b600067ffffffffffffffff821115612fbc57612fbb61334a565b5b612fc582613379565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061302082613194565b915061302b83613194565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130605761305f6132bd565b5b828201905092915050565b600061307682613194565b915061308183613194565b925082613091576130906132ec565b5b828204905092915050565b60006130a782613194565b91506130b283613194565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130eb576130ea6132bd565b5b828202905092915050565b600061310182613194565b915061310c83613194565b92508282101561311f5761311e6132bd565b5b828203905092915050565b600061313582613174565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131cb5780820151818401526020810190506131b0565b838111156131da576000848401525b50505050565b600060028204905060018216806131f857607f821691505b6020821081141561320c5761320b61331b565b5b50919050565b61321b82613379565b810181811067ffffffffffffffff8211171561323a5761323961334a565b5b80604052505050565b600061324e82613194565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613281576132806132bd565b5b600182019050919050565b600061329782613194565b91506132a283613194565b9250826132b2576132b16132ec565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920737461727465640000000000000000600082015250565b7f56616c75652073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f53616c6520697320616c72656164792070617573656400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d6178696d756d20737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f742063757272656e746c792061637469766500000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b61392d8161312a565b811461393857600080fd5b50565b6139448161313c565b811461394f57600080fd5b50565b61395b81613148565b811461396657600080fd5b50565b61397281613194565b811461397d57600080fd5b5056fea26469706673582212209f2be33f9f45a9b06c77ecdcf323c4e559edd66346a7183700468741e78187b164736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002068747470733a2f2f6170692e73746f6e65792e6172742f6d657461646174612f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80637146bd08116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461059f578063e985e9c5146105dc578063eb8d244414610619578063f2fde38b14610644576101b7565b8063a22cb46514610536578063b66a0e5d1461055f578063b88d4fde14610576576101b7565b806391b7f5ed116100c657806391b7f5ed1461049b57806395d89b41146104c457806398d5fdca146104ef578063a0712d681461051a576101b7565b80637146bd081461042e578063715018a6146104595780638da5cb5b14610470576101b7565b80633ccfd60b1161015957806355367ba91161013357806355367ba91461037457806355f804b31461038b5780636352211e146103b457806370a08231146103f1576101b7565b80633ccfd60b1461030957806342842e0e146103205780634a60f62014610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806332cb6b0c146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906126f1565b61066d565b6040516101f09190612c0a565b60405180910390f35b34801561020557600080fd5b5061020e61074f565b60405161021b9190612c25565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612784565b6107e1565b6040516102589190612ba3565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906126b5565b610866565b005b34801561029657600080fd5b5061029f61097e565b6040516102ac9190612f07565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d791906125af565b61099b565b005b3480156102ea57600080fd5b506102f36109fb565b6040516103009190612f07565b60405180910390f35b34801561031557600080fd5b5061031e610a01565b005b34801561032c57600080fd5b50610347600480360381019061034291906125af565b610b51565b005b34801561035557600080fd5b5061035e610b71565b60405161036b9190612f07565b60405180910390f35b34801561038057600080fd5b50610389610b7d565b005b34801561039757600080fd5b506103b260048036038101906103ad9190612743565b610c6c565b005b3480156103c057600080fd5b506103db60048036038101906103d69190612784565b610d02565b6040516103e89190612ba3565b60405180910390f35b3480156103fd57600080fd5b506104186004803603810190610413919061254a565b610db4565b6040516104259190612f07565b60405180910390f35b34801561043a57600080fd5b50610443610e6c565b6040516104509190612f07565b60405180910390f35b34801561046557600080fd5b5061046e610e71565b005b34801561047c57600080fd5b50610485610ef9565b6040516104929190612ba3565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190612784565b610f23565b005b3480156104d057600080fd5b506104d9610fa9565b6040516104e69190612c25565b60405180910390f35b3480156104fb57600080fd5b5061050461103b565b6040516105119190612f07565b60405180910390f35b610534600480360381019061052f9190612784565b611045565b005b34801561054257600080fd5b5061055d60048036038101906105589190612679565b61120a565b005b34801561056b57600080fd5b5061057461138b565b005b34801561058257600080fd5b5061059d600480360381019061059891906125fe565b61147a565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190612784565b6114dc565b6040516105d39190612c25565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190612573565b611583565b6040516106109190612c0a565b60405180910390f35b34801561062557600080fd5b5061062e611617565b60405161063b9190612c0a565b60405180910390f35b34801561065057600080fd5b5061066b6004803603810190610666919061254a565b61162a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610748575061074782611738565b5b9050919050565b60606000805461075e906131e0565b80601f016020809104026020016040519081016040528092919081815260200182805461078a906131e0565b80156107d75780601f106107ac576101008083540402835291602001916107d7565b820191906000526020600020905b8154815290600101906020018083116107ba57829003601f168201915b5050505050905090565b60006107ec826117a2565b61082b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082290612de7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087182610d02565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d990612e87565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661090161180e565b73ffffffffffffffffffffffffffffffffffffffff161480610930575061092f8161092a61180e565b611583565b5b61096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690612d07565b60405180910390fd5b6109798383611816565b505050565b6000600161098c60096118cf565b61099691906130f6565b905090565b6109ac6109a661180e565b826118dd565b6109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e290612ec7565b60405180910390fd5b6109f68383836119bb565b505050565b6108ae81565b610a0961180e565b73ffffffffffffffffffffffffffffffffffffffff16610a27610ef9565b73ffffffffffffffffffffffffffffffffffffffff1614610a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7490612e27565b60405180910390fd5b6000600247610a8c919061306b565b9050600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610aee57600080fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610b4e57600080fd5b50565b610b6c8383836040518060200160405280600081525061147a565b505050565b60098060000154905081565b610b8561180e565b73ffffffffffffffffffffffffffffffffffffffff16610ba3610ef9565b73ffffffffffffffffffffffffffffffffffffffff1614610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf090612e27565b60405180910390fd5b60011515600a60009054906101000a900460ff16151514610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690612da7565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b610c7461180e565b73ffffffffffffffffffffffffffffffffffffffff16610c92610ef9565b73ffffffffffffffffffffffffffffffffffffffff1614610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf90612e27565b60405180910390fd5b8060079080519060200190610cfe92919061236e565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290612d47565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90612d27565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a81565b610e7961180e565b73ffffffffffffffffffffffffffffffffffffffff16610e97610ef9565b73ffffffffffffffffffffffffffffffffffffffff1614610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee490612e27565b60405180910390fd5b610ef76000611c17565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f2b61180e565b73ffffffffffffffffffffffffffffffffffffffff16610f49610ef9565b73ffffffffffffffffffffffffffffffffffffffff1614610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9690612e27565b60405180910390fd5b8060088190555050565b606060018054610fb8906131e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe4906131e0565b80156110315780601f1061100657610100808354040283529160200191611031565b820191906000526020600020905b81548152906001019060200180831161101457829003601f168201915b5050505050905090565b6000600854905090565b600061104f61097e565b9050600a60009054906101000a900460ff166110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790612ea7565b60405180910390fd5b600a8211156110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90612ee7565b60405180910390fd5b6108ae82826110f39190613015565b1115611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90612e07565b60405180910390fd5b81600854611142919061309c565b341015611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b90612d87565b60405180910390fd5b60005b828110156111cb576111ae33600161119f60096118cf565b6111a991906130f6565b611cdd565b6111b86009611722565b80806111c390613243565b915050611187565b50807f8334f87aeaf76e52b061d93ee968e51fdd3ad53ca04e80271249227997aab3a083336040516111fe929190612f22565b60405180910390a25050565b61121261180e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790612cc7565b60405180910390fd5b806005600061128d61180e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133a61180e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137f9190612c0a565b60405180910390a35050565b61139361180e565b73ffffffffffffffffffffffffffffffffffffffff166113b1610ef9565b73ffffffffffffffffffffffffffffffffffffffff1614611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe90612e27565b60405180910390fd5b60001515600a60009054906101000a900460ff1615151461145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145490612d67565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b61148b61148561180e565b836118dd565b6114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c190612ec7565b60405180910390fd5b6114d684848484611cfb565b50505050565b60606114e7826117a2565b611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d90612e67565b60405180910390fd5b6000611530611d57565b90506000815111611550576040518060200160405280600081525061157b565b8061155a84611de9565b60405160200161156b929190612b7f565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff1681565b61163261180e565b73ffffffffffffffffffffffffffffffffffffffff16611650610ef9565b73ffffffffffffffffffffffffffffffffffffffff16146116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90612e27565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d90612c67565b60405180910390fd5b61171f81611c17565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661188983610d02565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006118e8826117a2565b611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e90612ce7565b60405180910390fd5b600061193283610d02565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119a157508373ffffffffffffffffffffffffffffffffffffffff16611989846107e1565b73ffffffffffffffffffffffffffffffffffffffff16145b806119b257506119b18185611583565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119db82610d02565b73ffffffffffffffffffffffffffffffffffffffff1614611a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2890612e47565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9890612ca7565b60405180910390fd5b611aac838383611f96565b611ab7600082611816565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b0791906130f6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b5e9190613015565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611cf7828260405180602001604052806000815250611f9b565b5050565b611d068484846119bb565b611d1284848484611ff6565b611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4890612c47565b60405180910390fd5b50505050565b606060078054611d66906131e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611d92906131e0565b8015611ddf5780601f10611db457610100808354040283529160200191611ddf565b820191906000526020600020905b815481529060010190602001808311611dc257829003601f168201915b5050505050905090565b60606000821415611e31576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f91565b600082905060005b60008214611e63578080611e4c90613243565b915050600a82611e5c919061306b565b9150611e39565b60008167ffffffffffffffff811115611ea5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ed75781602001600182028036833780820191505090505b5090505b60008514611f8a57600182611ef091906130f6565b9150600a85611eff919061328c565b6030611f0b9190613015565b60f81b818381518110611f47577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f83919061306b565b9450611edb565b8093505050505b919050565b505050565b611fa5838361218d565b611fb26000848484611ff6565b611ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe890612c47565b60405180910390fd5b505050565b60006120178473ffffffffffffffffffffffffffffffffffffffff1661235b565b15612180578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261204061180e565b8786866040518563ffffffff1660e01b81526004016120629493929190612bbe565b602060405180830381600087803b15801561207c57600080fd5b505af19250505080156120ad57506040513d601f19601f820116820180604052508101906120aa919061271a565b60015b612130573d80600081146120dd576040519150601f19603f3d011682016040523d82523d6000602084013e6120e2565b606091505b50600081511415612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f90612c47565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612185565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f490612dc7565b60405180910390fd5b612206816117a2565b15612246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223d90612c87565b60405180910390fd5b61225260008383611f96565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a29190613015565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461237a906131e0565b90600052602060002090601f01602090048101928261239c57600085556123e3565b82601f106123b557805160ff19168380011785556123e3565b828001600101855582156123e3579182015b828111156123e25782518255916020019190600101906123c7565b5b5090506123f091906123f4565b5090565b5b8082111561240d5760008160009055506001016123f5565b5090565b600061242461241f84612f70565b612f4b565b90508281526020810184848401111561243c57600080fd5b61244784828561319e565b509392505050565b600061246261245d84612fa1565b612f4b565b90508281526020810184848401111561247a57600080fd5b61248584828561319e565b509392505050565b60008135905061249c81613924565b92915050565b6000813590506124b18161393b565b92915050565b6000813590506124c681613952565b92915050565b6000815190506124db81613952565b92915050565b600082601f8301126124f257600080fd5b8135612502848260208601612411565b91505092915050565b600082601f83011261251c57600080fd5b813561252c84826020860161244f565b91505092915050565b60008135905061254481613969565b92915050565b60006020828403121561255c57600080fd5b600061256a8482850161248d565b91505092915050565b6000806040838503121561258657600080fd5b60006125948582860161248d565b92505060206125a58582860161248d565b9150509250929050565b6000806000606084860312156125c457600080fd5b60006125d28682870161248d565b93505060206125e38682870161248d565b92505060406125f486828701612535565b9150509250925092565b6000806000806080858703121561261457600080fd5b60006126228782880161248d565b94505060206126338782880161248d565b935050604061264487828801612535565b925050606085013567ffffffffffffffff81111561266157600080fd5b61266d878288016124e1565b91505092959194509250565b6000806040838503121561268c57600080fd5b600061269a8582860161248d565b92505060206126ab858286016124a2565b9150509250929050565b600080604083850312156126c857600080fd5b60006126d68582860161248d565b92505060206126e785828601612535565b9150509250929050565b60006020828403121561270357600080fd5b6000612711848285016124b7565b91505092915050565b60006020828403121561272c57600080fd5b600061273a848285016124cc565b91505092915050565b60006020828403121561275557600080fd5b600082013567ffffffffffffffff81111561276f57600080fd5b61277b8482850161250b565b91505092915050565b60006020828403121561279657600080fd5b60006127a484828501612535565b91505092915050565b6127b68161312a565b82525050565b6127c58161313c565b82525050565b60006127d682612fd2565b6127e08185612fe8565b93506127f08185602086016131ad565b6127f981613379565b840191505092915050565b600061280f82612fdd565b6128198185612ff9565b93506128298185602086016131ad565b61283281613379565b840191505092915050565b600061284882612fdd565b612852818561300a565b93506128628185602086016131ad565b80840191505092915050565b600061287b603283612ff9565b91506128868261338a565b604082019050919050565b600061289e602683612ff9565b91506128a9826133d9565b604082019050919050565b60006128c1601c83612ff9565b91506128cc82613428565b602082019050919050565b60006128e4602483612ff9565b91506128ef82613451565b604082019050919050565b6000612907601983612ff9565b9150612912826134a0565b602082019050919050565b600061292a602c83612ff9565b9150612935826134c9565b604082019050919050565b600061294d603883612ff9565b915061295882613518565b604082019050919050565b6000612970602a83612ff9565b915061297b82613567565b604082019050919050565b6000612993602983612ff9565b915061299e826135b6565b604082019050919050565b60006129b6601883612ff9565b91506129c182613605565b602082019050919050565b60006129d9601983612ff9565b91506129e48261362e565b602082019050919050565b60006129fc601683612ff9565b9150612a0782613657565b602082019050919050565b6000612a1f602083612ff9565b9150612a2a82613680565b602082019050919050565b6000612a42602c83612ff9565b9150612a4d826136a9565b604082019050919050565b6000612a65602483612ff9565b9150612a70826136f8565b604082019050919050565b6000612a88602083612ff9565b9150612a9382613747565b602082019050919050565b6000612aab602983612ff9565b9150612ab682613770565b604082019050919050565b6000612ace602f83612ff9565b9150612ad9826137bf565b604082019050919050565b6000612af1602183612ff9565b9150612afc8261380e565b604082019050919050565b6000612b14601c83612ff9565b9150612b1f8261385d565b602082019050919050565b6000612b37603183612ff9565b9150612b4282613886565b604082019050919050565b6000612b5a602183612ff9565b9150612b65826138d5565b604082019050919050565b612b7981613194565b82525050565b6000612b8b828561283d565b9150612b97828461283d565b91508190509392505050565b6000602082019050612bb860008301846127ad565b92915050565b6000608082019050612bd360008301876127ad565b612be060208301866127ad565b612bed6040830185612b70565b8181036060830152612bff81846127cb565b905095945050505050565b6000602082019050612c1f60008301846127bc565b92915050565b60006020820190508181036000830152612c3f8184612804565b905092915050565b60006020820190508181036000830152612c608161286e565b9050919050565b60006020820190508181036000830152612c8081612891565b9050919050565b60006020820190508181036000830152612ca0816128b4565b9050919050565b60006020820190508181036000830152612cc0816128d7565b9050919050565b60006020820190508181036000830152612ce0816128fa565b9050919050565b60006020820190508181036000830152612d008161291d565b9050919050565b60006020820190508181036000830152612d2081612940565b9050919050565b60006020820190508181036000830152612d4081612963565b9050919050565b60006020820190508181036000830152612d6081612986565b9050919050565b60006020820190508181036000830152612d80816129a9565b9050919050565b60006020820190508181036000830152612da0816129cc565b9050919050565b60006020820190508181036000830152612dc0816129ef565b9050919050565b60006020820190508181036000830152612de081612a12565b9050919050565b60006020820190508181036000830152612e0081612a35565b9050919050565b60006020820190508181036000830152612e2081612a58565b9050919050565b60006020820190508181036000830152612e4081612a7b565b9050919050565b60006020820190508181036000830152612e6081612a9e565b9050919050565b60006020820190508181036000830152612e8081612ac1565b9050919050565b60006020820190508181036000830152612ea081612ae4565b9050919050565b60006020820190508181036000830152612ec081612b07565b9050919050565b60006020820190508181036000830152612ee081612b2a565b9050919050565b60006020820190508181036000830152612f0081612b4d565b9050919050565b6000602082019050612f1c6000830184612b70565b92915050565b6000604082019050612f376000830185612b70565b612f4460208301846127ad565b9392505050565b6000612f55612f66565b9050612f618282613212565b919050565b6000604051905090565b600067ffffffffffffffff821115612f8b57612f8a61334a565b5b612f9482613379565b9050602081019050919050565b600067ffffffffffffffff821115612fbc57612fbb61334a565b5b612fc582613379565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061302082613194565b915061302b83613194565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130605761305f6132bd565b5b828201905092915050565b600061307682613194565b915061308183613194565b925082613091576130906132ec565b5b828204905092915050565b60006130a782613194565b91506130b283613194565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130eb576130ea6132bd565b5b828202905092915050565b600061310182613194565b915061310c83613194565b92508282101561311f5761311e6132bd565b5b828203905092915050565b600061313582613174565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131cb5780820151818401526020810190506131b0565b838111156131da576000848401525b50505050565b600060028204905060018216806131f857607f821691505b6020821081141561320c5761320b61331b565b5b50919050565b61321b82613379565b810181811067ffffffffffffffff8211171561323a5761323961334a565b5b80604052505050565b600061324e82613194565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613281576132806132bd565b5b600182019050919050565b600061329782613194565b91506132a283613194565b9250826132b2576132b16132ec565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920737461727465640000000000000000600082015250565b7f56616c75652073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f53616c6520697320616c72656164792070617573656400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d6178696d756d20737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f742063757272656e746c792061637469766500000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b61392d8161312a565b811461393857600080fd5b50565b6139448161313c565b811461394f57600080fd5b50565b61395b81613148565b811461396657600080fd5b50565b61397281613194565b811461397d57600080fd5b5056fea26469706673582212209f2be33f9f45a9b06c77ecdcf323c4e559edd66346a7183700468741e78187b164736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002068747470733a2f2f6170692e73746f6e65792e6172742f6d657461646174612f

-----Decoded View---------------
Arg [0] : newBaseURI (string): https://api.stoney.art/metadata/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [2] : 68747470733a2f2f6170692e73746f6e65792e6172742f6d657461646174612f


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.