ETH Price: $2,627.88 (-2.57%)
Gas: 0.93 Gwei

Token

Rooshocks (ROOS)
 

Overview

Max Total Supply

84 ROOS

Holders

45

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
danamin.eth
Balance
1 ROOS
0xea479a1c3413EfcA501E39377b9e9529AcA5b272
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:
Rooshocks

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : contract.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;

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

contract Rooshocks is ERC721, Ownable, ReentrancyGuard {
    using Strings for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;

    mapping(uint => uint) public minted;
    mapping(uint => uint) public _resMinted;

    uint[] public MAX_SUPPLY = [30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,5,5,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,5,20,20,5,10,5,15,20,20,20,10,10,10,20,20,20,10,10,20,10,10,10,10,20]; 
    uint[] public _reserved = [5,3,3,3,3,2,3,2,3,3,3,2,2,2,2,3,2,3,1,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,1,1,5,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2];
    uint[] private _buffer = [0,30,60,90,120,150,180,210,240,270,300,330,360,390,420,450,480,510,540,545,550,570,590,610,630,650,670,690,710,730,750,770,790,810,830,850,870,875,895,915,920,930,935,950,970,990,1010,1020,1030,1040,1060,1080,1100,1110,1120,1140,1150,1160,1170,1180];

    string private baseURI;

    bool public _isSaleActive = false;

    constructor() ERC721("Rooshocks", "ROOS") {}

    function setBaseURI(string memory URI) external onlyOwner {
        baseURI = URI;
    }

    function _baseURI() internal view override(ERC721) returns (string memory) {
        return baseURI;
    }

    function totalSupply() external view returns (uint256) {
        return _tokenIdCounter.current();
    }

    function setSaleState(bool newState) public onlyOwner {
        _isSaleActive = newState;
    }

    function mint(
        uint _type
    ) external payable nonReentrant{
        require(_isSaleActive, "sale inactive");
        require(msg.value == getPrice(_type), "Insufficient funds");
        require(minted[_type] + 1 <= MAX_SUPPLY[_type] - _reserved[_type], "Not enough tokens left");
        require(msg.sender == tx.origin, "Interaction not allowed");

        ++minted[_type];

        _tokenIdCounter.increment();

        uint _tokenID = _buffer[_type] + minted[_type] + _resMinted[_type];
        _safeMint(msg.sender, _tokenID);
    }

    function getPrice(uint _type) public pure returns(uint){
        if (_type < 20) {
            return 80000000000000000; 
        } else if (_type < 40) {
            return 120000000000000000;
        } else if (_type == 40) {
            return 240000000000000000;
        } else if (_type == 41) {
            return 330000000000000000;
        } else if (_type < 52) {
            return 120000000000000000;
        } else if (_type == 52) {
            return 240000000000000000;
        } else {
            return 120000000000000000;
        }
    }

    function claim(
        address _addr,
        uint _type
    ) external onlyOwner{
        require(_resMinted[_type] + 1 <= _reserved[_type], "Not enough tokens left");

        ++_resMinted[_type];

        _tokenIdCounter.increment();

        uint _tokenID = _buffer[_type] + minted[_type] + _resMinted[_type];
        _safeMint(_addr, _tokenID);
    }

    function tokenURI(uint tokenId) public view virtual override returns (string memory) {
      require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
      return string(abi.encodePacked(baseURI, uint2str(tokenId), ".json"));
    }

    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

File 2 of 13 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 3 of 13 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 4 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 6 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 7 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 8 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 10 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 11 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_resMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_type","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_type","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"_type","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","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"}]

