ETH Price: $3,383.83 (-0.94%)
Gas: 9 Gwei

Token

Elderly Ape Retirement Club (EARC)
 

Overview

Max Total Supply

5,000 EARC

Holders

2,193

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 EARC
0x0d4d7e055bef415c0410978903b66542c77df06b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

[Rarity](https://earclubnft.com/rarity) | [Discord](https://discord.gg/earc) | [Twitter](https://twitter.com/EARClubNFT) | [Bingo Cards](https://opensea.io/collection/earc-bingocards) | [Honoraries](https://opensea.io/collection/earc-honorary) The ELDERLY APE RETIREMENT CLUB...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EARC

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : EARC.sol
pragma solidity ^0.8.0;

//SPDX-License-Identifier: MIT

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract EARC is ERC721, Ownable {
    uint256 public _mintPrice = 0.055 ether;
    uint256 public _maxMintPerTx = 4;
    uint256 public _maxToMintPreSale = 2;
    uint256 public MAX_SUPPLY = 10000;

    using MerkleProof for bytes32[];
    bytes32 merkleRoot;

    bool public _saleIsActive = false;
    bool public _preSaleIsActive = false;

    mapping(address => bool) private _preSaleList;
    mapping(address => uint256) private _preSaleListClaimed;

    uint256 public startTimePreSale = 1640120400;
    uint256 public endTimePreSale = 1640203200;

    uint256 public startTimeSale = 1640206800;

    address[] private _team;
    uint256[] private _shares;

    string public baseURI;

    uint256 private _t = 0;

    constructor(
        string memory uriBASE,
        address[] memory team,
        uint256[] memory team_shares,
        bytes32 root
    ) ERC721("Elderly Ape Retirement Club", "EARC") {
        baseURI = uriBASE;
        _team = team;
        _shares = team_shares;
        merkleRoot = root;
    }

    function _mint(uint256 toMint, address to) internal {
        uint256 t = _t;
        for (uint256 i = 0; i < toMint; i++) {
            _t += 1;
            _safeMint(to, t + i);
        }
        delete t;
    }

    function mint(uint256 toMint) external payable {
        require(_saleIsActive, "Sale is not active");
        require(toMint <= _maxMintPerTx, "You requested too many Apes");
        require(block.timestamp >= startTimeSale, "Sale did not start yet");
        require(_mintPrice * toMint <= msg.value, "ETH value not correct");
        require(_t + toMint <= MAX_SUPPLY, "Purchase exceeds max supply");
        _mint(toMint, _msgSender());
    }

    function preMint(uint256 toMint, bytes32[] memory proof) external payable {
        require(
            proof.verify(merkleRoot, keccak256(abi.encodePacked(msg.sender))) ||
                _preSaleList[_msgSender()],
            "You are not on the list"
        );
        require(_preSaleIsActive, "Pre Sale is not active");
        require(_mintPrice * toMint <= msg.value, "ETH value not correct");
        require(
            block.timestamp >= startTimePreSale,
            "Pre-Sale did not start yet"
        );
        require(block.timestamp <= endTimePreSale, "Pre-Sale is finished");
        require(
            _preSaleListClaimed[_msgSender()] + toMint <= _maxToMintPreSale,
            "Purchase exceeds max allowed"
        );
        require(_t + toMint <= MAX_SUPPLY, "Purchase exceeds max supply");

        _preSaleListClaimed[msg.sender] += toMint;
        _mint(toMint, _msgSender());
    }

    function reserve(uint256 toMint, address to) external onlyOwner {
        require(_t + toMint <= MAX_SUPPLY, "Purchase exceeds max supply");
        _mint(toMint, to);
    }

    function setMerkleRoot(bytes32 root) public onlyOwner {
        merkleRoot = root;
    }

    function setSaleState(bool val) external onlyOwner {
        _saleIsActive = val;
    }

    function setPreSaleState(bool val) external onlyOwner {
        _preSaleIsActive = val;
    }

    function setPrice(uint256 price) external onlyOwner {
        _mintPrice = price;
    }

    function setMaxPerTX(uint256 maxValue) external onlyOwner {
        _maxMintPerTx = maxValue;
    }

    function setPreSaleMaxMint(uint256 maxMint) external onlyOwner {
        _maxToMintPreSale = maxMint;
    }

    function setStartAndEndTimePreSale(uint256 start, uint256 end)
        external
        onlyOwner
    {
        startTimePreSale = start;
        endTimePreSale = end;
    }

    function setStartTimeSale(uint256 startSale) external onlyOwner {
        startTimeSale = startSale;
    }

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

    function cut(uint256 max) external onlyOwner {
        uint256 previous = MAX_SUPPLY;
        if (max < previous) {
            MAX_SUPPLY = max;
        }
    }

    function onAccesslist(bytes32[] memory proof, address add)
        external
        view
        returns (bool)
    {
        return proof.verify(merkleRoot, keccak256(abi.encodePacked(add)));
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        for (uint256 i = 0; i < _shares.length; i++) {
            address wallet = _team[i];
            uint256 share = _shares[i];
            payable(wallet).transfer((balance * share) / 1000);
        }
    }

    function emergencyWithdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(owner()).transfer(balance);
    }

    function setShares(address[] memory team, uint256[] memory team_shares)
        public
        onlyOwner
    {
        _team = team;
        _shares = team_shares;
    }

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

    function addToPreSaleList(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Address can not be null");

            _preSaleList[addresses[i]] = true;
        }
    }

    function onList(address addr) external view returns (bool) {
        return _preSaleList[addr];
    }

    function totalSupply() external view returns (uint256) {
        return _t;
    }

    function removeFromPreSaleList(address[] calldata addresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Address can not be null");
            _preSaleList[addresses[i]] = false;
        }
    }
}

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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);
    }

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 4 of 12 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 5 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 6 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 7 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uriBASE","type":"string"},{"internalType":"address[]","name":"team","type":"address[]"},{"internalType":"uint256[]","name":"team_shares","type":"uint256[]"},{"internalType":"bytes32","name":"root","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxToMintPreSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPreSaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"cut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTimePreSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"toMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"address","name":"add","type":"address"}],"name":"onAccesslist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"toMint","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromPreSaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"toMint","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxValue","type":"uint256"}],"name":"setMaxPerTX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setPreSaleMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"team","type":"address[]"},{"internalType":"uint256[]","name":"team_shares","type":"uint256[]"}],"name":"setShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"setStartAndEndTimePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startSale","type":"uint256"}],"name":"setStartTimeSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTimePreSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTimeSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266c3663566a5800060075560046008556002600955612710600a556000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506361c24050600f556361c383c06010556361c391d060115560006015553480156200007f57600080fd5b5060405162005e0338038062005e038339818101604052810190620000a591906200061b565b6040518060400160405280601b81526020017f456c6465726c7920417065205265746972656d656e7420436c756200000000008152506040518060400160405280600481526020017f45415243000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001299291906200028f565b508060019080519060200190620001429291906200028f565b5050506200016562000159620001c160201b60201c565b620001c960201b60201c565b83601490805190602001906200017d9291906200028f565b5082601290805190602001906200019692919062000320565b508160139080519060200190620001af929190620003af565b5080600b819055505050505062000936565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029d906200080d565b90600052602060002090601f016020900481019282620002c157600085556200030d565b82601f10620002dc57805160ff19168380011785556200030d565b828001600101855582156200030d579182015b828111156200030c578251825591602001919060010190620002ef565b5b5090506200031c919062000401565b5090565b8280548282559060005260206000209081019282156200039c579160200282015b828111156200039b5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000341565b5b509050620003ab919062000401565b5090565b828054828255906000526020600020908101928215620003ee579160200282015b82811115620003ed578251825591602001919060010190620003d0565b5b509050620003fd919062000401565b5090565b5b808211156200041c57600081600090555060010162000402565b5090565b6000620004376200043184620006fb565b620006d2565b905080838252602082019050828560208602820111156200045757600080fd5b60005b858110156200048b57816200047088826200054f565b8452602084019350602083019250506001810190506200045a565b5050509392505050565b6000620004ac620004a6846200072a565b620006d2565b90508083825260208201905082856020860282011115620004cc57600080fd5b60005b85811015620005005781620004e5888262000604565b845260208401935060208301925050600181019050620004cf565b5050509392505050565b6000620005216200051b8462000759565b620006d2565b9050828152602081018484840111156200053a57600080fd5b62000547848285620007d7565b509392505050565b6000815190506200056081620008e8565b92915050565b600082601f8301126200057857600080fd5b81516200058a84826020860162000420565b91505092915050565b600082601f830112620005a557600080fd5b8151620005b784826020860162000495565b91505092915050565b600081519050620005d18162000902565b92915050565b600082601f830112620005e957600080fd5b8151620005fb8482602086016200050a565b91505092915050565b60008151905062000615816200091c565b92915050565b600080600080608085870312156200063257600080fd5b600085015167ffffffffffffffff8111156200064d57600080fd5b6200065b87828801620005d7565b945050602085015167ffffffffffffffff8111156200067957600080fd5b620006878782880162000566565b935050604085015167ffffffffffffffff811115620006a557600080fd5b620006b38782880162000593565b9250506060620006c687828801620005c0565b91505092959194509250565b6000620006de620006f1565b9050620006ec828262000843565b919050565b6000604051905090565b600067ffffffffffffffff821115620007195762000718620008a8565b5b602082029050602081019050919050565b600067ffffffffffffffff821115620007485762000747620008a8565b5b602082029050602081019050919050565b600067ffffffffffffffff821115620007775762000776620008a8565b5b6200078282620008d7565b9050602081019050919050565b60006200079c82620007ad565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620007f7578082015181840152602081019050620007da565b8381111562000807576000848401525b50505050565b600060028204905060018216806200082657607f821691505b602082108114156200083d576200083c62000879565b5b50919050565b6200084e82620008d7565b810181811067ffffffffffffffff8211171562000870576200086f620008a8565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620008f3816200078f565b8114620008ff57600080fd5b50565b6200090d81620007a3565b81146200091957600080fd5b50565b6200092781620007cd565b81146200093357600080fd5b50565b6154bd80620009466000396000f3fe6080604052600436106102885760003560e01c8063774dd4be1161015a578063c2e21329116100c1578063de314a591161007a578063de314a5914610972578063e5a4756c1461099d578063e985e9c5146109c6578063f2fde38b14610a03578063fd636b2614610a2c578063ff4230bc14610a5557610288565b8063c2e2132914610878578063c4e37095146108a1578063c87b56dd146108ca578063d57e007f14610907578063d8c7a79714610930578063db2e21bc1461095b57610288565b806395d89b411161011357806395d89b411461078b5780639bc92366146107b6578063a0712d68146107df578063a22cb465146107fb578063ac91672614610824578063b88d4fde1461084f57610288565b8063774dd4be146106a35780637cb64759146106cc578063853828b6146106f55780638da5cb5b1461070c5780638da7878c1461073757806391b7f5ed1461076257610288565b806328d13a51116101fe5780635d893ba0116101b75780635d893ba01461057f5780636352211e146105aa5780636c0360eb146105e75780636f626eb31461061257806370a082311461064f578063715018a61461068c57610288565b806328d13a511461049257806332cb6b0c146104bd5780633ca6fb8c146104e857806342842e0e1461051157806355f804b31461053a5780635a5462231461056357610288565b806309260db71161025057806309260db714610386578063095ea7b3146103af57806318160ddd146103d85780631944fb40146104035780631d57f95a1461042c57806323b872dd1461046957610288565b806301ffc9a71461028d57806303339bcb146102ca5780630387da42146102f357806306fdde031461031e578063081812fc14610349575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613e30565b610a80565b6040516102c19190614539565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190613eec565b610b62565b005b3480156102ff57600080fd5b50610308610c3e565b60405161031591906148d6565b60405180910390f35b34801561032a57600080fd5b50610333610c44565b6040516103409190614554565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190613ec3565b610cd6565b60405161037d91906144d2565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a89190613ec3565b610d5b565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190613c9d565b610df2565b005b3480156103e457600080fd5b506103ed610f0a565b6040516103fa91906148d6565b60405180910390f35b34801561040f57600080fd5b5061042a60048036038101906104259190613ec3565b610f14565b005b34801561043857600080fd5b50610453600480360381019061044e9190613d8a565b610f9a565b6040516104609190614539565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190613b97565b610fe1565b005b34801561049e57600080fd5b506104a7611041565b6040516104b491906148d6565b60405180910390f35b3480156104c957600080fd5b506104d2611047565b6040516104df91906148d6565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190613dde565b61104d565b005b34801561051d57600080fd5b5061053860048036038101906105339190613b97565b6110e6565b005b34801561054657600080fd5b50610561600480360381019061055c9190613e82565b611106565b005b61057d60048036038101906105789190613f28565b61119c565b005b34801561058b57600080fd5b506105946114ef565b6040516105a19190614539565b60405180910390f35b3480156105b657600080fd5b506105d160048036038101906105cc9190613ec3565b611502565b6040516105de91906144d2565b60405180910390f35b3480156105f357600080fd5b506105fc6115b4565b6040516106099190614554565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190613b32565b611642565b6040516106469190614539565b60405180910390f35b34801561065b57600080fd5b5061067660048036038101906106719190613b32565b611698565b60405161068391906148d6565b60405180910390f35b34801561069857600080fd5b506106a1611750565b005b3480156106af57600080fd5b506106ca60048036038101906106c59190613ec3565b6117d8565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190613e07565b61185e565b005b34801561070157600080fd5b5061070a6118e4565b005b34801561071857600080fd5b50610721611a9f565b60405161072e91906144d2565b60405180910390f35b34801561074357600080fd5b5061074c611ac9565b60405161075991906148d6565b60405180910390f35b34801561076e57600080fd5b5061078960048036038101906107849190613ec3565b611acf565b005b34801561079757600080fd5b506107a0611b55565b6040516107ad9190614554565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190613f7c565b611be7565b005b6107f960048036038101906107f49190613ec3565b611c75565b005b34801561080757600080fd5b50610822600480360381019061081d9190613c61565b611e04565b005b34801561083057600080fd5b50610839611e1a565b60405161084691906148d6565b60405180910390f35b34801561085b57600080fd5b5061087660048036038101906108719190613be6565b611e20565b005b34801561088457600080fd5b5061089f600480360381019061089a9190613cd9565b611e82565b005b3480156108ad57600080fd5b506108c860048036038101906108c39190613dde565b612086565b005b3480156108d657600080fd5b506108f160048036038101906108ec9190613ec3565b61211f565b6040516108fe9190614554565b60405180910390f35b34801561091357600080fd5b5061092e60048036038101906109299190613cd9565b6121c6565b005b34801561093c57600080fd5b506109456123ca565b6040516109529190614539565b60405180910390f35b34801561096757600080fd5b506109706123dd565b005b34801561097e57600080fd5b506109876124af565b60405161099491906148d6565b60405180910390f35b3480156109a957600080fd5b506109c460048036038101906109bf9190613ec3565b6124b5565b005b3480156109d257600080fd5b506109ed60048036038101906109e89190613b5b565b61253b565b6040516109fa9190614539565b60405180910390f35b348015610a0f57600080fd5b50610a2a6004803603810190610a259190613b32565b6125cf565b005b348015610a3857600080fd5b50610a536004803603810190610a4e9190613d1e565b6126c7565b005b348015610a6157600080fd5b50610a6a612775565b604051610a7791906148d6565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5b5750610b5a8261277b565b5b9050919050565b610b6a6127e5565b73ffffffffffffffffffffffffffffffffffffffff16610b88611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590614796565b60405180910390fd5b600a5482601554610bef9190614a3f565b1115610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c27906147b6565b60405180910390fd5b610c3a82826127ed565b5050565b60075481565b606060008054610c5390614c14565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7f90614c14565b8015610ccc5780601f10610ca157610100808354040283529160200191610ccc565b820191906000526020600020905b815481529060010190602001808311610caf57829003601f168201915b5050505050905090565b6000610ce18261284b565b610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790614776565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610d636127e5565b73ffffffffffffffffffffffffffffffffffffffff16610d81611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90614796565b60405180910390fd5b6000600a54905080821015610dee5781600a819055505b5050565b6000610dfd82611502565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590614816565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e8d6127e5565b73ffffffffffffffffffffffffffffffffffffffff161480610ebc5750610ebb81610eb66127e5565b61253b565b5b610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906146f6565b60405180910390fd5b610f0583836128b7565b505050565b6000601554905090565b610f1c6127e5565b73ffffffffffffffffffffffffffffffffffffffff16610f3a611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614610f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8790614796565b60405180910390fd5b8060098190555050565b6000610fd9600b5483604051602001610fb39190614467565b60405160208183030381529060405280519060200120856129709092919063ffffffff16565b905092915050565b610ff2610fec6127e5565b82612987565b611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102890614856565b60405180910390fd5b61103c838383612a65565b505050565b600f5481565b600a5481565b6110556127e5565b73ffffffffffffffffffffffffffffffffffffffff16611073611a9f565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090614796565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b61110183838360405180602001604052806000815250611e20565b505050565b61110e6127e5565b73ffffffffffffffffffffffffffffffffffffffff1661112c611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990614796565b60405180910390fd5b806014908051906020019061119892919061365e565b5050565b6111d9600b54336040516020016111b39190614467565b60405160208183030381529060405280519060200120836129709092919063ffffffff16565b806112345750600d60006111eb6127e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a90614636565b60405180910390fd5b600c60019054906101000a900460ff166112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990614896565b60405180910390fd5b34826007546112d19190614ac6565b1115611312576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611309906146d6565b60405180910390fd5b600f54421015611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e906145f6565b60405180910390fd5b60105442111561139c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611393906145d6565b60405180910390fd5b60095482600e60006113ac6127e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f19190614a3f565b1115611432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611429906148b6565b60405180910390fd5b600a54826015546114439190614a3f565b1115611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b906147b6565b60405180910390fd5b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114d39190614a3f565b925050819055506114eb826114e66127e5565b6127ed565b5050565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a290614736565b60405180910390fd5b80915050919050565b601480546115c190614c14565b80601f01602080910402602001604051908101604052809291908181526020018280546115ed90614c14565b801561163a5780601f1061160f5761010080835404028352916020019161163a565b820191906000526020600020905b81548152906001019060200180831161161d57829003601f168201915b505050505081565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170090614716565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117586127e5565b73ffffffffffffffffffffffffffffffffffffffff16611776611a9f565b73ffffffffffffffffffffffffffffffffffffffff16146117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c390614796565b60405180910390fd5b6117d66000612cc1565b565b6117e06127e5565b73ffffffffffffffffffffffffffffffffffffffff166117fe611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b90614796565b60405180910390fd5b8060118190555050565b6118666127e5565b73ffffffffffffffffffffffffffffffffffffffff16611884611a9f565b73ffffffffffffffffffffffffffffffffffffffff16146118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190614796565b60405180910390fd5b80600b8190555050565b6118ec6127e5565b73ffffffffffffffffffffffffffffffffffffffff1661190a611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614611960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195790614796565b60405180910390fd5b600047905060005b601380549050811015611a9b576000601282815481106119b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600060138381548110611a1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508173ffffffffffffffffffffffffffffffffffffffff166108fc6103e88387611a509190614ac6565b611a5a9190614a95565b9081150290604051600060405180830381858888f19350505050158015611a85573d6000803e3d6000fd5b5050508080611a9390614c77565b915050611968565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b611ad76127e5565b73ffffffffffffffffffffffffffffffffffffffff16611af5611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4290614796565b60405180910390fd5b8060078190555050565b606060018054611b6490614c14565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9090614c14565b8015611bdd5780601f10611bb257610100808354040283529160200191611bdd565b820191906000526020600020905b815481529060010190602001808311611bc057829003601f168201915b5050505050905090565b611bef6127e5565b73ffffffffffffffffffffffffffffffffffffffff16611c0d611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614611c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5a90614796565b60405180910390fd5b81600f81905550806010819055505050565b600c60009054906101000a900460ff16611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb90614696565b60405180910390fd5b600854811115611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0090614876565b60405180910390fd5b601154421015611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4590614836565b60405180910390fd5b3481600754611d5d9190614ac6565b1115611d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d95906146d6565b60405180910390fd5b600a5481601554611daf9190614a3f565b1115611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de7906147b6565b60405180910390fd5b611e0181611dfc6127e5565b6127ed565b50565b611e16611e0f6127e5565b8383612d87565b5050565b60105481565b611e31611e2b6127e5565b83612987565b611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790614856565b60405180910390fd5b611e7c84848484612ef4565b50505050565b611e8a6127e5565b73ffffffffffffffffffffffffffffffffffffffff16611ea8611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590614796565b60405180910390fd5b60005b8282905081101561208157600073ffffffffffffffffffffffffffffffffffffffff16838383818110611f5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611f729190613b32565b73ffffffffffffffffffffffffffffffffffffffff161415611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc090614616565b60405180910390fd5b6000600d6000858585818110612008577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061201d9190613b32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061207990614c77565b915050611f01565b505050565b61208e6127e5565b73ffffffffffffffffffffffffffffffffffffffff166120ac611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614612102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f990614796565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b606061212a8261284b565b612169576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612160906147f6565b60405180910390fd5b6000612173612f50565b9050600081511161219357604051806020016040528060008152506121be565b8061219d84612fe2565b6040516020016121ae9291906144ae565b6040516020818303038152906040525b915050919050565b6121ce6127e5565b73ffffffffffffffffffffffffffffffffffffffff166121ec611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614612242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223990614796565b60405180910390fd5b60005b828290508110156123c557600073ffffffffffffffffffffffffffffffffffffffff168383838181106122a1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906122b69190613b32565b73ffffffffffffffffffffffffffffffffffffffff16141561230d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230490614616565b60405180910390fd5b6001600d600085858581811061234c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906123619190613b32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806123bd90614c77565b915050612245565b505050565b600c60019054906101000a900460ff1681565b6123e56127e5565b73ffffffffffffffffffffffffffffffffffffffff16612403611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614612459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245090614796565b60405180910390fd5b6000479050612466611a9f565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156124ab573d6000803e3d6000fd5b5050565b60085481565b6124bd6127e5565b73ffffffffffffffffffffffffffffffffffffffff166124db611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614612531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252890614796565b60405180910390fd5b8060088190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125d76127e5565b73ffffffffffffffffffffffffffffffffffffffff166125f5611a9f565b73ffffffffffffffffffffffffffffffffffffffff161461264b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264290614796565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b290614596565b60405180910390fd5b6126c481612cc1565b50565b6126cf6127e5565b73ffffffffffffffffffffffffffffffffffffffff166126ed611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614612743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273a90614796565b60405180910390fd5b81601290805190602001906127599291906136e4565b50806013908051906020019061277092919061376e565b505050565b60095481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000601554905060005b83811015612841576001601560008282546128129190614a3f565b9250508190555061282e8382846128299190614a3f565b61318f565b808061283990614c77565b9150506127f7565b5060009050505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661292a83611502565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008261297d85846131ad565b1490509392505050565b60006129928261284b565b6129d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c8906146b6565b60405180910390fd5b60006129dc83611502565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a4b57508373ffffffffffffffffffffffffffffffffffffffff16612a3384610cd6565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a5c5750612a5b818561253b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a8582611502565b73ffffffffffffffffffffffffffffffffffffffff1614612adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad2906147d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4290614656565b60405180910390fd5b612b56838383613286565b612b616000826128b7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bb19190614b20565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c089190614a3f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ded90614676565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ee79190614539565b60405180910390a3505050565b612eff848484612a65565b612f0b8484848461328b565b612f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4190614576565b60405180910390fd5b50505050565b606060148054612f5f90614c14565b80601f0160208091040260200160405190810160405280929190818152602001828054612f8b90614c14565b8015612fd85780601f10612fad57610100808354040283529160200191612fd8565b820191906000526020600020905b815481529060010190602001808311612fbb57829003601f168201915b5050505050905090565b6060600082141561302a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061318a565b600082905060005b6000821461305c57808061304590614c77565b915050600a826130559190614a95565b9150613032565b60008167ffffffffffffffff81111561309e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130d05781602001600182028036833780820191505090505b5090505b60008514613183576001826130e99190614b20565b9150600a856130f89190614cee565b60306131049190614a3f565b60f81b818381518110613140577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561317c9190614a95565b94506130d4565b8093505050505b919050565b6131a9828260405180602001604052806000815250613422565b5050565b60008082905060005b845181101561327b5760008582815181106131fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161323b57828160405160200161321e929190614482565b604051602081830303815290604052805190602001209250613267565b808360405160200161324e929190614482565b6040516020818303038152906040528051906020012092505b50808061327390614c77565b9150506131b6565b508091505092915050565b505050565b60006132ac8473ffffffffffffffffffffffffffffffffffffffff1661347d565b15613415578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132d56127e5565b8786866040518563ffffffff1660e01b81526004016132f794939291906144ed565b602060405180830381600087803b15801561331157600080fd5b505af192505050801561334257506040513d601f19601f8201168201806040525081019061333f9190613e59565b60015b6133c5573d8060008114613372576040519150601f19603f3d011682016040523d82523d6000602084013e613377565b606091505b506000815114156133bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b490614576565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061341a565b600190505b949350505050565b61342c8383613490565b613439600084848461328b565b613478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346f90614576565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134f790614756565b60405180910390fd5b6135098161284b565b15613549576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613540906145b6565b60405180910390fd5b61355560008383613286565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135a59190614a3f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461366a90614c14565b90600052602060002090601f01602090048101928261368c57600085556136d3565b82601f106136a557805160ff19168380011785556136d3565b828001600101855582156136d3579182015b828111156136d25782518255916020019190600101906136b7565b5b5090506136e091906137bb565b5090565b82805482825590600052602060002090810192821561375d579160200282015b8281111561375c5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613704565b5b50905061376a91906137bb565b5090565b8280548282559060005260206000209081019282156137aa579160200282015b828111156137a957825182559160200191906001019061378e565b5b5090506137b791906137bb565b5090565b5b808211156137d45760008160009055506001016137bc565b5090565b60006137eb6137e684614916565b6148f1565b9050808382526020820190508285602086028201111561380a57600080fd5b60005b8581101561383a57816138208882613998565b84526020840193506020830192505060018101905061380d565b5050509392505050565b600061385761385284614942565b6148f1565b9050808382526020820190508285602086028201111561387657600080fd5b60005b858110156138a6578161388c8882613a8a565b845260208401935060208301925050600181019050613879565b5050509392505050565b60006138c36138be8461496e565b6148f1565b905080838252602082019050828560208602820111156138e257600080fd5b60005b8581101561391257816138f88882613b1d565b8452602084019350602083019250506001810190506138e5565b5050509392505050565b600061392f61392a8461499a565b6148f1565b90508281526020810184848401111561394757600080fd5b613952848285614bd2565b509392505050565b600061396d613968846149cb565b6148f1565b90508281526020810184848401111561398557600080fd5b613990848285614bd2565b509392505050565b6000813590506139a781615414565b92915050565b60008083601f8401126139bf57600080fd5b8235905067ffffffffffffffff8111156139d857600080fd5b6020830191508360208202830111156139f057600080fd5b9250929050565b600082601f830112613a0857600080fd5b8135613a188482602086016137d8565b91505092915050565b600082601f830112613a3257600080fd5b8135613a42848260208601613844565b91505092915050565b600082601f830112613a5c57600080fd5b8135613a6c8482602086016138b0565b91505092915050565b600081359050613a848161542b565b92915050565b600081359050613a9981615442565b92915050565b600081359050613aae81615459565b92915050565b600081519050613ac381615459565b92915050565b600082601f830112613ada57600080fd5b8135613aea84826020860161391c565b91505092915050565b600082601f830112613b0457600080fd5b8135613b1484826020860161395a565b91505092915050565b600081359050613b2c81615470565b92915050565b600060208284031215613b4457600080fd5b6000613b5284828501613998565b91505092915050565b60008060408385031215613b6e57600080fd5b6000613b7c85828601613998565b9250506020613b8d85828601613998565b9150509250929050565b600080600060608486031215613bac57600080fd5b6000613bba86828701613998565b9350506020613bcb86828701613998565b9250506040613bdc86828701613b1d565b9150509250925092565b60008060008060808587031215613bfc57600080fd5b6000613c0a87828801613998565b9450506020613c1b87828801613998565b9350506040613c2c87828801613b1d565b925050606085013567ffffffffffffffff811115613c4957600080fd5b613c5587828801613ac9565b91505092959194509250565b60008060408385031215613c7457600080fd5b6000613c8285828601613998565b9250506020613c9385828601613a75565b9150509250929050565b60008060408385031215613cb057600080fd5b6000613cbe85828601613998565b9250506020613ccf85828601613b1d565b9150509250929050565b60008060208385031215613cec57600080fd5b600083013567ffffffffffffffff811115613d0657600080fd5b613d12858286016139ad565b92509250509250929050565b60008060408385031215613d3157600080fd5b600083013567ffffffffffffffff811115613d4b57600080fd5b613d57858286016139f7565b925050602083013567ffffffffffffffff811115613d7457600080fd5b613d8085828601613a4b565b9150509250929050565b60008060408385031215613d9d57600080fd5b600083013567ffffffffffffffff811115613db757600080fd5b613dc385828601613a21565b9250506020613dd485828601613998565b9150509250929050565b600060208284031215613df057600080fd5b6000613dfe84828501613a75565b91505092915050565b600060208284031215613e1957600080fd5b6000613e2784828501613a8a565b91505092915050565b600060208284031215613e4257600080fd5b6000613e5084828501613a9f565b91505092915050565b600060208284031215613e6b57600080fd5b6000613e7984828501613ab4565b91505092915050565b600060208284031215613e9457600080fd5b600082013567ffffffffffffffff811115613eae57600080fd5b613eba84828501613af3565b91505092915050565b600060208284031215613ed557600080fd5b6000613ee384828501613b1d565b91505092915050565b60008060408385031215613eff57600080fd5b6000613f0d85828601613b1d565b9250506020613f1e85828601613998565b9150509250929050565b60008060408385031215613f3b57600080fd5b6000613f4985828601613b1d565b925050602083013567ffffffffffffffff811115613f6657600080fd5b613f7285828601613a21565b9150509250929050565b60008060408385031215613f8f57600080fd5b6000613f9d85828601613b1d565b9250506020613fae85828601613b1d565b9150509250929050565b613fc181614b54565b82525050565b613fd8613fd382614b54565b614cc0565b82525050565b613fe781614b66565b82525050565b613ffe613ff982614b72565b614cd2565b82525050565b600061400f826149fc565b6140198185614a12565b9350614029818560208601614be1565b61403281614ddb565b840191505092915050565b600061404882614a07565b6140528185614a23565b9350614062818560208601614be1565b61406b81614ddb565b840191505092915050565b600061408182614a07565b61408b8185614a34565b935061409b818560208601614be1565b80840191505092915050565b60006140b4603283614a23565b91506140bf82614df9565b604082019050919050565b60006140d7602683614a23565b91506140e282614e48565b604082019050919050565b60006140fa601c83614a23565b915061410582614e97565b602082019050919050565b600061411d601483614a23565b915061412882614ec0565b602082019050919050565b6000614140601a83614a23565b915061414b82614ee9565b602082019050919050565b6000614163601783614a23565b915061416e82614f12565b602082019050919050565b6000614186601783614a23565b915061419182614f3b565b602082019050919050565b60006141a9602483614a23565b91506141b482614f64565b604082019050919050565b60006141cc601983614a23565b91506141d782614fb3565b602082019050919050565b60006141ef601283614a23565b91506141fa82614fdc565b602082019050919050565b6000614212602c83614a23565b915061421d82615005565b604082019050919050565b6000614235601583614a23565b915061424082615054565b602082019050919050565b6000614258603883614a23565b91506142638261507d565b604082019050919050565b600061427b602a83614a23565b9150614286826150cc565b604082019050919050565b600061429e602983614a23565b91506142a98261511b565b604082019050919050565b60006142c1602083614a23565b91506142cc8261516a565b602082019050919050565b60006142e4602c83614a23565b91506142ef82615193565b604082019050919050565b6000614307602083614a23565b9150614312826151e2565b602082019050919050565b600061432a601b83614a23565b91506143358261520b565b602082019050919050565b600061434d602983614a23565b915061435882615234565b604082019050919050565b6000614370602f83614a23565b915061437b82615283565b604082019050919050565b6000614393602183614a23565b915061439e826152d2565b604082019050919050565b60006143b6601683614a23565b91506143c182615321565b602082019050919050565b60006143d9603183614a23565b91506143e48261534a565b604082019050919050565b60006143fc601b83614a23565b915061440782615399565b602082019050919050565b600061441f601683614a23565b915061442a826153c2565b602082019050919050565b6000614442601c83614a23565b915061444d826153eb565b602082019050919050565b61446181614bc8565b82525050565b60006144738284613fc7565b60148201915081905092915050565b600061448e8285613fed565b60208201915061449e8284613fed565b6020820191508190509392505050565b60006144ba8285614076565b91506144c68284614076565b91508190509392505050565b60006020820190506144e76000830184613fb8565b92915050565b60006080820190506145026000830187613fb8565b61450f6020830186613fb8565b61451c6040830185614458565b818103606083015261452e8184614004565b905095945050505050565b600060208201905061454e6000830184613fde565b92915050565b6000602082019050818103600083015261456e818461403d565b905092915050565b6000602082019050818103600083015261458f816140a7565b9050919050565b600060208201905081810360008301526145af816140ca565b9050919050565b600060208201905081810360008301526145cf816140ed565b9050919050565b600060208201905081810360008301526145ef81614110565b9050919050565b6000602082019050818103600083015261460f81614133565b9050919050565b6000602082019050818103600083015261462f81614156565b9050919050565b6000602082019050818103600083015261464f81614179565b9050919050565b6000602082019050818103600083015261466f8161419c565b9050919050565b6000602082019050818103600083015261468f816141bf565b9050919050565b600060208201905081810360008301526146af816141e2565b9050919050565b600060208201905081810360008301526146cf81614205565b9050919050565b600060208201905081810360008301526146ef81614228565b9050919050565b6000602082019050818103600083015261470f8161424b565b9050919050565b6000602082019050818103600083015261472f8161426e565b9050919050565b6000602082019050818103600083015261474f81614291565b9050919050565b6000602082019050818103600083015261476f816142b4565b9050919050565b6000602082019050818103600083015261478f816142d7565b9050919050565b600060208201905081810360008301526147af816142fa565b9050919050565b600060208201905081810360008301526147cf8161431d565b9050919050565b600060208201905081810360008301526147ef81614340565b9050919050565b6000602082019050818103600083015261480f81614363565b9050919050565b6000602082019050818103600083015261482f81614386565b9050919050565b6000602082019050818103600083015261484f816143a9565b9050919050565b6000602082019050818103600083015261486f816143cc565b9050919050565b6000602082019050818103600083015261488f816143ef565b9050919050565b600060208201905081810360008301526148af81614412565b9050919050565b600060208201905081810360008301526148cf81614435565b9050919050565b60006020820190506148eb6000830184614458565b92915050565b60006148fb61490c565b90506149078282614c46565b919050565b6000604051905090565b600067ffffffffffffffff82111561493157614930614dac565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561495d5761495c614dac565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561498957614988614dac565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156149b5576149b4614dac565b5b6149be82614ddb565b9050602081019050919050565b600067ffffffffffffffff8211156149e6576149e5614dac565b5b6149ef82614ddb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a4a82614bc8565b9150614a5583614bc8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a8a57614a89614d1f565b5b828201905092915050565b6000614aa082614bc8565b9150614aab83614bc8565b925082614abb57614aba614d4e565b5b828204905092915050565b6000614ad182614bc8565b9150614adc83614bc8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b1557614b14614d1f565b5b828202905092915050565b6000614b2b82614bc8565b9150614b3683614bc8565b925082821015614b4957614b48614d1f565b5b828203905092915050565b6000614b5f82614ba8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614bff578082015181840152602081019050614be4565b83811115614c0e576000848401525b50505050565b60006002820490506001821680614c2c57607f821691505b60208210811415614c4057614c3f614d7d565b5b50919050565b614c4f82614ddb565b810181811067ffffffffffffffff82111715614c6e57614c6d614dac565b5b80604052505050565b6000614c8282614bc8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cb557614cb4614d1f565b5b600182019050919050565b6000614ccb82614cdc565b9050919050565b6000819050919050565b6000614ce782614dec565b9050919050565b6000614cf982614bc8565b9150614d0483614bc8565b925082614d1457614d13614d4e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5072652d53616c652069732066696e6973686564000000000000000000000000600082015250565b7f5072652d53616c6520646964206e6f7420737461727420796574000000000000600082015250565b7f416464726573732063616e206e6f74206265206e756c6c000000000000000000600082015250565b7f596f7520617265206e6f74206f6e20746865206c697374000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4554482076616c7565206e6f7420636f72726563740000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f50757263686173652065786365656473206d617820737570706c790000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520646964206e6f742073746172742079657400000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f752072657175657374656420746f6f206d616e7920417065730000000000600082015250565b7f5072652053616c65206973206e6f742061637469766500000000000000000000600082015250565b7f50757263686173652065786365656473206d617820616c6c6f77656400000000600082015250565b61541d81614b54565b811461542857600080fd5b50565b61543481614b66565b811461543f57600080fd5b50565b61544b81614b72565b811461545657600080fd5b50565b61546281614b7c565b811461546d57600080fd5b50565b61547981614bc8565b811461548457600080fd5b5056fea26469706673582212205257e1e9378d387e2003e78af5b7927f48e6037c695604e8cd0e1ae4617e25c464736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000240a85b023520fd3992af77c4cd66101d00d9fe18d6723073e7d04d0293d30e0246000000000000000000000000000000000000000000000000000000000000001b68747470733a2f2f6170692e656172636c75626e66742e636f6d2f0000000000000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000008273fbad1db439fd8e8f778f3c6fd83bfd1803f100000000000000000000000028ef7e4813bf75393ef9584265ce37188d6eb15e0000000000000000000000005d41e9e5798d662a6de0b098c58aad29aa9223b60000000000000000000000002f5528be1247afdbff040132829db91f933c50c7000000000000000000000000c9de66ec44511fde037df7f489a6f51fc356896e0000000000000000000000008d2783c85bcd59b478e086b34a46d5a87376acbf000000000000000000000000318f35663a92df1eba4543cebbf360c5d26cd77b0000000000000000000000002c4da7cce9225d2e34ab5f3ede5f7cd3f666428f0000000000000000000000000e60dd34a745d93f5dd25f489d4c3981f7851fee0000000000000000000000002f12306e2d0f2b07db038ad2c7c1f67216fad2fa000000000000000000000000dbee2b963736e6a470664c32ce52b9f6cf0066d1000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000010900000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000780000000000000000000000000000000000000000000000000000000000000032