6080604052604051806107800160405280601e60ff168152602001601e60ff168152602001601e60ff168152602001601e60ff168152602001601e60ff168152602001601e60ff168152602001601e60ff168152602001601e60ff168152602001601e60ff168152602001601e60ff168152602001601e60ff168152602001601e60ff168152602001601e60ff168152602001601e60ff168152602001601e60ff168152602001601e60ff168152602001601e60ff168152602001601e60ff168152602001600560ff168152602001600560ff168152602001601460ff168152602001601460ff168152602001601460ff168152602001601460ff168152602001601460ff168152602001601460ff168152602001601460ff168152602001601460ff168152602001601460ff168152602001601460ff168152602001601460ff168152602001601460ff168152602001601460ff168152602001601460ff168152602001601460ff168152602001601460ff168152602001600560ff168152602001601460ff168152602001601460ff168152602001600560ff168152602001600a60ff168152602001600560ff168152602001600f60ff168152602001601460ff168152602001601460ff168152602001601460ff168152602001600a60ff168152602001600a60ff168152602001600a60ff168152602001601460ff168152602001601460ff168152602001601460ff168152602001600a60ff168152602001600a60ff168152602001601460ff168152602001600a60ff168152602001600a60ff168152602001600a60ff168152602001600a60ff168152602001601460ff16815250600b90603c6200027892919062000997565b50604051806107800160405280600560ff168152602001600360ff168152602001600360ff168152602001600360ff168152602001600360ff168152602001600260ff168152602001600360ff168152602001600260ff168152602001600360ff168152602001600360ff168152602001600360ff168152602001600260ff168152602001600260ff168152602001600260ff168152602001600260ff168152602001600360ff168152602001600260ff168152602001600360ff168152602001600160ff168152602001600260ff168152602001600360ff168152602001600260ff168152602001600360ff168152602001600260ff168152602001600260ff168152602001600260ff168152602001600260ff168152602001600260ff168152602001600260ff168152602001600260ff168152602001600260ff168152602001600260ff168152602001600260ff168152602001600260ff168152602001600260ff168152602001600260ff168152602001600160ff168152602001600260ff168152602001600260ff168152602001600160ff168152602001600160ff168152602001600160ff168152602001600560ff168152602001600160ff168152602001600160ff168152602001600160ff168152602001600160ff168152602001600260ff168152602001600260ff168152602001600160ff168152602001600160ff168152602001600160ff168152602001600160ff168152602001600160ff168152602001600160ff168152602001600260ff168152602001600160ff168152602001600160ff168152602001600160ff168152602001600260ff16815250600c90603c620004ed92919062000997565b50604051806107800160405280600061ffff168152602001601e61ffff168152602001603c61ffff168152602001605a61ffff168152602001607861ffff168152602001609661ffff16815260200160b461ffff16815260200160d261ffff16815260200160f061ffff16815260200161010e61ffff16815260200161012c61ffff16815260200161014a61ffff16815260200161016861ffff16815260200161018661ffff1681526020016101a461ffff1681526020016101c261ffff1681526020016101e061ffff1681526020016101fe61ffff16815260200161021c61ffff16815260200161022161ffff16815260200161022661ffff16815260200161023a61ffff16815260200161024e61ffff16815260200161026261ffff16815260200161027661ffff16815260200161028a61ffff16815260200161029e61ffff1681526020016102b261ffff1681526020016102c661ffff1681526020016102da61ffff1681526020016102ee61ffff16815260200161030261ffff16815260200161031661ffff16815260200161032a61ffff16815260200161033e61ffff16815260200161035261ffff16815260200161036661ffff16815260200161036b61ffff16815260200161037f61ffff16815260200161039361ffff16815260200161039861ffff1681526020016103a261ffff1681526020016103a761ffff1681526020016103b661ffff1681526020016103ca61ffff1681526020016103de61ffff1681526020016103f261ffff1681526020016103fc61ffff16815260200161040661ffff16815260200161041061ffff16815260200161042461ffff16815260200161043861ffff16815260200161044c61ffff16815260200161045661ffff16815260200161046061ffff16815260200161047461ffff16815260200161047e61ffff16815260200161048861ffff16815260200161049261ffff16815260200161049c61ffff16815250600d90603c620007d1929190620009ee565b506000600f60006101000a81548160ff021916908315150217905550348015620007fa57600080fd5b506040518060400160405280600981526020017f526f6f73686f636b7300000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f524f4f530000000000000000000000000000000000000000000000000000000081525081600090805190602001906200087f92919062000a46565b5080600190805190602001906200089892919062000a46565b505050620008bb620008af620008c960201b60201c565b620008d160201b60201c565b600160078190555062000b5b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054828255906000526020600020908101928215620009db579160200282015b82811115620009da578251829060ff16905591602001919060010190620009b8565b5b509050620009ea919062000ad7565b5090565b82805482825590600052602060002090810192821562000a33579160200282015b8281111562000a32578251829061ffff1690559160200191906001019062000a0f565b5b50905062000a42919062000ad7565b5090565b82805462000a549062000b25565b90600052602060002090601f01602090048101928262000a78576000855562000ac4565b82601f1062000a9357805160ff191683800117855562000ac4565b8280016001018555821562000ac4579182015b8281111562000ac357825182559160200191906001019062000aa6565b5b50905062000ad3919062000ad7565b5090565b5b8082111562000af257600081600090555060010162000ad8565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b3e57607f821691505b6020821081141562000b555762000b5462000af6565b5b50919050565b613b5f8062000b6b6000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063aad3ec961161008a578063c87b56dd11610064578063c87b56dd1461060d578063e75722301461064a578063e985e9c514610687578063f2fde38b146106c4576101b7565b8063aad3ec9614610592578063b88d4fde146105bb578063c4e37095146105e4576101b7565b80638da5cb5b116100c65780638da5cb5b146104f757806395d89b4114610522578063a0712d681461054d578063a22cb46514610569576101b7565b806370a0823114610466578063715018a6146104a35780637dc0bf3f146104ba576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103ac57806355f804b3146103d55780636352211e146103fe5780637080d6fc1461043b576101b7565b806323b872dd1461032f57806327125748146103585780633ccfd60b14610395576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a5780631dbeecb3146102b55780631f4bc79d146102f2576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612559565b6106ed565b6040516101f091906125a1565b60405180910390f35b34801561020557600080fd5b5061020e6107cf565b60405161021b9190612655565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906126ad565b610861565b604051610258919061271b565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612762565b6108e6565b005b34801561029657600080fd5b5061029f6109fe565b6040516102ac91906127b1565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d791906126ad565b610a0f565b6040516102e991906127b1565b60405180910390f35b3480156102fe57600080fd5b50610319600480360381019061031491906126ad565b610a27565b60405161032691906127b1565b60405180910390f35b34801561033b57600080fd5b50610356600480360381019061035191906127cc565b610a4b565b005b34801561036457600080fd5b5061037f600480360381019061037a91906126ad565b610aab565b60405161038c91906127b1565b60405180910390f35b3480156103a157600080fd5b506103aa610acf565b005b3480156103b857600080fd5b506103d360048036038101906103ce91906127cc565b610b9a565b005b3480156103e157600080fd5b506103fc60048036038101906103f79190612954565b610bba565b005b34801561040a57600080fd5b50610425600480360381019061042091906126ad565b610c50565b604051610432919061271b565b60405180910390f35b34801561044757600080fd5b50610450610d02565b60405161045d91906125a1565b60405180910390f35b34801561047257600080fd5b5061048d6004803603810190610488919061299d565b610d15565b60405161049a91906127b1565b60405180910390f35b3480156104af57600080fd5b506104b8610dcd565b005b3480156104c657600080fd5b506104e160048036038101906104dc91906126ad565b610e55565b6040516104ee91906127b1565b60405180910390f35b34801561050357600080fd5b5061050c610e6d565b604051610519919061271b565b60405180910390f35b34801561052e57600080fd5b50610537610e97565b6040516105449190612655565b60405180910390f35b610567600480360381019061056291906126ad565b610f29565b005b34801561057557600080fd5b50610590600480360381019061058b91906129f6565b6111cd565b005b34801561059e57600080fd5b506105b960048036038101906105b49190612762565b6111e3565b005b3480156105c757600080fd5b506105e260048036038101906105dd9190612ad7565b61137e565b005b3480156105f057600080fd5b5061060b60048036038101906106069190612b5a565b6113e0565b005b34801561061957600080fd5b50610634600480360381019061062f91906126ad565b611479565b6040516106419190612655565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c91906126ad565b6114f5565b60405161067e91906127b1565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190612b87565b61159e565b6040516106bb91906125a1565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e6919061299d565b611632565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c857506107c78261172a565b5b9050919050565b6060600080546107de90612bf6565b80601f016020809104026020016040519081016040528092919081815260200182805461080a90612bf6565b80156108575780601f1061082c57610100808354040283529160200191610857565b820191906000526020600020905b81548152906001019060200180831161083a57829003601f168201915b5050505050905090565b600061086c82611794565b6108ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a290612c9a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f182610c50565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095990612d2c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610981611800565b73ffffffffffffffffffffffffffffffffffffffff1614806109b057506109af816109aa611800565b61159e565b5b6109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e690612dbe565b60405180910390fd5b6109f98383611808565b505050565b6000610a0a60086118c1565b905090565b600a6020528060005260406000206000915090505481565b600c8181548110610a3757600080fd5b906000526020600020016000915090505481565b610a5c610a56611800565b826118cf565b610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9290612e50565b60405180910390fd5b610aa68383836119ad565b505050565b600b8181548110610abb57600080fd5b906000526020600020016000915090505481565b610ad7611800565b73ffffffffffffffffffffffffffffffffffffffff16610af5610e6d565b73ffffffffffffffffffffffffffffffffffffffff1614610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290612ebc565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b96573d6000803e3d6000fd5b5050565b610bb58383836040518060200160405280600081525061137e565b505050565b610bc2611800565b73ffffffffffffffffffffffffffffffffffffffff16610be0610e6d565b73ffffffffffffffffffffffffffffffffffffffff1614610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d90612ebc565b60405180910390fd5b80600e9080519060200190610c4c92919061244a565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf090612f4e565b60405180910390fd5b80915050919050565b600f60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90612fe0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dd5611800565b73ffffffffffffffffffffffffffffffffffffffff16610df3610e6d565b73ffffffffffffffffffffffffffffffffffffffff1614610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090612ebc565b60405180910390fd5b610e536000611c14565b565b60096020528060005260406000206000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610ea690612bf6565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed290612bf6565b8015610f1f5780601f10610ef457610100808354040283529160200191610f1f565b820191906000526020600020905b815481529060010190602001808311610f0257829003601f168201915b5050505050905090565b60026007541415610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f669061304c565b60405180910390fd5b6002600781905550600f60009054906101000a900460ff16610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd906130b8565b60405180910390fd5b610fcf816114f5565b3414611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790613124565b60405180910390fd5b600c818154811061102457611023613144565b5b9060005260206000200154600b828154811061104357611042613144565b5b906000526020600020015461105891906131a2565b6001600960008481526020019081526020016000205461107891906131d6565b11156110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b090613278565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e906132e4565b60405180910390fd5b600960008281526020019081526020016000206000815461114790613304565b919050819055506111586008611cda565b6000600a6000838152602001908152602001600020546009600084815260200190815260200160002054600d848154811061119657611195613144565b5b90600052602060002001546111ab91906131d6565b6111b591906131d6565b90506111c13382611cf0565b50600160078190555050565b6111df6111d8611800565b8383611d0e565b5050565b6111eb611800565b73ffffffffffffffffffffffffffffffffffffffff16611209610e6d565b73ffffffffffffffffffffffffffffffffffffffff161461125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690612ebc565b60405180910390fd5b600c818154811061127357611272613144565b5b90600052602060002001546001600a60008481526020019081526020016000205461129e91906131d6565b11156112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d690613278565b60405180910390fd5b600a6000828152602001908152602001600020600081546112ff90613304565b919050819055506113106008611cda565b6000600a6000838152602001908152602001600020546009600084815260200190815260200160002054600d848154811061134e5761134d613144565b5b906000526020600020015461136391906131d6565b61136d91906131d6565b90506113798382611cf0565b505050565b61138f611389611800565b836118cf565b6113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c590612e50565b60405180910390fd5b6113da84848484611e7b565b50505050565b6113e8611800565b73ffffffffffffffffffffffffffffffffffffffff16611406610e6d565b73ffffffffffffffffffffffffffffffffffffffff161461145c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145390612ebc565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606061148482611794565b6114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba906133bf565b60405180910390fd5b600e6114ce83611ed7565b6040516020016114df9291906134fb565b6040516020818303038152906040529050919050565b600060148210156115105767011c37937e0800009050611599565b6028821015611529576701aa535d3d0c00009050611599565b602882141561154257670354a6ba7a1800009050611599565b602982141561155b57670494654067e100009050611599565b6034821015611574576701aa535d3d0c00009050611599565b603482141561158d57670354a6ba7a1800009050611599565b6701aa535d3d0c000090505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61163a611800565b73ffffffffffffffffffffffffffffffffffffffff16611658610e6d565b73ffffffffffffffffffffffffffffffffffffffff16146116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590612ebc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561171e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117159061359c565b60405180910390fd5b61172781611c14565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661187b83610c50565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006118da82611794565b611919576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119109061362e565b60405180910390fd5b600061192483610c50565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061199357508373ffffffffffffffffffffffffffffffffffffffff1661197b84610861565b73ffffffffffffffffffffffffffffffffffffffff16145b806119a457506119a3818561159e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119cd82610c50565b73ffffffffffffffffffffffffffffffffffffffff1614611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a906136c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a90613752565b60405180910390fd5b611a9e838383612060565b611aa9600082611808565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611af991906131a2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b5091906131d6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c0f838383612065565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b611d0a82826040518060200160405280600081525061206a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d74906137be565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e6e91906125a1565b60405180910390a3505050565b611e868484846119ad565b611e92848484846120c5565b611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890613850565b60405180910390fd5b50505050565b60606000821415611f1f576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061205b565b600082905060005b60008214611f51578080611f3a90613304565b915050600a82611f4a919061389f565b9150611f27565b60008167ffffffffffffffff811115611f6d57611f6c612829565b5b6040519080825280601f01601f191660200182016040528015611f9f5781602001600182028036833780820191505090505b50905060008290505b6000861461205357600181611fbd91906131a2565b90506000600a8088611fcf919061389f565b611fd991906138d0565b87611fe491906131a2565b6030611ff09190613937565b905060008160f81b90508084848151811061200e5761200d613144565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8861204a919061389f565b97505050611fa8565b819450505050505b919050565b505050565b505050565b612074838361224d565b61208160008484846120c5565b6120c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b790613850565b60405180910390fd5b505050565b60006120e68473ffffffffffffffffffffffffffffffffffffffff16612427565b15612240578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261210f611800565b8786866040518563ffffffff1660e01b815260040161213194939291906139c3565b6020604051808303816000875af192505050801561216d57506040513d601f19601f8201168201806040525081019061216a9190613a24565b60015b6121f0573d806000811461219d576040519150601f19603f3d011682016040523d82523d6000602084013e6121a2565b606091505b506000815114156121e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121df90613850565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612245565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b490613a9d565b60405180910390fd5b6122c681611794565b15612306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fd90613b09565b60405180910390fd5b61231260008383612060565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461236291906131d6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461242360008383612065565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461245690612bf6565b90600052602060002090601f01602090048101928261247857600085556124bf565b82601f1061249157805160ff19168380011785556124bf565b828001600101855582156124bf579182015b828111156124be5782518255916020019190600101906124a3565b5b5090506124cc91906124d0565b5090565b5b808211156124e95760008160009055506001016124d1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61253681612501565b811461254157600080fd5b50565b6000813590506125538161252d565b92915050565b60006020828403121561256f5761256e6124f7565b5b600061257d84828501612544565b91505092915050565b60008115159050919050565b61259b81612586565b82525050565b60006020820190506125b66000830184612592565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125f65780820151818401526020810190506125db565b83811115612605576000848401525b50505050565b6000601f19601f8301169050919050565b6000612627826125bc565b61263181856125c7565b93506126418185602086016125d8565b61264a8161260b565b840191505092915050565b6000602082019050818103600083015261266f818461261c565b905092915050565b6000819050919050565b61268a81612677565b811461269557600080fd5b50565b6000813590506126a781612681565b92915050565b6000602082840312156126c3576126c26124f7565b5b60006126d184828501612698565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612705826126da565b9050919050565b612715816126fa565b82525050565b6000602082019050612730600083018461270c565b92915050565b61273f816126fa565b811461274a57600080fd5b50565b60008135905061275c81612736565b92915050565b60008060408385031215612779576127786124f7565b5b60006127878582860161274d565b925050602061279885828601612698565b9150509250929050565b6127ab81612677565b82525050565b60006020820190506127c660008301846127a2565b92915050565b6000806000606084860312156127e5576127e46124f7565b5b60006127f38682870161274d565b93505060206128048682870161274d565b925050604061281586828701612698565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128618261260b565b810181811067ffffffffffffffff821117156128805761287f612829565b5b80604052505050565b60006128936124ed565b905061289f8282612858565b919050565b600067ffffffffffffffff8211156128bf576128be612829565b5b6128c88261260b565b9050602081019050919050565b82818337600083830152505050565b60006128f76128f2846128a4565b612889565b90508281526020810184848401111561291357612912612824565b5b61291e8482856128d5565b509392505050565b600082601f83011261293b5761293a61281f565b5b813561294b8482602086016128e4565b91505092915050565b60006020828403121561296a576129696124f7565b5b600082013567ffffffffffffffff811115612988576129876124fc565b5b61299484828501612926565b91505092915050565b6000602082840312156129b3576129b26124f7565b5b60006129c18482850161274d565b91505092915050565b6129d381612586565b81146129de57600080fd5b50565b6000813590506129f0816129ca565b92915050565b60008060408385031215612a0d57612a0c6124f7565b5b6000612a1b8582860161274d565b9250506020612a2c858286016129e1565b9150509250929050565b600067ffffffffffffffff821115612a5157612a50612829565b5b612a5a8261260b565b9050602081019050919050565b6000612a7a612a7584612a36565b612889565b905082815260208101848484011115612a9657612a95612824565b5b612aa18482856128d5565b509392505050565b600082601f830112612abe57612abd61281f565b5b8135612ace848260208601612a67565b91505092915050565b60008060008060808587031215612af157612af06124f7565b5b6000612aff8782880161274d565b9450506020612b108782880161274d565b9350506040612b2187828801612698565b925050606085013567ffffffffffffffff811115612b4257612b416124fc565b5b612b4e87828801612aa9565b91505092959194509250565b600060208284031215612b7057612b6f6124f7565b5b6000612b7e848285016129e1565b91505092915050565b60008060408385031215612b9e57612b9d6124f7565b5b6000612bac8582860161274d565b9250506020612bbd8582860161274d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c0e57607f821691505b60208210811415612c2257612c21612bc7565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612c84602c836125c7565b9150612c8f82612c28565b604082019050919050565b60006020820190508181036000830152612cb381612c77565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d166021836125c7565b9150612d2182612cba565b604082019050919050565b60006020820190508181036000830152612d4581612d09565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612da86038836125c7565b9150612db382612d4c565b604082019050919050565b60006020820190508181036000830152612dd781612d9b565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612e3a6031836125c7565b9150612e4582612dde565b604082019050919050565b60006020820190508181036000830152612e6981612e2d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ea66020836125c7565b9150612eb182612e70565b602082019050919050565b60006020820190508181036000830152612ed581612e99565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612f386029836125c7565b9150612f4382612edc565b604082019050919050565b60006020820190508181036000830152612f6781612f2b565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612fca602a836125c7565b9150612fd582612f6e565b604082019050919050565b60006020820190508181036000830152612ff981612fbd565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613036601f836125c7565b915061304182613000565b602082019050919050565b6000602082019050818103600083015261306581613029565b9050919050565b7f73616c6520696e61637469766500000000000000000000000000000000000000600082015250565b60006130a2600d836125c7565b91506130ad8261306c565b602082019050919050565b600060208201905081810360008301526130d181613095565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b600061310e6012836125c7565b9150613119826130d8565b602082019050919050565b6000602082019050818103600083015261313d81613101565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131ad82612677565b91506131b883612677565b9250828210156131cb576131ca613173565b5b828203905092915050565b60006131e182612677565b91506131ec83612677565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561322157613220613173565b5b828201905092915050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b60006132626016836125c7565b915061326d8261322c565b602082019050919050565b6000602082019050818103600083015261329181613255565b9050919050565b7f496e746572616374696f6e206e6f7420616c6c6f776564000000000000000000600082015250565b60006132ce6017836125c7565b91506132d982613298565b602082019050919050565b600060208201905081810360008301526132fd816132c1565b9050919050565b600061330f82612677565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561334257613341613173565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133a9602f836125c7565b91506133b48261334d565b604082019050919050565b600060208201905081810360008301526133d88161339c565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461340c81612bf6565b61341681866133df565b94506001821660008114613431576001811461344257613475565b60ff19831686528186019350613475565b61344b856133ea565b60005b8381101561346d5781548189015260018201915060208101905061344e565b838801955050505b50505092915050565b6000613489826125bc565b61349381856133df565b93506134a38185602086016125d8565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006134e56005836133df565b91506134f0826134af565b600582019050919050565b600061350782856133ff565b9150613513828461347e565b915061351e826134d8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135866026836125c7565b91506135918261352a565b604082019050919050565b600060208201905081810360008301526135b581613579565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613618602c836125c7565b9150613623826135bc565b604082019050919050565b600060208201905081810360008301526136478161360b565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006136aa6025836125c7565b91506136b58261364e565b604082019050919050565b600060208201905081810360008301526136d98161369d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061373c6024836125c7565b9150613747826136e0565b604082019050919050565b6000602082019050818103600083015261376b8161372f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006137a86019836125c7565b91506137b382613772565b602082019050919050565b600060208201905081810360008301526137d78161379b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061383a6032836125c7565b9150613845826137de565b604082019050919050565b600060208201905081810360008301526138698161382d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138aa82612677565b91506138b583612677565b9250826138c5576138c4613870565b5b828204905092915050565b60006138db82612677565b91506138e683612677565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561391f5761391e613173565b5b828202905092915050565b600060ff82169050919050565b60006139428261392a565b915061394d8361392a565b92508260ff0382111561396357613962613173565b5b828201905092915050565b600081519050919050565b600082825260208201905092915050565b60006139958261396e565b61399f8185613979565b93506139af8185602086016125d8565b6139b88161260b565b840191505092915050565b60006080820190506139d8600083018761270c565b6139e5602083018661270c565b6139f260408301856127a2565b8181036060830152613a04818461398a565b905095945050505050565b600081519050613a1e8161252d565b92915050565b600060208284031215613a3a57613a396124f7565b5b6000613a4884828501613a0f565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613a876020836125c7565b9150613a9282613a51565b602082019050919050565b60006020820190508181036000830152613ab681613a7a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613af3601c836125c7565b9150613afe82613abd565b602082019050919050565b60006020820190508181036000830152613b2281613ae6565b905091905056fea264697066735822122067c263e716bf859e2dc0a50d63cad0952021bba0aa997632f9c33813b617a64f64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063aad3ec961161008a578063c87b56dd11610064578063c87b56dd1461060d578063e75722301461064a578063e985e9c514610687578063f2fde38b146106c4576101b7565b8063aad3ec9614610592578063b88d4fde146105bb578063c4e37095146105e4576101b7565b80638da5cb5b116100c65780638da5cb5b146104f757806395d89b4114610522578063a0712d681461054d578063a22cb46514610569576101b7565b806370a0823114610466578063715018a6146104a35780637dc0bf3f146104ba576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103ac57806355f804b3146103d55780636352211e146103fe5780637080d6fc1461043b576101b7565b806323b872dd1461032f57806327125748146103585780633ccfd60b14610395576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a5780631dbeecb3146102b55780631f4bc79d146102f2576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612559565b6106ed565b6040516101f091906125a1565b60405180910390f35b34801561020557600080fd5b5061020e6107cf565b60405161021b9190612655565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906126ad565b610861565b604051610258919061271b565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612762565b6108e6565b005b34801561029657600080fd5b5061029f6109fe565b6040516102ac91906127b1565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d791906126ad565b610a0f565b6040516102e991906127b1565b60405180910390f35b3480156102fe57600080fd5b50610319600480360381019061031491906126ad565b610a27565b60405161032691906127b1565b60405180910390f35b34801561033b57600080fd5b50610356600480360381019061035191906127cc565b610a4b565b005b34801561036457600080fd5b5061037f600480360381019061037a91906126ad565b610aab565b60405161038c91906127b1565b60405180910390f35b3480156103a157600080fd5b506103aa610acf565b005b3480156103b857600080fd5b506103d360048036038101906103ce91906127cc565b610b9a565b005b3480156103e157600080fd5b506103fc60048036038101906103f79190612954565b610bba565b005b34801561040a57600080fd5b50610425600480360381019061042091906126ad565b610c50565b604051610432919061271b565b60405180910390f35b34801561044757600080fd5b50610450610d02565b60405161045d91906125a1565b60405180910390f35b34801561047257600080fd5b5061048d6004803603810190610488919061299d565b610d15565b60405161049a91906127b1565b60405180910390f35b3480156104af57600080fd5b506104b8610dcd565b005b3480156104c657600080fd5b506104e160048036038101906104dc91906126ad565b610e55565b6040516104ee91906127b1565b60405180910390f35b34801561050357600080fd5b5061050c610e6d565b604051610519919061271b565b60405180910390f35b34801561052e57600080fd5b50610537610e97565b6040516105449190612655565b60405180910390f35b610567600480360381019061056291906126ad565b610f29565b005b34801561057557600080fd5b50610590600480360381019061058b91906129f6565b6111cd565b005b34801561059e57600080fd5b506105b960048036038101906105b49190612762565b6111e3565b005b3480156105c757600080fd5b506105e260048036038101906105dd9190612ad7565b61137e565b005b3480156105f057600080fd5b5061060b60048036038101906106069190612b5a565b6113e0565b005b34801561061957600080fd5b50610634600480360381019061062f91906126ad565b611479565b6040516106419190612655565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c91906126ad565b6114f5565b60405161067e91906127b1565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190612b87565b61159e565b6040516106bb91906125a1565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e6919061299d565b611632565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c857506107c78261172a565b5b9050919050565b6060600080546107de90612bf6565b80601f016020809104026020016040519081016040528092919081815260200182805461080a90612bf6565b80156108575780601f1061082c57610100808354040283529160200191610857565b820191906000526020600020905b81548152906001019060200180831161083a57829003601f168201915b5050505050905090565b600061086c82611794565b6108ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a290612c9a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f182610c50565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095990612d2c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610981611800565b73ffffffffffffffffffffffffffffffffffffffff1614806109b057506109af816109aa611800565b61159e565b5b6109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e690612dbe565b60405180910390fd5b6109f98383611808565b505050565b6000610a0a60086118c1565b905090565b600a6020528060005260406000206000915090505481565b600c8181548110610a3757600080fd5b906000526020600020016000915090505481565b610a5c610a56611800565b826118cf565b610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9290612e50565b60405180910390fd5b610aa68383836119ad565b505050565b600b8181548110610abb57600080fd5b906000526020600020016000915090505481565b610ad7611800565b73ffffffffffffffffffffffffffffffffffffffff16610af5610e6d565b73ffffffffffffffffffffffffffffffffffffffff1614610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290612ebc565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b96573d6000803e3d6000fd5b5050565b610bb58383836040518060200160405280600081525061137e565b505050565b610bc2611800565b73ffffffffffffffffffffffffffffffffffffffff16610be0610e6d565b73ffffffffffffffffffffffffffffffffffffffff1614610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d90612ebc565b60405180910390fd5b80600e9080519060200190610c4c92919061244a565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf090612f4e565b60405180910390fd5b80915050919050565b600f60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90612fe0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dd5611800565b73ffffffffffffffffffffffffffffffffffffffff16610df3610e6d565b73ffffffffffffffffffffffffffffffffffffffff1614610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090612ebc565b60405180910390fd5b610e536000611c14565b565b60096020528060005260406000206000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610ea690612bf6565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed290612bf6565b8015610f1f5780601f10610ef457610100808354040283529160200191610f1f565b820191906000526020600020905b815481529060010190602001808311610f0257829003601f168201915b5050505050905090565b60026007541415610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f669061304c565b60405180910390fd5b6002600781905550600f60009054906101000a900460ff16610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd906130b8565b60405180910390fd5b610fcf816114f5565b3414611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790613124565b60405180910390fd5b600c818154811061102457611023613144565b5b9060005260206000200154600b828154811061104357611042613144565b5b906000526020600020015461105891906131a2565b6001600960008481526020019081526020016000205461107891906131d6565b11156110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b090613278565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e906132e4565b60405180910390fd5b600960008281526020019081526020016000206000815461114790613304565b919050819055506111586008611cda565b6000600a6000838152602001908152602001600020546009600084815260200190815260200160002054600d848154811061119657611195613144565b5b90600052602060002001546111ab91906131d6565b6111b591906131d6565b90506111c13382611cf0565b50600160078190555050565b6111df6111d8611800565b8383611d0e565b5050565b6111eb611800565b73ffffffffffffffffffffffffffffffffffffffff16611209610e6d565b73ffffffffffffffffffffffffffffffffffffffff161461125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690612ebc565b60405180910390fd5b600c818154811061127357611272613144565b5b90600052602060002001546001600a60008481526020019081526020016000205461129e91906131d6565b11156112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d690613278565b60405180910390fd5b600a6000828152602001908152602001600020600081546112ff90613304565b919050819055506113106008611cda565b6000600a6000838152602001908152602001600020546009600084815260200190815260200160002054600d848154811061134e5761134d613144565b5b906000526020600020015461136391906131d6565b61136d91906131d6565b90506113798382611cf0565b505050565b61138f611389611800565b836118cf565b6113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c590612e50565b60405180910390fd5b6113da84848484611e7b565b50505050565b6113e8611800565b73ffffffffffffffffffffffffffffffffffffffff16611406610e6d565b73ffffffffffffffffffffffffffffffffffffffff161461145c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145390612ebc565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606061148482611794565b6114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba906133bf565b60405180910390fd5b600e6114ce83611ed7565b6040516020016114df9291906134fb565b6040516020818303038152906040529050919050565b600060148210156115105767011c37937e0800009050611599565b6028821015611529576701aa535d3d0c00009050611599565b602882141561154257670354a6ba7a1800009050611599565b602982141561155b57670494654067e100009050611599565b6034821015611574576701aa535d3d0c00009050611599565b603482141561158d57670354a6ba7a1800009050611599565b6701aa535d3d0c000090505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61163a611800565b73ffffffffffffffffffffffffffffffffffffffff16611658610e6d565b73ffffffffffffffffffffffffffffffffffffffff16146116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590612ebc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561171e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117159061359c565b60405180910390fd5b61172781611c14565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661187b83610c50565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006118da82611794565b611919576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119109061362e565b60405180910390fd5b600061192483610c50565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061199357508373ffffffffffffffffffffffffffffffffffffffff1661197b84610861565b73ffffffffffffffffffffffffffffffffffffffff16145b806119a457506119a3818561159e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119cd82610c50565b73ffffffffffffffffffffffffffffffffffffffff1614611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a906136c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a90613752565b60405180910390fd5b611a9e838383612060565b611aa9600082611808565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611af991906131a2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b5091906131d6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c0f838383612065565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b611d0a82826040518060200160405280600081525061206a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d74906137be565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e6e91906125a1565b60405180910390a3505050565b611e868484846119ad565b611e92848484846120c5565b611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890613850565b60405180910390fd5b50505050565b60606000821415611f1f576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061205b565b600082905060005b60008214611f51578080611f3a90613304565b915050600a82611f4a919061389f565b9150611f27565b60008167ffffffffffffffff811115611f6d57611f6c612829565b5b6040519080825280601f01601f191660200182016040528015611f9f5781602001600182028036833780820191505090505b50905060008290505b6000861461205357600181611fbd91906131a2565b90506000600a8088611fcf919061389f565b611fd991906138d0565b87611fe491906131a2565b6030611ff09190613937565b905060008160f81b90508084848151811061200e5761200d613144565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8861204a919061389f565b97505050611fa8565b819450505050505b919050565b505050565b505050565b612074838361224d565b61208160008484846120c5565b6120c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b790613850565b60405180910390fd5b505050565b60006120e68473ffffffffffffffffffffffffffffffffffffffff16612427565b15612240578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261210f611800565b8786866040518563ffffffff1660e01b815260040161213194939291906139c3565b6020604051808303816000875af192505050801561216d57506040513d601f19601f8201168201806040525081019061216a9190613a24565b60015b6121f0573d806000811461219d576040519150601f19603f3d011682016040523d82523d6000602084013e6121a2565b606091505b506000815114156121e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121df90613850565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612245565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b490613a9d565b60405180910390fd5b6122c681611794565b15612306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fd90613b09565b60405180910390fd5b61231260008383612060565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461236291906131d6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461242360008383612065565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461245690612bf6565b90600052602060002090601f01602090048101928261247857600085556124bf565b82601f1061249157805160ff19168380011785556124bf565b828001600101855582156124bf579182015b828111156124be5782518255916020019190600101906124a3565b5b5090506124cc91906124d0565b5090565b5b808211156124e95760008160009055506001016124d1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61253681612501565b811461254157600080fd5b50565b6000813590506125538161252d565b92915050565b60006020828403121561256f5761256e6124f7565b5b600061257d84828501612544565b91505092915050565b60008115159050919050565b61259b81612586565b82525050565b60006020820190506125b66000830184612592565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125f65780820151818401526020810190506125db565b83811115612605576000848401525b50505050565b6000601f19601f8301169050919050565b6000612627826125bc565b61263181856125c7565b93506126418185602086016125d8565b61264a8161260b565b840191505092915050565b6000602082019050818103600083015261266f818461261c565b905092915050565b6000819050919050565b61268a81612677565b811461269557600080fd5b50565b6000813590506126a781612681565b92915050565b6000602082840312156126c3576126c26124f7565b5b60006126d184828501612698565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612705826126da565b9050919050565b612715816126fa565b82525050565b6000602082019050612730600083018461270c565b92915050565b61273f816126fa565b811461274a57600080fd5b50565b60008135905061275c81612736565b92915050565b60008060408385031215612779576127786124f7565b5b60006127878582860161274d565b925050602061279885828601612698565b9150509250929050565b6127ab81612677565b82525050565b60006020820190506127c660008301846127a2565b92915050565b6000806000606084860312156127e5576127e46124f7565b5b60006127f38682870161274d565b93505060206128048682870161274d565b925050604061281586828701612698565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128618261260b565b810181811067ffffffffffffffff821117156128805761287f612829565b5b80604052505050565b60006128936124ed565b905061289f8282612858565b919050565b600067ffffffffffffffff8211156128bf576128be612829565b5b6128c88261260b565b9050602081019050919050565b82818337600083830152505050565b60006128f76128f2846128a4565b612889565b90508281526020810184848401111561291357612912612824565b5b61291e8482856128d5565b509392505050565b600082601f83011261293b5761293a61281f565b5b813561294b8482602086016128e4565b91505092915050565b60006020828403121561296a576129696124f7565b5b600082013567ffffffffffffffff811115612988576129876124fc565b5b61299484828501612926565b91505092915050565b6000602082840312156129b3576129b26124f7565b5b60006129c18482850161274d565b91505092915050565b6129d381612586565b81146129de57600080fd5b50565b6000813590506129f0816129ca565b92915050565b60008060408385031215612a0d57612a0c6124f7565b5b6000612a1b8582860161274d565b9250506020612a2c858286016129e1565b9150509250929050565b600067ffffffffffffffff821115612a5157612a50612829565b5b612a5a8261260b565b9050602081019050919050565b6000612a7a612a7584612a36565b612889565b905082815260208101848484011115612a9657612a95612824565b5b612aa18482856128d5565b509392505050565b600082601f830112612abe57612abd61281f565b5b8135612ace848260208601612a67565b91505092915050565b60008060008060808587031215612af157612af06124f7565b5b6000612aff8782880161274d565b9450506020612b108782880161274d565b9350506040612b2187828801612698565b925050606085013567ffffffffffffffff811115612b4257612b416124fc565b5b612b4e87828801612aa9565b91505092959194509250565b600060208284031215612b7057612b6f6124f7565b5b6000612b7e848285016129e1565b91505092915050565b60008060408385031215612b9e57612b9d6124f7565b5b6000612bac8582860161274d565b9250506020612bbd8582860161274d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c0e57607f821691505b60208210811415612c2257612c21612bc7565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612c84602c836125c7565b9150612c8f82612c28565b604082019050919050565b60006020820190508181036000830152612cb381612c77565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d166021836125c7565b9150612d2182612cba565b604082019050919050565b60006020820190508181036000830152612d4581612d09565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612da86038836125c7565b9150612db382612d4c565b604082019050919050565b60006020820190508181036000830152612dd781612d9b565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612e3a6031836125c7565b9150612e4582612dde565b604082019050919050565b60006020820190508181036000830152612e6981612e2d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ea66020836125c7565b9150612eb182612e70565b602082019050919050565b60006020820190508181036000830152612ed581612e99565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612f386029836125c7565b9150612f4382612edc565b604082019050919050565b60006020820190508181036000830152612f6781612f2b565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612fca602a836125c7565b9150612fd582612f6e565b604082019050919050565b60006020820190508181036000830152612ff981612fbd565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613036601f836125c7565b915061304182613000565b602082019050919050565b6000602082019050818103600083015261306581613029565b9050919050565b7f73616c6520696e61637469766500000000000000000000000000000000000000600082015250565b60006130a2600d836125c7565b91506130ad8261306c565b602082019050919050565b600060208201905081810360008301526130d181613095565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b600061310e6012836125c7565b9150613119826130d8565b602082019050919050565b6000602082019050818103600083015261313d81613101565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131ad82612677565b91506131b883612677565b9250828210156131cb576131ca613173565b5b828203905092915050565b60006131e182612677565b91506131ec83612677565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561322157613220613173565b5b828201905092915050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b60006132626016836125c7565b915061326d8261322c565b602082019050919050565b6000602082019050818103600083015261329181613255565b9050919050565b7f496e746572616374696f6e206e6f7420616c6c6f776564000000000000000000600082015250565b60006132ce6017836125c7565b91506132d982613298565b602082019050919050565b600060208201905081810360008301526132fd816132c1565b9050919050565b600061330f82612677565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561334257613341613173565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133a9602f836125c7565b91506133b48261334d565b604082019050919050565b600060208201905081810360008301526133d88161339c565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461340c81612bf6565b61341681866133df565b94506001821660008114613431576001811461344257613475565b60ff19831686528186019350613475565b61344b856133ea565b60005b8381101561346d5781548189015260018201915060208101905061344e565b838801955050505b50505092915050565b6000613489826125bc565b61349381856133df565b93506134a38185602086016125d8565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006134e56005836133df565b91506134f0826134af565b600582019050919050565b600061350782856133ff565b9150613513828461347e565b915061351e826134d8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135866026836125c7565b91506135918261352a565b604082019050919050565b600060208201905081810360008301526135b581613579565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613618602c836125c7565b9150613623826135bc565b604082019050919050565b600060208201905081810360008301526136478161360b565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006136aa6025836125c7565b91506136b58261364e565b604082019050919050565b600060208201905081810360008301526136d98161369d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061373c6024836125c7565b9150613747826136e0565b604082019050919050565b6000602082019050818103600083015261376b8161372f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006137a86019836125c7565b91506137b382613772565b602082019050919050565b600060208201905081810360008301526137d78161379b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061383a6032836125c7565b9150613845826137de565b604082019050919050565b600060208201905081810360008301526138698161382d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138aa82612677565b91506138b583612677565b9250826138c5576138c4613870565b5b828204905092915050565b60006138db82612677565b91506138e683612677565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561391f5761391e613173565b5b828202905092915050565b600060ff82169050919050565b60006139428261392a565b915061394d8361392a565b92508260ff0382111561396357613962613173565b5b828201905092915050565b600081519050919050565b600082825260208201905092915050565b60006139958261396e565b61399f8185613979565b93506139af8185602086016125d8565b6139b88161260b565b840191505092915050565b60006080820190506139d8600083018761270c565b6139e5602083018661270c565b6139f260408301856127a2565b8181036060830152613a04818461398a565b905095945050505050565b600081519050613a1e8161252d565b92915050565b600060208284031215613a3a57613a396124f7565b5b6000613a4884828501613a0f565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613a876020836125c7565b9150613a9282613a51565b602082019050919050565b60006020820190508181036000830152613ab681613a7a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613af3601c836125c7565b9150613afe82613abd565b602082019050919050565b60006020820190508181036000830152613b2281613ae6565b905091905056fea264697066735822122067c263e716bf859e2dc0a50d63cad0952021bba0aa997632f9c33813b617a64f64736f6c634300080a0033

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.