Deployed Bytecode

0x6080604052600436106102885760003560e01c8063774dd4be1161015a578063c2e21329116100c1578063de314a591161007a578063de314a5914610972578063e5a4756c1461099d578063e985e9c5146109c6578063f2fde38b14610a03578063fd636b2614610a2c578063ff4230bc14610a5557610288565b8063c2e2132914610878578063c4e37095146108a1578063c87b56dd146108ca578063d57e007f14610907578063d8c7a79714610930578063db2e21bc1461095b57610288565b806395d89b411161011357806395d89b411461078b5780639bc92366146107b6578063a0712d68146107df578063a22cb465146107fb578063ac91672614610824578063b88d4fde1461084f57610288565b8063774dd4be146106a35780637cb64759146106cc578063853828b6146106f55780638da5cb5b1461070c5780638da7878c1461073757806391b7f5ed1461076257610288565b806328d13a51116101fe5780635d893ba0116101b75780635d893ba01461057f5780636352211e146105aa5780636c0360eb146105e75780636f626eb31461061257806370a082311461064f578063715018a61461068c57610288565b806328d13a511461049257806332cb6b0c146104bd5780633ca6fb8c146104e857806342842e0e1461051157806355f804b31461053a5780635a5462231461056357610288565b806309260db71161025057806309260db714610386578063095ea7b3146103af57806318160ddd146103d85780631944fb40146104035780631d57f95a1461042c57806323b872dd1461046957610288565b806301ffc9a71461028d57806303339bcb146102ca5780630387da42146102f357806306fdde031461031e578063081812fc14610349575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613e30565b610a80565b6040516102c19190614539565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190613eec565b610b62565b005b3480156102ff57600080fd5b50610308610c3e565b60405161031591906148d6565b60405180910390f35b34801561032a57600080fd5b50610333610c44565b6040516103409190614554565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190613ec3565b610cd6565b60405161037d91906144d2565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a89190613ec3565b610d5b565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190613c9d565b610df2565b005b3480156103e457600080fd5b506103ed610f0a565b6040516103fa91906148d6565b60405180910390f35b34801561040f57600080fd5b5061042a60048036038101906104259190613ec3565b610f14565b005b34801561043857600080fd5b50610453600480360381019061044e9190613d8a565b610f9a565b6040516104609190614539565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190613b97565b610fe1565b005b34801561049e57600080fd5b506104a7611041565b6040516104b491906148d6565b60405180910390f35b3480156104c957600080fd5b506104d2611047565b6040516104df91906148d6565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190613dde565b61104d565b005b34801561051d57600080fd5b5061053860048036038101906105339190613b97565b6110e6565b005b34801561054657600080fd5b50610561600480360381019061055c9190613e82565b611106565b005b61057d60048036038101906105789190613f28565b61119c565b005b34801561058b57600080fd5b506105946114ef565b6040516105a19190614539565b60405180910390f35b3480156105b657600080fd5b506105d160048036038101906105cc9190613ec3565b611502565b6040516105de91906144d2565b60405180910390f35b3480156105f357600080fd5b506105fc6115b4565b6040516106099190614554565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190613b32565b611642565b6040516106469190614539565b60405180910390f35b34801561065b57600080fd5b5061067660048036038101906106719190613b32565b611698565b60405161068391906148d6565b60405180910390f35b34801561069857600080fd5b506106a1611750565b005b3480156106af57600080fd5b506106ca60048036038101906106c59190613ec3565b6117d8565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190613e07565b61185e565b005b34801561070157600080fd5b5061070a6118e4565b005b34801561071857600080fd5b50610721611a9f565b60405161072e91906144d2565b60405180910390f35b34801561074357600080fd5b5061074c611ac9565b60405161075991906148d6565b60405180910390f35b34801561076e57600080fd5b5061078960048036038101906107849190613ec3565b611acf565b005b34801561079757600080fd5b506107a0611b55565b6040516107ad9190614554565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190613f7c565b611be7565b005b6107f960048036038101906107f49190613ec3565b611c75565b005b34801561080757600080fd5b50610822600480360381019061081d9190613c61565b611e04565b005b34801561083057600080fd5b50610839611e1a565b60405161084691906148d6565b60405180910390f35b34801561085b57600080fd5b5061087660048036038101906108719190613be6565b611e20565b005b34801561088457600080fd5b5061089f600480360381019061089a9190613cd9565b611e82565b005b3480156108ad57600080fd5b506108c860048036038101906108c39190613dde565b612086565b005b3480156108d657600080fd5b506108f160048036038101906108ec9190613ec3565b61211f565b6040516108fe9190614554565b60405180910390f35b34801561091357600080fd5b5061092e60048036038101906109299190613cd9565b6121c6565b005b34801561093c57600080fd5b506109456123ca565b6040516109529190614539565b60405180910390f35b34801561096757600080fd5b506109706123dd565b005b34801561097e57600080fd5b506109876124af565b60405161099491906148d6565b60405180910390f35b3480156109a957600080fd5b506109c460048036038101906109bf9190613ec3565b6124b5565b005b3480156109d257600080fd5b506109ed60048036038101906109e89190613b5b565b61253b565b6040516109fa9190614539565b60405180910390f35b348015610a0f57600080fd5b50610a2a6004803603810190610a259190613b32565b6125cf565b005b348015610a3857600080fd5b50610a536004803603810190610a4e9190613d1e565b6126c7565b005b348015610a6157600080fd5b50610a6a612775565b604051610a7791906148d6565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5b5750610b5a8261277b565b5b9050919050565b610b6a6127e5565b73ffffffffffffffffffffffffffffffffffffffff16610b88611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590614796565b60405180910390fd5b600a5482601554610bef9190614a3f565b1115610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c27906147b6565b60405180910390fd5b610c3a82826127ed565b5050565b60075481565b606060008054610c5390614c14565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7f90614c14565b8015610ccc5780601f10610ca157610100808354040283529160200191610ccc565b820191906000526020600020905b815481529060010190602001808311610caf57829003601f168201915b5050505050905090565b6000610ce18261284b565b610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790614776565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610d636127e5565b73ffffffffffffffffffffffffffffffffffffffff16610d81611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90614796565b60405180910390fd5b6000600a54905080821015610dee5781600a819055505b5050565b6000610dfd82611502565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590614816565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e8d6127e5565b73ffffffffffffffffffffffffffffffffffffffff161480610ebc5750610ebb81610eb66127e5565b61253b565b5b610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906146f6565b60405180910390fd5b610f0583836128b7565b505050565b6000601554905090565b610f1c6127e5565b73ffffffffffffffffffffffffffffffffffffffff16610f3a611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614610f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8790614796565b60405180910390fd5b8060098190555050565b6000610fd9600b5483604051602001610fb39190614467565b60405160208183030381529060405280519060200120856129709092919063ffffffff16565b905092915050565b610ff2610fec6127e5565b82612987565b611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102890614856565b60405180910390fd5b61103c838383612a65565b505050565b600f5481565b600a5481565b6110556127e5565b73ffffffffffffffffffffffffffffffffffffffff16611073611a9f565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090614796565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b61110183838360405180602001604052806000815250611e20565b505050565b61110e6127e5565b73ffffffffffffffffffffffffffffffffffffffff1661112c611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990614796565b60405180910390fd5b806014908051906020019061119892919061365e565b5050565b6111d9600b54336040516020016111b39190614467565b60405160208183030381529060405280519060200120836129709092919063ffffffff16565b806112345750600d60006111eb6127e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a90614636565b60405180910390fd5b600c60019054906101000a900460ff166112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990614896565b60405180910390fd5b34826007546112d19190614ac6565b1115611312576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611309906146d6565b60405180910390fd5b600f54421015611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e906145f6565b60405180910390fd5b60105442111561139c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611393906145d6565b60405180910390fd5b60095482600e60006113ac6127e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f19190614a3f565b1115611432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611429906148b6565b60405180910390fd5b600a54826015546114439190614a3f565b1115611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b906147b6565b60405180910390fd5b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114d39190614a3f565b925050819055506114eb826114e66127e5565b6127ed565b5050565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a290614736565b60405180910390fd5b80915050919050565b601480546115c190614c14565b80601f01602080910402602001604051908101604052809291908181526020018280546115ed90614c14565b801561163a5780601f1061160f5761010080835404028352916020019161163a565b820191906000526020600020905b81548152906001019060200180831161161d57829003601f168201915b505050505081565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170090614716565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117586127e5565b73ffffffffffffffffffffffffffffffffffffffff16611776611a9f565b73ffffffffffffffffffffffffffffffffffffffff16146117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c390614796565b60405180910390fd5b6117d66000612cc1565b565b6117e06127e5565b73ffffffffffffffffffffffffffffffffffffffff166117fe611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b90614796565b60405180910390fd5b8060118190555050565b6118666127e5565b73ffffffffffffffffffffffffffffffffffffffff16611884611a9f565b73ffffffffffffffffffffffffffffffffffffffff16146118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190614796565b60405180910390fd5b80600b8190555050565b6118ec6127e5565b73ffffffffffffffffffffffffffffffffffffffff1661190a611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614611960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195790614796565b60405180910390fd5b600047905060005b601380549050811015611a9b576000601282815481106119b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600060138381548110611a1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508173ffffffffffffffffffffffffffffffffffffffff166108fc6103e88387611a509190614ac6565b611a5a9190614a95565b9081150290604051600060405180830381858888f19350505050158015611a85573d6000803e3d6000fd5b5050508080611a9390614c77565b915050611968565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b611ad76127e5565b73ffffffffffffffffffffffffffffffffffffffff16611af5611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4290614796565b60405180910390fd5b8060078190555050565b606060018054611b6490614c14565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9090614c14565b8015611bdd5780601f10611bb257610100808354040283529160200191611bdd565b820191906000526020600020905b815481529060010190602001808311611bc057829003601f168201915b5050505050905090565b611bef6127e5565b73ffffffffffffffffffffffffffffffffffffffff16611c0d611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614611c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5a90614796565b60405180910390fd5b81600f81905550806010819055505050565b600c60009054906101000a900460ff16611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb90614696565b60405180910390fd5b600854811115611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0090614876565b60405180910390fd5b601154421015611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4590614836565b60405180910390fd5b3481600754611d5d9190614ac6565b1115611d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d95906146d6565b60405180910390fd5b600a5481601554611daf9190614a3f565b1115611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de7906147b6565b60405180910390fd5b611e0181611dfc6127e5565b6127ed565b50565b611e16611e0f6127e5565b8383612d87565b5050565b60105481565b611e31611e2b6127e5565b83612987565b611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790614856565b60405180910390fd5b611e7c84848484612ef4565b50505050565b611e8a6127e5565b73ffffffffffffffffffffffffffffffffffffffff16611ea8611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590614796565b60405180910390fd5b60005b8282905081101561208157600073ffffffffffffffffffffffffffffffffffffffff16838383818110611f5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611f729190613b32565b73ffffffffffffffffffffffffffffffffffffffff161415611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc090614616565b60405180910390fd5b6000600d6000858585818110612008577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061201d9190613b32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061207990614c77565b915050611f01565b505050565b61208e6127e5565b73ffffffffffffffffffffffffffffffffffffffff166120ac611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614612102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f990614796565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b606061212a8261284b565b612169576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612160906147f6565b60405180910390fd5b6000612173612f50565b9050600081511161219357604051806020016040528060008152506121be565b8061219d84612fe2565b6040516020016121ae9291906144ae565b6040516020818303038152906040525b915050919050565b6121ce6127e5565b73ffffffffffffffffffffffffffffffffffffffff166121ec611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614612242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223990614796565b60405180910390fd5b60005b828290508110156123c557600073ffffffffffffffffffffffffffffffffffffffff168383838181106122a1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906122b69190613b32565b73ffffffffffffffffffffffffffffffffffffffff16141561230d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230490614616565b60405180910390fd5b6001600d600085858581811061234c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906123619190613b32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806123bd90614c77565b915050612245565b505050565b600c60019054906101000a900460ff1681565b6123e56127e5565b73ffffffffffffffffffffffffffffffffffffffff16612403611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614612459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245090614796565b60405180910390fd5b6000479050612466611a9f565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156124ab573d6000803e3d6000fd5b5050565b60085481565b6124bd6127e5565b73ffffffffffffffffffffffffffffffffffffffff166124db611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614612531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252890614796565b60405180910390fd5b8060088190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125d76127e5565b73ffffffffffffffffffffffffffffffffffffffff166125f5611a9f565b73ffffffffffffffffffffffffffffffffffffffff161461264b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264290614796565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b290614596565b60405180910390fd5b6126c481612cc1565b50565b6126cf6127e5565b73ffffffffffffffffffffffffffffffffffffffff166126ed611a9f565b73ffffffffffffffffffffffffffffffffffffffff1614612743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273a90614796565b60405180910390fd5b81601290805190602001906127599291906136e4565b50806013908051906020019061277092919061376e565b505050565b60095481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000601554905060005b83811015612841576001601560008282546128129190614a3f565b9250508190555061282e8382846128299190614a3f565b61318f565b808061283990614c77565b9150506127f7565b5060009050505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661292a83611502565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008261297d85846131ad565b1490509392505050565b60006129928261284b565b6129d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c8906146b6565b60405180910390fd5b60006129dc83611502565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a4b57508373ffffffffffffffffffffffffffffffffffffffff16612a3384610cd6565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a5c5750612a5b818561253b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a8582611502565b73ffffffffffffffffffffffffffffffffffffffff1614612adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad2906147d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4290614656565b60405180910390fd5b612b56838383613286565b612b616000826128b7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bb19190614b20565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c089190614a3f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ded90614676565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ee79190614539565b60405180910390a3505050565b612eff848484612a65565b612f0b8484848461328b565b612f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4190614576565b60405180910390fd5b50505050565b606060148054612f5f90614c14565b80601f0160208091040260200160405190810160405280929190818152602001828054612f8b90614c14565b8015612fd85780601f10612fad57610100808354040283529160200191612fd8565b820191906000526020600020905b815481529060010190602001808311612fbb57829003601f168201915b5050505050905090565b6060600082141561302a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061318a565b600082905060005b6000821461305c57808061304590614c77565b915050600a826130559190614a95565b9150613032565b60008167ffffffffffffffff81111561309e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130d05781602001600182028036833780820191505090505b5090505b60008514613183576001826130e99190614b20565b9150600a856130f89190614cee565b60306131049190614a3f565b60f81b818381518110613140577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561317c9190614a95565b94506130d4565b8093505050505b919050565b6131a9828260405180602001604052806000815250613422565b5050565b60008082905060005b845181101561327b5760008582815181106131fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161323b57828160405160200161321e929190614482565b604051602081830303815290604052805190602001209250613267565b808360405160200161324e929190614482565b6040516020818303038152906040528051906020012092505b50808061327390614c77565b9150506131b6565b508091505092915050565b505050565b60006132ac8473ffffffffffffffffffffffffffffffffffffffff1661347d565b15613415578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132d56127e5565b8786866040518563ffffffff1660e01b81526004016132f794939291906144ed565b602060405180830381600087803b15801561331157600080fd5b505af192505050801561334257506040513d601f19601f8201168201806040525081019061333f9190613e59565b60015b6133c5573d8060008114613372576040519150601f19603f3d011682016040523d82523d6000602084013e613377565b606091505b506000815114156133bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b490614576565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061341a565b600190505b949350505050565b61342c8383613490565b613439600084848461328b565b613478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346f90614576565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134f790614756565b60405180910390fd5b6135098161284b565b15613549576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613540906145b6565b60405180910390fd5b61355560008383613286565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135a59190614a3f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461366a90614c14565b90600052602060002090601f01602090048101928261368c57600085556136d3565b82601f106136a557805160ff19168380011785556136d3565b828001600101855582156136d3579182015b828111156136d25782518255916020019190600101906136b7565b5b5090506136e091906137bb565b5090565b82805482825590600052602060002090810192821561375d579160200282015b8281111561375c5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613704565b5b50905061376a91906137bb565b5090565b8280548282559060005260206000209081019282156137aa579160200282015b828111156137a957825182559160200191906001019061378e565b5b5090506137b791906137bb565b5090565b5b808211156137d45760008160009055506001016137bc565b5090565b60006137eb6137e684614916565b6148f1565b9050808382526020820190508285602086028201111561380a57600080fd5b60005b8581101561383a57816138208882613998565b84526020840193506020830192505060018101905061380d565b5050509392505050565b600061385761385284614942565b6148f1565b9050808382526020820190508285602086028201111561387657600080fd5b60005b858110156138a6578161388c8882613a8a565b845260208401935060208301925050600181019050613879565b5050509392505050565b60006138c36138be8461496e565b6148f1565b905080838252602082019050828560208602820111156138e257600080fd5b60005b8581101561391257816138f88882613b1d565b8452602084019350602083019250506001810190506138e5565b5050509392505050565b600061392f61392a8461499a565b6148f1565b90508281526020810184848401111561394757600080fd5b613952848285614bd2565b509392505050565b600061396d613968846149cb565b6148f1565b90508281526020810184848401111561398557600080fd5b613990848285614bd2565b509392505050565b6000813590506139a781615414565b92915050565b60008083601f8401126139bf57600080fd5b8235905067ffffffffffffffff8111156139d857600080fd5b6020830191508360208202830111156139f057600080fd5b9250929050565b600082601f830112613a0857600080fd5b8135613a188482602086016137d8565b91505092915050565b600082601f830112613a3257600080fd5b8135613a42848260208601613844565b91505092915050565b600082601f830112613a5c57600080fd5b8135613a6c8482602086016138b0565b91505092915050565b600081359050613a848161542b565b92915050565b600081359050613a9981615442565b92915050565b600081359050613aae81615459565b92915050565b600081519050613ac381615459565b92915050565b600082601f830112613ada57600080fd5b8135613aea84826020860161391c565b91505092915050565b600082601f830112613b0457600080fd5b8135613b1484826020860161395a565b91505092915050565b600081359050613b2c81615470565b92915050565b600060208284031215613b4457600080fd5b6000613b5284828501613998565b91505092915050565b60008060408385031215613b6e57600080fd5b6000613b7c85828601613998565b9250506020613b8d85828601613998565b9150509250929050565b600080600060608486031215613bac57600080fd5b6000613bba86828701613998565b9350506020613bcb86828701613998565b9250506040613bdc86828701613b1d565b9150509250925092565b60008060008060808587031215613bfc57600080fd5b6000613c0a87828801613998565b9450506020613c1b87828801613998565b9350506040613c2c87828801613b1d565b925050606085013567ffffffffffffffff811115613c4957600080fd5b613c5587828801613ac9565b91505092959194509250565b60008060408385031215613c7457600080fd5b6000613c8285828601613998565b9250506020613c9385828601613a75565b9150509250929050565b60008060408385031215613cb057600080fd5b6000613cbe85828601613998565b9250506020613ccf85828601613b1d565b9150509250929050565b60008060208385031215613cec57600080fd5b600083013567ffffffffffffffff811115613d0657600080fd5b613d12858286016139ad565b92509250509250929050565b60008060408385031215613d3157600080fd5b600083013567ffffffffffffffff811115613d4b57600080fd5b613d57858286016139f7565b925050602083013567ffffffffffffffff811115613d7457600080fd5b613d8085828601613a4b565b9150509250929050565b60008060408385031215613d9d57600080fd5b600083013567ffffffffffffffff811115613db757600080fd5b613dc385828601613a21565b9250506020613dd485828601613998565b9150509250929050565b600060208284031215613df057600080fd5b6000613dfe84828501613a75565b91505092915050565b600060208284031215613e1957600080fd5b6000613e2784828501613a8a565b91505092915050565b600060208284031215613e4257600080fd5b6000613e5084828501613a9f565b91505092915050565b600060208284031215613e6b57600080fd5b6000613e7984828501613ab4565b91505092915050565b600060208284031215613e9457600080fd5b600082013567ffffffffffffffff811115613eae57600080fd5b613eba84828501613af3565b91505092915050565b600060208284031215613ed557600080fd5b6000613ee384828501613b1d565b91505092915050565b60008060408385031215613eff57600080fd5b6000613f0d85828601613b1d565b9250506020613f1e85828601613998565b9150509250929050565b60008060408385031215613f3b57600080fd5b6000613f4985828601613b1d565b925050602083013567ffffffffffffffff811115613f6657600080fd5b613f7285828601613a21565b9150509250929050565b60008060408385031215613f8f57600080fd5b6000613f9d85828601613b1d565b9250506020613fae85828601613b1d565b9150509250929050565b613fc181614b54565b82525050565b613fd8613fd382614b54565b614cc0565b82525050565b613fe781614b66565b82525050565b613ffe613ff982614b72565b614cd2565b82525050565b600061400f826149fc565b6140198185614a12565b9350614029818560208601614be1565b61403281614ddb565b840191505092915050565b600061404882614a07565b6140528185614a23565b9350614062818560208601614be1565b61406b81614ddb565b840191505092915050565b600061408182614a07565b61408b8185614a34565b935061409b818560208601614be1565b80840191505092915050565b60006140b4603283614a23565b91506140bf82614df9565b604082019050919050565b60006140d7602683614a23565b91506140e282614e48565b604082019050919050565b60006140fa601c83614a23565b915061410582614e97565b602082019050919050565b600061411d601483614a23565b915061412882614ec0565b602082019050919050565b6000614140601a83614a23565b915061414b82614ee9565b602082019050919050565b6000614163601783614a23565b915061416e82614f12565b602082019050919050565b6000614186601783614a23565b915061419182614f3b565b602082019050919050565b60006141a9602483614a23565b91506141b482614f64565b604082019050919050565b60006141cc601983614a23565b91506141d782614fb3565b602082019050919050565b60006141ef601283614a23565b91506141fa82614fdc565b602082019050919050565b6000614212602c83614a23565b915061421d82615005565b604082019050919050565b6000614235601583614a23565b915061424082615054565b602082019050919050565b6000614258603883614a23565b91506142638261507d565b604082019050919050565b600061427b602a83614a23565b9150614286826150cc565b604082019050919050565b600061429e602983614a23565b91506142a98261511b565b604082019050919050565b60006142c1602083614a23565b91506142cc8261516a565b602082019050919050565b60006142e4602c83614a23565b91506142ef82615193565b604082019050919050565b6000614307602083614a23565b9150614312826151e2565b602082019050919050565b600061432a601b83614a23565b91506143358261520b565b602082019050919050565b600061434d602983614a23565b915061435882615234565b604082019050919050565b6000614370602f83614a23565b915061437b82615283565b604082019050919050565b6000614393602183614a23565b915061439e826152d2565b604082019050919050565b60006143b6601683614a23565b91506143c182615321565b602082019050919050565b60006143d9603183614a23565b91506143e48261534a565b604082019050919050565b60006143fc601b83614a23565b915061440782615399565b602082019050919050565b600061441f601683614a23565b915061442a826153c2565b602082019050919050565b6000614442601c83614a23565b915061444d826153eb565b602082019050919050565b61446181614bc8565b82525050565b60006144738284613fc7565b60148201915081905092915050565b600061448e8285613fed565b60208201915061449e8284613fed565b6020820191508190509392505050565b60006144ba8285614076565b91506144c68284614076565b91508190509392505050565b60006020820190506144e76000830184613fb8565b92915050565b60006080820190506145026000830187613fb8565b61450f6020830186613fb8565b61451c6040830185614458565b818103606083015261452e8184614004565b905095945050505050565b600060208201905061454e6000830184613fde565b92915050565b6000602082019050818103600083015261456e818461403d565b905092915050565b6000602082019050818103600083015261458f816140a7565b9050919050565b600060208201905081810360008301526145af816140ca565b9050919050565b600060208201905081810360008301526145cf816140ed565b9050919050565b600060208201905081810360008301526145ef81614110565b9050919050565b6000602082019050818103600083015261460f81614133565b9050919050565b6000602082019050818103600083015261462f81614156565b9050919050565b6000602082019050818103600083015261464f81614179565b9050919050565b6000602082019050818103600083015261466f8161419c565b9050919050565b6000602082019050818103600083015261468f816141bf565b9050919050565b600060208201905081810360008301526146af816141e2565b9050919050565b600060208201905081810360008301526146cf81614205565b9050919050565b600060208201905081810360008301526146ef81614228565b9050919050565b6000602082019050818103600083015261470f8161424b565b9050919050565b6000602082019050818103600083015261472f8161426e565b9050919050565b6000602082019050818103600083015261474f81614291565b9050919050565b6000602082019050818103600083015261476f816142b4565b9050919050565b6000602082019050818103600083015261478f816142d7565b9050919050565b600060208201905081810360008301526147af816142fa565b9050919050565b600060208201905081810360008301526147cf8161431d565b9050919050565b600060208201905081810360008301526147ef81614340565b9050919050565b6000602082019050818103600083015261480f81614363565b9050919050565b6000602082019050818103600083015261482f81614386565b9050919050565b6000602082019050818103600083015261484f816143a9565b9050919050565b6000602082019050818103600083015261486f816143cc565b9050919050565b6000602082019050818103600083015261488f816143ef565b9050919050565b600060208201905081810360008301526148af81614412565b9050919050565b600060208201905081810360008301526148cf81614435565b9050919050565b60006020820190506148eb6000830184614458565b92915050565b60006148fb61490c565b90506149078282614c46565b919050565b6000604051905090565b600067ffffffffffffffff82111561493157614930614dac565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561495d5761495c614dac565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561498957614988614dac565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156149b5576149b4614dac565b5b6149be82614ddb565b9050602081019050919050565b600067ffffffffffffffff8211156149e6576149e5614dac565b5b6149ef82614ddb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a4a82614bc8565b9150614a5583614bc8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a8a57614a89614d1f565b5b828201905092915050565b6000614aa082614bc8565b9150614aab83614bc8565b925082614abb57614aba614d4e565b5b828204905092915050565b6000614ad182614bc8565b9150614adc83614bc8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b1557614b14614d1f565b5b828202905092915050565b6000614b2b82614bc8565b9150614b3683614bc8565b925082821015614b4957614b48614d1f565b5b828203905092915050565b6000614b5f82614ba8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614bff578082015181840152602081019050614be4565b83811115614c0e576000848401525b50505050565b60006002820490506001821680614c2c57607f821691505b60208210811415614c4057614c3f614d7d565b5b50919050565b614c4f82614ddb565b810181811067ffffffffffffffff82111715614c6e57614c6d614dac565b5b80604052505050565b6000614c8282614bc8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cb557614cb4614d1f565b5b600182019050919050565b6000614ccb82614cdc565b9050919050565b6000819050919050565b6000614ce782614dec565b9050919050565b6000614cf982614bc8565b9150614d0483614bc8565b925082614d1457614d13614d4e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5072652d53616c652069732066696e6973686564000000000000000000000000600082015250565b7f5072652d53616c6520646964206e6f7420737461727420796574000000000000600082015250565b7f416464726573732063616e206e6f74206265206e756c6c000000000000000000600082015250565b7f596f7520617265206e6f74206f6e20746865206c697374000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4554482076616c7565206e6f7420636f72726563740000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f50757263686173652065786365656473206d617820737570706c790000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520646964206e6f742073746172742079657400000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f752072657175657374656420746f6f206d616e7920417065730000000000600082015250565b7f5072652053616c65206973206e6f742061637469766500000000000000000000600082015250565b7f50757263686173652065786365656473206d617820616c6c6f77656400000000600082015250565b61541d81614b54565b811461542857600080fd5b50565b61543481614b66565b811461543f57600080fd5b50565b61544b81614b72565b811461545657600080fd5b50565b61546281614b7c565b811461546d57600080fd5b50565b61547981614bc8565b811461548457600080fd5b5056fea26469706673582212205257e1e9378d387e2003e78af5b7927f48e6037c695604e8cd0e1ae4617e25c464736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000240a85b023520fd3992af77c4cd66101d00d9fe18d6723073e7d04d0293d30e0246000000000000000000000000000000000000000000000000000000000000001b68747470733a2f2f6170692e656172636c75626e66742e636f6d2f0000000000000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000008273fbad1db439fd8e8f778f3c6fd83bfd1803f100000000000000000000000028ef7e4813bf75393ef9584265ce37188d6eb15e0000000000000000000000005d41e9e5798d662a6de0b098c58aad29aa9223b60000000000000000000000002f5528be1247afdbff040132829db91f933c50c7000000000000000000000000c9de66ec44511fde037df7f489a6f51fc356896e0000000000000000000000008d2783c85bcd59b478e086b34a46d5a87376acbf000000000000000000000000318f35663a92df1eba4543cebbf360c5d26cd77b0000000000000000000000002c4da7cce9225d2e34ab5f3ede5f7cd3f666428f0000000000000000000000000e60dd34a745d93f5dd25f489d4c3981f7851fee0000000000000000000000002f12306e2d0f2b07db038ad2c7c1f67216fad2fa000000000000000000000000dbee2b963736e6a470664c32ce52b9f6cf0066d1000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000010900000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000780000000000000000000000000000000000000000000000000000000000000032

-----Decoded View---------------
Arg [0] : uriBASE (string): https://api.earclubnft.com/
Arg [1] : team (address[]): 0x8273fbaD1db439Fd8e8F778F3c6fD83bfd1803F1,0x28ef7e4813BF75393ef9584265cE37188d6Eb15e,0x5d41E9e5798d662a6de0b098c58AAD29aa9223b6,0x2f5528be1247afDbff040132829DB91F933c50c7,0xC9de66eC44511fdE037DF7F489a6F51fC356896E,0x8D2783c85bCD59B478e086B34a46d5A87376aCbf,0x318F35663A92Df1EBA4543cebBF360C5D26cD77B,0x2C4da7cCE9225D2e34Ab5f3eDE5f7cd3F666428f,0x0e60Dd34A745D93f5dd25F489d4c3981f7851feE,0x2F12306e2d0f2b07DB038aD2c7C1f67216FaD2fA,0xdBEE2B963736E6A470664C32Ce52B9f6CF0066D1
Arg [2] : team_shares (uint256[]): 100,50,20,25,30,40,100,265,200,120,50
Arg [3] : root (bytes32): 0xa85b023520fd3992af77c4cd66101d00d9fe18d6723073e7d04d0293d30e0246

-----Encoded View---------------
30 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [3] : a85b023520fd3992af77c4cd66101d00d9fe18d6723073e7d04d0293d30e0246
Arg [4] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [5] : 68747470733a2f2f6170692e656172636c75626e66742e636f6d2f0000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [7] : 0000000000000000000000008273fbad1db439fd8e8f778f3c6fd83bfd1803f1
Arg [8] : 00000000000000000000000028ef7e4813bf75393ef9584265ce37188d6eb15e
Arg [9] : 0000000000000000000000005d41e9e5798d662a6de0b098c58aad29aa9223b6
Arg [10] : 0000000000000000000000002f5528be1247afdbff040132829db91f933c50c7
Arg [11] : 000000000000000000000000c9de66ec44511fde037df7f489a6f51fc356896e
Arg [12] : 0000000000000000000000008d2783c85bcd59b478e086b34a46d5a87376acbf
Arg [13] : 000000000000000000000000318f35663a92df1eba4543cebbf360c5d26cd77b
Arg [14] : 0000000000000000000000002c4da7cce9225d2e34ab5f3ede5f7cd3f666428f
Arg [15] : 0000000000000000000000000e60dd34a745d93f5dd25f489d4c3981f7851fee
Arg [16] : 0000000000000000000000002f12306e2d0f2b07db038ad2c7c1f67216fad2fa
Arg [17] : 000000000000000000000000dbee2b963736e6a470664c32ce52b9f6cf0066d1
Arg [18] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [23] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [25] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000109
Arg [27] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [28] : 0000000000000000000000000000000000000000000000000000000000000078
Arg [29] : 0000000000000000000000000000000000000000000000000000000000000032


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.