ETH Price: $2,627.95 (-0.30%)
Gas: 2 Gwei

Token

ThirdEyeSocietyV2 (TEASv2)
 

Overview

Max Total Supply

2,573 TEASv2

Holders

994

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TEASv2
0x066FB205847FAAEC56BE076375948dfdA02407aa
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TEASv2

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "./ERC721A.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";


contract TEASv2 is ERC721A, Ownable, ReentrancyGuard, Pausable {
    using Strings for uint256;
    string public baseUri = "";
    uint256 public supply = 20000;
    string public extension = ".json";  

    bool public whitelistLive;
    address payable public payoutAddress;
    bytes32 public whitelistMerkleRoot;


    struct Config {
        uint256 mintPrice;
        uint256 wlPrice;
        uint256 whitelistMint;
        uint256 maxMint;
        uint256 maxWhitelist;
        uint256 maxWhitelistPerTx;
        uint256 maxMintPerTx;
    }

    struct LimitPerWallet {
        uint256 mint;
        uint256 whitelist;
    }

    Config public config;
    
    mapping(address => LimitPerWallet) limitPerWallet;
    mapping(address => bool) admins;

    event WhitelistLive(bool live);


    constructor() ERC721A("ThirdEyeSocietyV2", "TEASv2") { 
        _pause(); 
        config.mintPrice = 0.1 ether;
        config.wlPrice = 0.06 ether;
        config.maxMint = 100;
        config.maxWhitelist = 10;
        config.maxWhitelistPerTx = 10;
        config.maxMintPerTx = 10;
    }

        /**
     * @dev validates merkleProof
     */
    modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address does not exist in list"
        );
        _;
    }


    function whitelistMint(uint256 count, bytes32[] calldata proof) external payable isValidMerkleProof(proof, whitelistMerkleRoot) nonReentrant notBots {
        require(whitelistLive, "Not live");
        require(count <= config.maxWhitelistPerTx, "Exceeds max");
        require(limitPerWallet[msg.sender].whitelist + count <= config.maxWhitelist, "Exceeds max");
        require(msg.value >= config.wlPrice * count, "invalid price");
        limitPerWallet[msg.sender].whitelist += count;
        _callMint(count, msg.sender);        
    }

    function mint(uint256 count) external payable nonReentrant whenNotPaused notBots {       
        require(count <= config.maxMintPerTx, "Exceeds max");
        require(limitPerWallet[msg.sender].mint + count <= config.maxMint, "Exceeds max");         
        require(msg.value >= config.mintPrice * count, "invalid price");
        limitPerWallet[msg.sender].mint += count;
        _callMint(count, msg.sender);        
    }

    modifier notBots {        
        require(_msgSender() == tx.origin, "no bots");
        _;
    }

    function adminMint(uint256 count, address to) external adminOrOwner {
        _callMint(count, to);
    }

    function _callMint(uint256 count, address to) internal {        
        uint256 total = totalSupply();
        require(count > 0, "Count is 0");
        require(total + count <= supply, "Sold out");
        _safeMint(to, count);
    }

    function burn(uint256 tokenId) external {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        require(isApprovedOrOwner, "Not approved");
        _burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = baseUri;
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        extension
                    )
                )
                : "";
    }

    function setExtension(string memory _extension) external adminOrOwner {
        extension = _extension;
    }

    function setUri(string memory _uri) external adminOrOwner {
        baseUri = _uri;
    }

    function setPaused(bool _paused) external adminOrOwner {
        if(_paused) {
            _pause();
        } else {
            _unpause();
        }
    }

    function toggleWhitelistLive() external adminOrOwner {
        bool isLive = !whitelistLive;
        whitelistLive = isLive;
        emit WhitelistLive(isLive);
    }




    function setWhitelistMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        whitelistMerkleRoot = merkleRoot;
    }


    function setSupply(uint256 _supply) external adminOrOwner {
        supply = _supply;
    }



    function setConfig(Config memory _config) external adminOrOwner {
        config = _config;
    }

    function setpayoutAddress(address payable _payoutAddress) external adminOrOwner {
        payoutAddress = _payoutAddress;
    }
     
    function withdraw() external adminOrOwner {
        (bool success, ) = payoutAddress.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function addAdmin(address _admin) external adminOrOwner {
        admins[_admin] = true;
    }

    function removeAdmin(address _admin) external adminOrOwner {
        delete admins[_admin];
    }

    modifier adminOrOwner() {
        require(msg.sender == owner() || admins[msg.sender], "Unauthorized");
        _;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 5 of 15 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 6 of 15 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity 0.8.10;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';


error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(updatedIndex);
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 15 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 9 of 15 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 13 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 14 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"live","type":"bool"}],"name":"WhitelistLive","type":"event"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"adminMint","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":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"config","outputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"wlPrice","type":"uint256"},{"internalType":"uint256","name":"whitelistMint","type":"uint256"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"maxWhitelist","type":"uint256"},{"internalType":"uint256","name":"maxWhitelistPerTx","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"extension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payoutAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"wlPrice","type":"uint256"},{"internalType":"uint256","name":"whitelistMint","type":"uint256"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"maxWhitelist","type":"uint256"},{"internalType":"uint256","name":"maxWhitelistPerTx","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"internalType":"struct TEASv2.Config","name":"_config","type":"tuple"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_extension","type":"string"}],"name":"setExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_payoutAddress","type":"address"}],"name":"setpayoutAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","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":[],"name":"toggleWhitelistLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b92919062000373565b50614e20600b556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200007f92919062000373565b503480156200008d57600080fd5b506040518060400160405280601181526020017f5468697264457965536f636965747956320000000000000000000000000000008152506040518060400160405280600681526020017f544541537632000000000000000000000000000000000000000000000000000081525081600190805190602001906200011292919062000373565b5080600290805190602001906200012b92919062000373565b5050506200014e62000142620001d660201b60201c565b620001de60201b60201c565b60016008819055506000600960006101000a81548160ff02191690831515021790555062000181620002a460201b60201c565b67016345785d8a0000600f6000018190555066d529ae9e860000600f600101819055506064600f60030181905550600a600f60040181905550600a600f60050181905550600a600f600601819055506200056d565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002b46200035c60201b60201c565b15620002f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ee9062000484565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25862000343620001d660201b60201c565b604051620003529190620004eb565b60405180910390a1565b6000600960009054906101000a900460ff16905090565b828054620003819062000537565b90600052602060002090601f016020900481019282620003a55760008555620003f1565b82601f10620003c057805160ff1916838001178555620003f1565b82800160010185558215620003f1579182015b82811115620003f0578251825591602001919060010190620003d3565b5b50905062000400919062000404565b5090565b5b808211156200041f57600081600090555060010162000405565b5090565b600082825260208201905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006200046c60108362000423565b9150620004798262000434565b602082019050919050565b600060208201905081810360008301526200049f816200045d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004d382620004a6565b9050919050565b620004e581620004c6565b82525050565b6000602082019050620005026000830184620004da565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200055057607f821691505b6020821081141562000567576200056662000508565b5b50919050565b615bd6806200057d6000396000f3fe6080604052600436106102515760003560e01c80636352211e116101395780639abc8320116100b6578063b88d4fde1161007a578063b88d4fde1461086d578063bd32fb6614610896578063c87b56dd146108bf578063d2cab056146108fc578063e985e9c514610918578063f2fde38b1461095557610251565b80639abc8320146107a95780639b642de1146107d4578063a0712d68146107fd578063a22cb46514610819578063aa98e0c61461084257610251565b806379502c55116100fd57806379502c55146106ce5780637e2285aa146106ff5780638da5cb5b1461072857806395d89b41146107535780639979a1941461077e57610251565b80636352211e146105eb5780636caffb8114610628578063704802751461065157806370a082311461067a578063715018a6146106b757610251565b80632d5537b0116101d257806342966c681161019657806342966c68146104ef5780634f6ccce7146105185780635418c44e14610555578063568c32a31461057e5780635b8d02d7146105955780635c975abb146105c057610251565b80632d5537b01461041e5780632f745c59146104495780633b4c4b25146104865780633ccfd60b146104af57806342842e0e146104c657610251565b80630dc28efe116102195780630dc28efe1461034f57806316c38b3c146103785780631785f53c146103a157806318160ddd146103ca57806323b872dd146103f557610251565b806301ffc9a714610256578063047fc9aa1461029357806306fdde03146102be578063081812fc146102e9578063095ea7b314610326575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190614558565b61097e565b60405161028a91906145a0565b60405180910390f35b34801561029f57600080fd5b506102a8610ac8565b6040516102b591906145d4565b60405180910390f35b3480156102ca57600080fd5b506102d3610ace565b6040516102e09190614688565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b91906146d6565b610b60565b60405161031d9190614744565b60405180910390f35b34801561033257600080fd5b5061034d6004803603810190610348919061478b565b610bdc565b005b34801561035b57600080fd5b50610376600480360381019061037191906147cb565b610ce7565b005b34801561038457600080fd5b5061039f600480360381019061039a9190614837565b610dbe565b005b3480156103ad57600080fd5b506103c860048036038101906103c39190614864565b610ea6565b005b3480156103d657600080fd5b506103df610fc1565b6040516103ec91906145d4565b60405180910390f35b34801561040157600080fd5b5061041c60048036038101906104179190614891565b611016565b005b34801561042a57600080fd5b50610433611026565b6040516104409190614688565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b919061478b565b6110b4565b60405161047d91906145d4565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a891906146d6565b6112bb565b005b3480156104bb57600080fd5b506104c461138e565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190614891565b611528565b005b3480156104fb57600080fd5b50610516600480360381019061051191906146d6565b611548565b005b34801561052457600080fd5b5061053f600480360381019061053a91906146d6565b611642565b60405161054c91906145d4565b60405180910390f35b34801561056157600080fd5b5061057c60048036038101906105779190614922565b6117b3565b005b34801561058a57600080fd5b506105936118c0565b005b3480156105a157600080fd5b506105aa6119f2565b6040516105b7919061495e565b60405180910390f35b3480156105cc57600080fd5b506105d5611a18565b6040516105e291906145a0565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d91906146d6565b611a2f565b60405161061f9190614744565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190614aad565b611a45565b005b34801561065d57600080fd5b5061067860048036038101906106739190614864565b611b5d565b005b34801561068657600080fd5b506106a1600480360381019061069c9190614864565b611c81565b6040516106ae91906145d4565b60405180910390f35b3480156106c357600080fd5b506106cc611d51565b005b3480156106da57600080fd5b506106e3611dd9565b6040516106f69796959493929190614ada565b60405180910390f35b34801561070b57600080fd5b5061072660048036038101906107219190614c03565b611e09565b005b34801561073457600080fd5b5061073d611eec565b60405161074a9190614744565b60405180910390f35b34801561075f57600080fd5b50610768611f16565b6040516107759190614688565b60405180910390f35b34801561078a57600080fd5b50610793611fa8565b6040516107a091906145a0565b60405180910390f35b3480156107b557600080fd5b506107be611fbb565b6040516107cb9190614688565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f69190614c03565b612049565b005b610817600480360381019061081291906146d6565b61212c565b005b34801561082557600080fd5b50610840600480360381019061083b9190614c4c565b6123d5565b005b34801561084e57600080fd5b5061085761254d565b6040516108649190614ca5565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614d61565b612553565b005b3480156108a257600080fd5b506108bd60048036038101906108b89190614e10565b6125a6565b005b3480156108cb57600080fd5b506108e660048036038101906108e191906146d6565b61262c565b6040516108f39190614688565b60405180910390f35b61091660048036038101906109119190614e9d565b612759565b005b34801561092457600080fd5b5061093f600480360381019061093a9190614efd565b612ac4565b60405161094c91906145a0565b60405180910390f35b34801561096157600080fd5b5061097c60048036038101906109779190614864565b612b58565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac15750610ac082612c50565b5b9050919050565b600b5481565b606060018054610add90614f6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0990614f6c565b8015610b565780601f10610b2b57610100808354040283529160200191610b56565b820191906000526020600020905b815481529060010190602001808311610b3957829003601f168201915b5050505050905090565b6000610b6b82612cba565b610ba1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be782611a2f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c4f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c6e612d22565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ca05750610c9e81610c99612d22565b612ac4565b155b15610cd7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce2838383612d2a565b505050565b610cef611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610d715750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790614fea565b60405180910390fd5b610dba8282612ddc565b5050565b610dc6611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e485750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90614fea565b60405180910390fd5b8015610e9a57610e95612e8a565b610ea3565b610ea2612f2d565b5b50565b610eae611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610f305750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6690614fea565b60405180910390fd5b601760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905550565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b611021838383612fcf565b505050565b600c805461103390614f6c565b80601f016020809104026020016040519081016040528092919081815260200182805461105f90614f6c565b80156110ac5780601f10611081576101008083540402835291602001916110ac565b820191906000526020600020905b81548152906001019060200180831161108f57829003601f168201915b505050505081565b60006110bf83611c81565b82106110f7576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b838110156112af576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561120e57506112a2565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461124e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112a057868414156112975781955050505050506112b5565b83806001019450505b505b8080600101915050611131565b50600080fd5b92915050565b6112c3611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806113455750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90614fea565b60405180910390fd5b80600b8190555050565b611396611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806114185750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e90614fea565b60405180910390fd5b6000600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161149f9061503b565b60006040518083038185875af1925050503d80600081146114dc576040519150601f19603f3d011682016040523d82523d6000602084013e6114e1565b606091505b5050905080611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c9061509c565b60405180910390fd5b50565b61154383838360405180602001604052806000815250612553565b505050565b6000611553826134ec565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661157a612d22565b73ffffffffffffffffffffffffffffffffffffffff1614806115ad57506115ac82600001516115a7612d22565b612ac4565b5b806115f257506115bb612d22565b73ffffffffffffffffffffffffffffffffffffffff166115da84610b60565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162b90615108565b60405180910390fd5b61163d83613794565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b8281101561177b576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161176d578583141561176457819450505050506117ae565b82806001019350505b50808060010191505061167a565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6117bb611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061183d5750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390614fea565b60405180910390fd5b80600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118c8611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061194a5750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090614fea565b60405180910390fd5b6000600d60009054906101000a900460ff1615905080600d60006101000a81548160ff0219169083151502179055507f033fcfd9cc0d1245d0975739b3bd6fa38727f20cfda54f4c8f817e2825ee7b8c816040516119e791906145a0565b60405180910390a150565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600960009054906101000a900460ff16905090565b6000611a3a826134ec565b600001519050919050565b611a4d611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611acf5750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590614fea565b60405180910390fd5b80600f600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015590505050565b611b65611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611be75750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d90614fea565b60405180910390fd5b6001601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ce9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611d59612d22565b73ffffffffffffffffffffffffffffffffffffffff16611d77611eec565b73ffffffffffffffffffffffffffffffffffffffff1614611dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc490615174565b60405180910390fd5b611dd76000613bb1565b565b600f8060000154908060010154908060020154908060030154908060040154908060050154908060060154905087565b611e11611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611e935750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec990614fea565b60405180910390fd5b80600c9080519060200190611ee8929190614406565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611f2590614f6c565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5190614f6c565b8015611f9e5780601f10611f7357610100808354040283529160200191611f9e565b820191906000526020600020905b815481529060010190602001808311611f8157829003601f168201915b5050505050905090565b600d60009054906101000a900460ff1681565b600a8054611fc890614f6c565b80601f0160208091040260200160405190810160405280929190818152602001828054611ff490614f6c565b80156120415780601f1061201657610100808354040283529160200191612041565b820191906000526020600020905b81548152906001019060200180831161202457829003601f168201915b505050505081565b612051611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806120d35750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210990614fea565b60405180910390fd5b80600a9080519060200190612128929190614406565b5050565b60026008541415612172576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612169906151e0565b60405180910390fd5b6002600881905550612182611a18565b156121c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b99061524c565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff166121e1612d22565b73ffffffffffffffffffffffffffffffffffffffff1614612237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222e906152b8565b60405180910390fd5b600f6006015481111561227f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227690615324565b60405180910390fd5b600f6003015481601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001546122d39190615373565b1115612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90615324565b60405180910390fd5b80600f6000015461232591906153c9565b341015612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e9061546f565b60405180910390fd5b80601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546123b99190615373565b925050819055506123ca8133612ddc565b600160088190555050565b6123dd612d22565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612442576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806006600061244f612d22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166124fc612d22565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161254191906145a0565b60405180910390a35050565b600e5481565b61255e848484612fcf565b61256a84848484613c77565b6125a0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6125ae612d22565b73ffffffffffffffffffffffffffffffffffffffff166125cc611eec565b73ffffffffffffffffffffffffffffffffffffffff1614612622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261990615174565b60405180910390fd5b80600e8190555050565b606061263782612cba565b612676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266d90615501565b60405180910390fd5b6000600a805461268590614f6c565b80601f01602080910402602001604051908101604052809291908181526020018280546126b190614f6c565b80156126fe5780601f106126d3576101008083540402835291602001916126fe565b820191906000526020600020905b8154815290600101906020018083116126e157829003601f168201915b5050505050905060008151116127235760405180602001604052806000815250612751565b8061272d84613df6565b600c604051602001612741939291906155f1565b6040516020818303038152906040525b915050919050565b8181600e546127d0838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505082336040516020016127b5919061566a565b60405160208183030381529060405280519060200120613f57565b61280f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612806906156d1565b60405180910390fd5b60026008541415612855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284c906151e0565b60405180910390fd5b60026008819055503273ffffffffffffffffffffffffffffffffffffffff1661287c612d22565b73ffffffffffffffffffffffffffffffffffffffff16146128d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c9906152b8565b60405180910390fd5b600d60009054906101000a900460ff16612921576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129189061573d565b60405180910390fd5b600f60050154861115612969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296090615324565b60405180910390fd5b600f6004015486601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546129bd9190615373565b11156129fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f590615324565b60405180910390fd5b85600f60010154612a0f91906153c9565b341015612a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a489061546f565b60405180910390fd5b85601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001016000828254612aa39190615373565b92505081905550612ab48633612ddc565b6001600881905550505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b60612d22565b73ffffffffffffffffffffffffffffffffffffffff16612b7e611eec565b73ffffffffffffffffffffffffffffffffffffffff1614612bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcb90615174565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3b906157cf565b60405180910390fd5b612c4d81613bb1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612d1b575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612de6610fc1565b905060008311612e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e229061583b565b60405180910390fd5b600b548382612e3a9190615373565b1115612e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e72906158a7565b60405180910390fd5b612e858284613f6e565b505050565b612e92611a18565b15612ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec99061524c565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612f16612d22565b604051612f239190614744565b60405180910390a1565b612f35611a18565b612f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6b90615913565b60405180910390fd5b6000600960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612fb8612d22565b604051612fc59190614744565b60405180910390a1565b6000612fda826134ec565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16613001612d22565b73ffffffffffffffffffffffffffffffffffffffff1614806130345750613033826000015161302e612d22565b612ac4565b5b806130795750613042612d22565b73ffffffffffffffffffffffffffffffffffffffff1661306184610b60565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806130b2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461311b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613182576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61318f8585856001613f8c565b61319f6000848460000151612d2a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561347c5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561347b5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134e58585856001613f92565b5050505050565b6134f461448c565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561375d576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161375b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461363f57809250505061378f565b5b60011561375a57818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461375557809250505061378f565b613640565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600061379f826134ec565b90506137b381600001516000846001613f8c565b6137c36000838360000151612d2a565b600160046000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160036000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415613adb5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015613ada5781600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b4e81600001516000846001613f92565b6000601081819054906101000a90046fffffffffffffffffffffffffffffffff168092919060010191906101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000613c988473ffffffffffffffffffffffffffffffffffffffff16613f98565b15613de9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613cc1612d22565b8786866040518563ffffffff1660e01b8152600401613ce39493929190615988565b6020604051808303816000875af1925050508015613d1f57506040513d601f19601f82011682018060405250810190613d1c91906159e9565b60015b613d99573d8060008114613d4f576040519150601f19603f3d011682016040523d82523d6000602084013e613d54565b606091505b50600081511415613d91576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613dee565b600190505b949350505050565b60606000821415613e3e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613f52565b600082905060005b60008214613e70578080613e5990615a16565b915050600a82613e699190615a8e565b9150613e46565b60008167ffffffffffffffff811115613e8c57613e8b61497e565b5b6040519080825280601f01601f191660200182016040528015613ebe5781602001600182028036833780820191505090505b5090505b60008514613f4b57600182613ed79190615abf565b9150600a85613ee69190615af3565b6030613ef29190615373565b60f81b818381518110613f0857613f07615b24565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613f449190615a8e565b9450613ec2565b8093505050505b919050565b600082613f648584613fab565b1490509392505050565b613f8882826040518060200160405280600081525061405e565b5050565b50505050565b50505050565b600080823b905060008111915050919050565b60008082905060005b8451811015614053576000858281518110613fd257613fd1615b24565b5b60200260200101519050808311614013578281604051602001613ff6929190615b74565b60405160208183030381529060405280519060200120925061403f565b8083604051602001614026929190615b74565b6040516020818303038152906040528051906020012092505b50808061404b90615a16565b915050613fb4565b508091505092915050565b61406b8383836001614070565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561410b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415614146576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6141536000868387613f8c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156143b857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561436c575061436a6000888488613c77565b155b156143a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506142f1565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506143ff6000868387613f92565b5050505050565b82805461441290614f6c565b90600052602060002090601f016020900481019282614434576000855561447b565b82601f1061444d57805160ff191683800117855561447b565b8280016001018555821561447b579182015b8281111561447a57825182559160200191906001019061445f565b5b50905061448891906144cf565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156144e85760008160009055506001016144d0565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61453581614500565b811461454057600080fd5b50565b6000813590506145528161452c565b92915050565b60006020828403121561456e5761456d6144f6565b5b600061457c84828501614543565b91505092915050565b60008115159050919050565b61459a81614585565b82525050565b60006020820190506145b56000830184614591565b92915050565b6000819050919050565b6145ce816145bb565b82525050565b60006020820190506145e960008301846145c5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561462957808201518184015260208101905061460e565b83811115614638576000848401525b50505050565b6000601f19601f8301169050919050565b600061465a826145ef565b61466481856145fa565b935061467481856020860161460b565b61467d8161463e565b840191505092915050565b600060208201905081810360008301526146a2818461464f565b905092915050565b6146b3816145bb565b81146146be57600080fd5b50565b6000813590506146d0816146aa565b92915050565b6000602082840312156146ec576146eb6144f6565b5b60006146fa848285016146c1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061472e82614703565b9050919050565b61473e81614723565b82525050565b60006020820190506147596000830184614735565b92915050565b61476881614723565b811461477357600080fd5b50565b6000813590506147858161475f565b92915050565b600080604083850312156147a2576147a16144f6565b5b60006147b085828601614776565b92505060206147c1858286016146c1565b9150509250929050565b600080604083850312156147e2576147e16144f6565b5b60006147f0858286016146c1565b925050602061480185828601614776565b9150509250929050565b61481481614585565b811461481f57600080fd5b50565b6000813590506148318161480b565b92915050565b60006020828403121561484d5761484c6144f6565b5b600061485b84828501614822565b91505092915050565b60006020828403121561487a576148796144f6565b5b600061488884828501614776565b91505092915050565b6000806000606084860312156148aa576148a96144f6565b5b60006148b886828701614776565b93505060206148c986828701614776565b92505060406148da868287016146c1565b9150509250925092565b60006148ef82614703565b9050919050565b6148ff816148e4565b811461490a57600080fd5b50565b60008135905061491c816148f6565b92915050565b600060208284031215614938576149376144f6565b5b60006149468482850161490d565b91505092915050565b614958816148e4565b82525050565b6000602082019050614973600083018461494f565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6149b68261463e565b810181811067ffffffffffffffff821117156149d5576149d461497e565b5b80604052505050565b60006149e86144ec565b90506149f482826149ad565b919050565b600060e08284031215614a0f57614a0e614979565b5b614a1960e06149de565b90506000614a29848285016146c1565b6000830152506020614a3d848285016146c1565b6020830152506040614a51848285016146c1565b6040830152506060614a65848285016146c1565b6060830152506080614a79848285016146c1565b60808301525060a0614a8d848285016146c1565b60a08301525060c0614aa1848285016146c1565b60c08301525092915050565b600060e08284031215614ac357614ac26144f6565b5b6000614ad1848285016149f9565b91505092915050565b600060e082019050614aef600083018a6145c5565b614afc60208301896145c5565b614b0960408301886145c5565b614b1660608301876145c5565b614b2360808301866145c5565b614b3060a08301856145c5565b614b3d60c08301846145c5565b98975050505050505050565b600080fd5b600080fd5b600067ffffffffffffffff821115614b6e57614b6d61497e565b5b614b778261463e565b9050602081019050919050565b82818337600083830152505050565b6000614ba6614ba184614b53565b6149de565b905082815260208101848484011115614bc257614bc1614b4e565b5b614bcd848285614b84565b509392505050565b600082601f830112614bea57614be9614b49565b5b8135614bfa848260208601614b93565b91505092915050565b600060208284031215614c1957614c186144f6565b5b600082013567ffffffffffffffff811115614c3757614c366144fb565b5b614c4384828501614bd5565b91505092915050565b60008060408385031215614c6357614c626144f6565b5b6000614c7185828601614776565b9250506020614c8285828601614822565b9150509250929050565b6000819050919050565b614c9f81614c8c565b82525050565b6000602082019050614cba6000830184614c96565b92915050565b600067ffffffffffffffff821115614cdb57614cda61497e565b5b614ce48261463e565b9050602081019050919050565b6000614d04614cff84614cc0565b6149de565b905082815260208101848484011115614d2057614d1f614b4e565b5b614d2b848285614b84565b509392505050565b600082601f830112614d4857614d47614b49565b5b8135614d58848260208601614cf1565b91505092915050565b60008060008060808587031215614d7b57614d7a6144f6565b5b6000614d8987828801614776565b9450506020614d9a87828801614776565b9350506040614dab878288016146c1565b925050606085013567ffffffffffffffff811115614dcc57614dcb6144fb565b5b614dd887828801614d33565b91505092959194509250565b614ded81614c8c565b8114614df857600080fd5b50565b600081359050614e0a81614de4565b92915050565b600060208284031215614e2657614e256144f6565b5b6000614e3484828501614dfb565b91505092915050565b600080fd5b600080fd5b60008083601f840112614e5d57614e5c614b49565b5b8235905067ffffffffffffffff811115614e7a57614e79614e3d565b5b602083019150836020820283011115614e9657614e95614e42565b5b9250929050565b600080600060408486031215614eb657614eb56144f6565b5b6000614ec4868287016146c1565b935050602084013567ffffffffffffffff811115614ee557614ee46144fb565b5b614ef186828701614e47565b92509250509250925092565b60008060408385031215614f1457614f136144f6565b5b6000614f2285828601614776565b9250506020614f3385828601614776565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614f8457607f821691505b60208210811415614f9857614f97614f3d565b5b50919050565b7f556e617574686f72697a65640000000000000000000000000000000000000000600082015250565b6000614fd4600c836145fa565b9150614fdf82614f9e565b602082019050919050565b6000602082019050818103600083015261500381614fc7565b9050919050565b600081905092915050565b50565b600061502560008361500a565b915061503082615015565b600082019050919050565b600061504682615018565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006150866010836145fa565b915061509182615050565b602082019050919050565b600060208201905081810360008301526150b581615079565b9050919050565b7f4e6f7420617070726f7665640000000000000000000000000000000000000000600082015250565b60006150f2600c836145fa565b91506150fd826150bc565b602082019050919050565b60006020820190508181036000830152615121816150e5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061515e6020836145fa565b915061516982615128565b602082019050919050565b6000602082019050818103600083015261518d81615151565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006151ca601f836145fa565b91506151d582615194565b602082019050919050565b600060208201905081810360008301526151f9816151bd565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006152366010836145fa565b915061524182615200565b602082019050919050565b6000602082019050818103600083015261526581615229565b9050919050565b7f6e6f20626f747300000000000000000000000000000000000000000000000000600082015250565b60006152a26007836145fa565b91506152ad8261526c565b602082019050919050565b600060208201905081810360008301526152d181615295565b9050919050565b7f45786365656473206d6178000000000000000000000000000000000000000000600082015250565b600061530e600b836145fa565b9150615319826152d8565b602082019050919050565b6000602082019050818103600083015261533d81615301565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061537e826145bb565b9150615389836145bb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156153be576153bd615344565b5b828201905092915050565b60006153d4826145bb565b91506153df836145bb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561541857615417615344565b5b828202905092915050565b7f696e76616c696420707269636500000000000000000000000000000000000000600082015250565b6000615459600d836145fa565b915061546482615423565b602082019050919050565b600060208201905081810360008301526154888161544c565b9050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006154eb6021836145fa565b91506154f68261548f565b604082019050919050565b6000602082019050818103600083015261551a816154de565b9050919050565b600081905092915050565b6000615537826145ef565b6155418185615521565b935061555181856020860161460b565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461557f81614f6c565b6155898186615521565b945060018216600081146155a457600181146155b5576155e8565b60ff198316865281860193506155e8565b6155be8561555d565b60005b838110156155e0578154818901526001820191506020810190506155c1565b838801955050505b50505092915050565b60006155fd828661552c565b9150615609828561552c565b91506156158284615572565b9150819050949350505050565b60008160601b9050919050565b600061563a82615622565b9050919050565b600061564c8261562f565b9050919050565b61566461565f82614723565b615641565b82525050565b60006156768284615653565b60148201915081905092915050565b7f4164647265737320646f6573206e6f7420657869737420696e206c6973740000600082015250565b60006156bb601e836145fa565b91506156c682615685565b602082019050919050565b600060208201905081810360008301526156ea816156ae565b9050919050565b7f4e6f74206c697665000000000000000000000000000000000000000000000000600082015250565b60006157276008836145fa565b9150615732826156f1565b602082019050919050565b600060208201905081810360008301526157568161571a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006157b96026836145fa565b91506157c48261575d565b604082019050919050565b600060208201905081810360008301526157e8816157ac565b9050919050565b7f436f756e74206973203000000000000000000000000000000000000000000000600082015250565b6000615825600a836145fa565b9150615830826157ef565b602082019050919050565b6000602082019050818103600083015261585481615818565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b60006158916008836145fa565b915061589c8261585b565b602082019050919050565b600060208201905081810360008301526158c081615884565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006158fd6014836145fa565b9150615908826158c7565b602082019050919050565b6000602082019050818103600083015261592c816158f0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061595a82615933565b615964818561593e565b935061597481856020860161460b565b61597d8161463e565b840191505092915050565b600060808201905061599d6000830187614735565b6159aa6020830186614735565b6159b760408301856145c5565b81810360608301526159c9818461594f565b905095945050505050565b6000815190506159e38161452c565b92915050565b6000602082840312156159ff576159fe6144f6565b5b6000615a0d848285016159d4565b91505092915050565b6000615a21826145bb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615a5457615a53615344565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615a99826145bb565b9150615aa4836145bb565b925082615ab457615ab3615a5f565b5b828204905092915050565b6000615aca826145bb565b9150615ad5836145bb565b925082821015615ae857615ae7615344565b5b828203905092915050565b6000615afe826145bb565b9150615b09836145bb565b925082615b1957615b18615a5f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b615b6e615b6982614c8c565b615b53565b82525050565b6000615b808285615b5d565b602082019150615b908284615b5d565b602082019150819050939250505056fea26469706673582212205cce8fbbbf81e7631342bac51f4380a4fdb5192bb16a6022ecc9ceea5dec716764736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636352211e116101395780639abc8320116100b6578063b88d4fde1161007a578063b88d4fde1461086d578063bd32fb6614610896578063c87b56dd146108bf578063d2cab056146108fc578063e985e9c514610918578063f2fde38b1461095557610251565b80639abc8320146107a95780639b642de1146107d4578063a0712d68146107fd578063a22cb46514610819578063aa98e0c61461084257610251565b806379502c55116100fd57806379502c55146106ce5780637e2285aa146106ff5780638da5cb5b1461072857806395d89b41146107535780639979a1941461077e57610251565b80636352211e146105eb5780636caffb8114610628578063704802751461065157806370a082311461067a578063715018a6146106b757610251565b80632d5537b0116101d257806342966c681161019657806342966c68146104ef5780634f6ccce7146105185780635418c44e14610555578063568c32a31461057e5780635b8d02d7146105955780635c975abb146105c057610251565b80632d5537b01461041e5780632f745c59146104495780633b4c4b25146104865780633ccfd60b146104af57806342842e0e146104c657610251565b80630dc28efe116102195780630dc28efe1461034f57806316c38b3c146103785780631785f53c146103a157806318160ddd146103ca57806323b872dd146103f557610251565b806301ffc9a714610256578063047fc9aa1461029357806306fdde03146102be578063081812fc146102e9578063095ea7b314610326575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190614558565b61097e565b60405161028a91906145a0565b60405180910390f35b34801561029f57600080fd5b506102a8610ac8565b6040516102b591906145d4565b60405180910390f35b3480156102ca57600080fd5b506102d3610ace565b6040516102e09190614688565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b91906146d6565b610b60565b60405161031d9190614744565b60405180910390f35b34801561033257600080fd5b5061034d6004803603810190610348919061478b565b610bdc565b005b34801561035b57600080fd5b50610376600480360381019061037191906147cb565b610ce7565b005b34801561038457600080fd5b5061039f600480360381019061039a9190614837565b610dbe565b005b3480156103ad57600080fd5b506103c860048036038101906103c39190614864565b610ea6565b005b3480156103d657600080fd5b506103df610fc1565b6040516103ec91906145d4565b60405180910390f35b34801561040157600080fd5b5061041c60048036038101906104179190614891565b611016565b005b34801561042a57600080fd5b50610433611026565b6040516104409190614688565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b919061478b565b6110b4565b60405161047d91906145d4565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a891906146d6565b6112bb565b005b3480156104bb57600080fd5b506104c461138e565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190614891565b611528565b005b3480156104fb57600080fd5b50610516600480360381019061051191906146d6565b611548565b005b34801561052457600080fd5b5061053f600480360381019061053a91906146d6565b611642565b60405161054c91906145d4565b60405180910390f35b34801561056157600080fd5b5061057c60048036038101906105779190614922565b6117b3565b005b34801561058a57600080fd5b506105936118c0565b005b3480156105a157600080fd5b506105aa6119f2565b6040516105b7919061495e565b60405180910390f35b3480156105cc57600080fd5b506105d5611a18565b6040516105e291906145a0565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d91906146d6565b611a2f565b60405161061f9190614744565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190614aad565b611a45565b005b34801561065d57600080fd5b5061067860048036038101906106739190614864565b611b5d565b005b34801561068657600080fd5b506106a1600480360381019061069c9190614864565b611c81565b6040516106ae91906145d4565b60405180910390f35b3480156106c357600080fd5b506106cc611d51565b005b3480156106da57600080fd5b506106e3611dd9565b6040516106f69796959493929190614ada565b60405180910390f35b34801561070b57600080fd5b5061072660048036038101906107219190614c03565b611e09565b005b34801561073457600080fd5b5061073d611eec565b60405161074a9190614744565b60405180910390f35b34801561075f57600080fd5b50610768611f16565b6040516107759190614688565b60405180910390f35b34801561078a57600080fd5b50610793611fa8565b6040516107a091906145a0565b60405180910390f35b3480156107b557600080fd5b506107be611fbb565b6040516107cb9190614688565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f69190614c03565b612049565b005b610817600480360381019061081291906146d6565b61212c565b005b34801561082557600080fd5b50610840600480360381019061083b9190614c4c565b6123d5565b005b34801561084e57600080fd5b5061085761254d565b6040516108649190614ca5565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614d61565b612553565b005b3480156108a257600080fd5b506108bd60048036038101906108b89190614e10565b6125a6565b005b3480156108cb57600080fd5b506108e660048036038101906108e191906146d6565b61262c565b6040516108f39190614688565b60405180910390f35b61091660048036038101906109119190614e9d565b612759565b005b34801561092457600080fd5b5061093f600480360381019061093a9190614efd565b612ac4565b60405161094c91906145a0565b60405180910390f35b34801561096157600080fd5b5061097c60048036038101906109779190614864565b612b58565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac15750610ac082612c50565b5b9050919050565b600b5481565b606060018054610add90614f6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0990614f6c565b8015610b565780601f10610b2b57610100808354040283529160200191610b56565b820191906000526020600020905b815481529060010190602001808311610b3957829003601f168201915b5050505050905090565b6000610b6b82612cba565b610ba1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be782611a2f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c4f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c6e612d22565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ca05750610c9e81610c99612d22565b612ac4565b155b15610cd7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce2838383612d2a565b505050565b610cef611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610d715750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790614fea565b60405180910390fd5b610dba8282612ddc565b5050565b610dc6611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e485750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90614fea565b60405180910390fd5b8015610e9a57610e95612e8a565b610ea3565b610ea2612f2d565b5b50565b610eae611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610f305750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6690614fea565b60405180910390fd5b601760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905550565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b611021838383612fcf565b505050565b600c805461103390614f6c565b80601f016020809104026020016040519081016040528092919081815260200182805461105f90614f6c565b80156110ac5780601f10611081576101008083540402835291602001916110ac565b820191906000526020600020905b81548152906001019060200180831161108f57829003601f168201915b505050505081565b60006110bf83611c81565b82106110f7576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b838110156112af576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561120e57506112a2565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461124e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112a057868414156112975781955050505050506112b5565b83806001019450505b505b8080600101915050611131565b50600080fd5b92915050565b6112c3611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806113455750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90614fea565b60405180910390fd5b80600b8190555050565b611396611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806114185750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e90614fea565b60405180910390fd5b6000600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161149f9061503b565b60006040518083038185875af1925050503d80600081146114dc576040519150601f19603f3d011682016040523d82523d6000602084013e6114e1565b606091505b5050905080611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c9061509c565b60405180910390fd5b50565b61154383838360405180602001604052806000815250612553565b505050565b6000611553826134ec565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661157a612d22565b73ffffffffffffffffffffffffffffffffffffffff1614806115ad57506115ac82600001516115a7612d22565b612ac4565b5b806115f257506115bb612d22565b73ffffffffffffffffffffffffffffffffffffffff166115da84610b60565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162b90615108565b60405180910390fd5b61163d83613794565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b8281101561177b576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161176d578583141561176457819450505050506117ae565b82806001019350505b50808060010191505061167a565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6117bb611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061183d5750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390614fea565b60405180910390fd5b80600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118c8611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061194a5750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090614fea565b60405180910390fd5b6000600d60009054906101000a900460ff1615905080600d60006101000a81548160ff0219169083151502179055507f033fcfd9cc0d1245d0975739b3bd6fa38727f20cfda54f4c8f817e2825ee7b8c816040516119e791906145a0565b60405180910390a150565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600960009054906101000a900460ff16905090565b6000611a3a826134ec565b600001519050919050565b611a4d611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611acf5750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590614fea565b60405180910390fd5b80600f600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015590505050565b611b65611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611be75750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d90614fea565b60405180910390fd5b6001601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ce9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611d59612d22565b73ffffffffffffffffffffffffffffffffffffffff16611d77611eec565b73ffffffffffffffffffffffffffffffffffffffff1614611dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc490615174565b60405180910390fd5b611dd76000613bb1565b565b600f8060000154908060010154908060020154908060030154908060040154908060050154908060060154905087565b611e11611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611e935750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec990614fea565b60405180910390fd5b80600c9080519060200190611ee8929190614406565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611f2590614f6c565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5190614f6c565b8015611f9e5780601f10611f7357610100808354040283529160200191611f9e565b820191906000526020600020905b815481529060010190602001808311611f8157829003601f168201915b5050505050905090565b600d60009054906101000a900460ff1681565b600a8054611fc890614f6c565b80601f0160208091040260200160405190810160405280929190818152602001828054611ff490614f6c565b80156120415780601f1061201657610100808354040283529160200191612041565b820191906000526020600020905b81548152906001019060200180831161202457829003601f168201915b505050505081565b612051611eec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806120d35750601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210990614fea565b60405180910390fd5b80600a9080519060200190612128929190614406565b5050565b60026008541415612172576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612169906151e0565b60405180910390fd5b6002600881905550612182611a18565b156121c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b99061524c565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff166121e1612d22565b73ffffffffffffffffffffffffffffffffffffffff1614612237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222e906152b8565b60405180910390fd5b600f6006015481111561227f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227690615324565b60405180910390fd5b600f6003015481601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001546122d39190615373565b1115612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90615324565b60405180910390fd5b80600f6000015461232591906153c9565b341015612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e9061546f565b60405180910390fd5b80601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546123b99190615373565b925050819055506123ca8133612ddc565b600160088190555050565b6123dd612d22565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612442576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806006600061244f612d22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166124fc612d22565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161254191906145a0565b60405180910390a35050565b600e5481565b61255e848484612fcf565b61256a84848484613c77565b6125a0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6125ae612d22565b73ffffffffffffffffffffffffffffffffffffffff166125cc611eec565b73ffffffffffffffffffffffffffffffffffffffff1614612622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261990615174565b60405180910390fd5b80600e8190555050565b606061263782612cba565b612676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266d90615501565b60405180910390fd5b6000600a805461268590614f6c565b80601f01602080910402602001604051908101604052809291908181526020018280546126b190614f6c565b80156126fe5780601f106126d3576101008083540402835291602001916126fe565b820191906000526020600020905b8154815290600101906020018083116126e157829003601f168201915b5050505050905060008151116127235760405180602001604052806000815250612751565b8061272d84613df6565b600c604051602001612741939291906155f1565b6040516020818303038152906040525b915050919050565b8181600e546127d0838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505082336040516020016127b5919061566a565b60405160208183030381529060405280519060200120613f57565b61280f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612806906156d1565b60405180910390fd5b60026008541415612855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284c906151e0565b60405180910390fd5b60026008819055503273ffffffffffffffffffffffffffffffffffffffff1661287c612d22565b73ffffffffffffffffffffffffffffffffffffffff16146128d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c9906152b8565b60405180910390fd5b600d60009054906101000a900460ff16612921576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129189061573d565b60405180910390fd5b600f60050154861115612969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296090615324565b60405180910390fd5b600f6004015486601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546129bd9190615373565b11156129fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f590615324565b60405180910390fd5b85600f60010154612a0f91906153c9565b341015612a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a489061546f565b60405180910390fd5b85601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001016000828254612aa39190615373565b92505081905550612ab48633612ddc565b6001600881905550505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b60612d22565b73ffffffffffffffffffffffffffffffffffffffff16612b7e611eec565b73ffffffffffffffffffffffffffffffffffffffff1614612bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcb90615174565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3b906157cf565b60405180910390fd5b612c4d81613bb1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612d1b575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612de6610fc1565b905060008311612e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e229061583b565b60405180910390fd5b600b548382612e3a9190615373565b1115612e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e72906158a7565b60405180910390fd5b612e858284613f6e565b505050565b612e92611a18565b15612ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec99061524c565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612f16612d22565b604051612f239190614744565b60405180910390a1565b612f35611a18565b612f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6b90615913565b60405180910390fd5b6000600960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612fb8612d22565b604051612fc59190614744565b60405180910390a1565b6000612fda826134ec565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16613001612d22565b73ffffffffffffffffffffffffffffffffffffffff1614806130345750613033826000015161302e612d22565b612ac4565b5b806130795750613042612d22565b73ffffffffffffffffffffffffffffffffffffffff1661306184610b60565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806130b2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461311b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613182576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61318f8585856001613f8c565b61319f6000848460000151612d2a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561347c5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561347b5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134e58585856001613f92565b5050505050565b6134f461448c565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561375d576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161375b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461363f57809250505061378f565b5b60011561375a57818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461375557809250505061378f565b613640565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600061379f826134ec565b90506137b381600001516000846001613f8c565b6137c36000838360000151612d2a565b600160046000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160036000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415613adb5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015613ada5781600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b4e81600001516000846001613f92565b6000601081819054906101000a90046fffffffffffffffffffffffffffffffff168092919060010191906101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000613c988473ffffffffffffffffffffffffffffffffffffffff16613f98565b15613de9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613cc1612d22565b8786866040518563ffffffff1660e01b8152600401613ce39493929190615988565b6020604051808303816000875af1925050508015613d1f57506040513d601f19601f82011682018060405250810190613d1c91906159e9565b60015b613d99573d8060008114613d4f576040519150601f19603f3d011682016040523d82523d6000602084013e613d54565b606091505b50600081511415613d91576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613dee565b600190505b949350505050565b60606000821415613e3e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613f52565b600082905060005b60008214613e70578080613e5990615a16565b915050600a82613e699190615a8e565b9150613e46565b60008167ffffffffffffffff811115613e8c57613e8b61497e565b5b6040519080825280601f01601f191660200182016040528015613ebe5781602001600182028036833780820191505090505b5090505b60008514613f4b57600182613ed79190615abf565b9150600a85613ee69190615af3565b6030613ef29190615373565b60f81b818381518110613f0857613f07615b24565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613f449190615a8e565b9450613ec2565b8093505050505b919050565b600082613f648584613fab565b1490509392505050565b613f8882826040518060200160405280600081525061405e565b5050565b50505050565b50505050565b600080823b905060008111915050919050565b60008082905060005b8451811015614053576000858281518110613fd257613fd1615b24565b5b60200260200101519050808311614013578281604051602001613ff6929190615b74565b60405160208183030381529060405280519060200120925061403f565b8083604051602001614026929190615b74565b6040516020818303038152906040528051906020012092505b50808061404b90615a16565b915050613fb4565b508091505092915050565b61406b8383836001614070565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561410b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415614146576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6141536000868387613f8c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156143b857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561436c575061436a6000888488613c77565b155b156143a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506142f1565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506143ff6000868387613f92565b5050505050565b82805461441290614f6c565b90600052602060002090601f016020900481019282614434576000855561447b565b82601f1061444d57805160ff191683800117855561447b565b8280016001018555821561447b579182015b8281111561447a57825182559160200191906001019061445f565b5b50905061448891906144cf565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156144e85760008160009055506001016144d0565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61453581614500565b811461454057600080fd5b50565b6000813590506145528161452c565b92915050565b60006020828403121561456e5761456d6144f6565b5b600061457c84828501614543565b91505092915050565b60008115159050919050565b61459a81614585565b82525050565b60006020820190506145b56000830184614591565b92915050565b6000819050919050565b6145ce816145bb565b82525050565b60006020820190506145e960008301846145c5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561462957808201518184015260208101905061460e565b83811115614638576000848401525b50505050565b6000601f19601f8301169050919050565b600061465a826145ef565b61466481856145fa565b935061467481856020860161460b565b61467d8161463e565b840191505092915050565b600060208201905081810360008301526146a2818461464f565b905092915050565b6146b3816145bb565b81146146be57600080fd5b50565b6000813590506146d0816146aa565b92915050565b6000602082840312156146ec576146eb6144f6565b5b60006146fa848285016146c1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061472e82614703565b9050919050565b61473e81614723565b82525050565b60006020820190506147596000830184614735565b92915050565b61476881614723565b811461477357600080fd5b50565b6000813590506147858161475f565b92915050565b600080604083850312156147a2576147a16144f6565b5b60006147b085828601614776565b92505060206147c1858286016146c1565b9150509250929050565b600080604083850312156147e2576147e16144f6565b5b60006147f0858286016146c1565b925050602061480185828601614776565b9150509250929050565b61481481614585565b811461481f57600080fd5b50565b6000813590506148318161480b565b92915050565b60006020828403121561484d5761484c6144f6565b5b600061485b84828501614822565b91505092915050565b60006020828403121561487a576148796144f6565b5b600061488884828501614776565b91505092915050565b6000806000606084860312156148aa576148a96144f6565b5b60006148b886828701614776565b93505060206148c986828701614776565b92505060406148da868287016146c1565b9150509250925092565b60006148ef82614703565b9050919050565b6148ff816148e4565b811461490a57600080fd5b50565b60008135905061491c816148f6565b92915050565b600060208284031215614938576149376144f6565b5b60006149468482850161490d565b91505092915050565b614958816148e4565b82525050565b6000602082019050614973600083018461494f565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6149b68261463e565b810181811067ffffffffffffffff821117156149d5576149d461497e565b5b80604052505050565b60006149e86144ec565b90506149f482826149ad565b919050565b600060e08284031215614a0f57614a0e614979565b5b614a1960e06149de565b90506000614a29848285016146c1565b6000830152506020614a3d848285016146c1565b6020830152506040614a51848285016146c1565b6040830152506060614a65848285016146c1565b6060830152506080614a79848285016146c1565b60808301525060a0614a8d848285016146c1565b60a08301525060c0614aa1848285016146c1565b60c08301525092915050565b600060e08284031215614ac357614ac26144f6565b5b6000614ad1848285016149f9565b91505092915050565b600060e082019050614aef600083018a6145c5565b614afc60208301896145c5565b614b0960408301886145c5565b614b1660608301876145c5565b614b2360808301866145c5565b614b3060a08301856145c5565b614b3d60c08301846145c5565b98975050505050505050565b600080fd5b600080fd5b600067ffffffffffffffff821115614b6e57614b6d61497e565b5b614b778261463e565b9050602081019050919050565b82818337600083830152505050565b6000614ba6614ba184614b53565b6149de565b905082815260208101848484011115614bc257614bc1614b4e565b5b614bcd848285614b84565b509392505050565b600082601f830112614bea57614be9614b49565b5b8135614bfa848260208601614b93565b91505092915050565b600060208284031215614c1957614c186144f6565b5b600082013567ffffffffffffffff811115614c3757614c366144fb565b5b614c4384828501614bd5565b91505092915050565b60008060408385031215614c6357614c626144f6565b5b6000614c7185828601614776565b9250506020614c8285828601614822565b9150509250929050565b6000819050919050565b614c9f81614c8c565b82525050565b6000602082019050614cba6000830184614c96565b92915050565b600067ffffffffffffffff821115614cdb57614cda61497e565b5b614ce48261463e565b9050602081019050919050565b6000614d04614cff84614cc0565b6149de565b905082815260208101848484011115614d2057614d1f614b4e565b5b614d2b848285614b84565b509392505050565b600082601f830112614d4857614d47614b49565b5b8135614d58848260208601614cf1565b91505092915050565b60008060008060808587031215614d7b57614d7a6144f6565b5b6000614d8987828801614776565b9450506020614d9a87828801614776565b9350506040614dab878288016146c1565b925050606085013567ffffffffffffffff811115614dcc57614dcb6144fb565b5b614dd887828801614d33565b91505092959194509250565b614ded81614c8c565b8114614df857600080fd5b50565b600081359050614e0a81614de4565b92915050565b600060208284031215614e2657614e256144f6565b5b6000614e3484828501614dfb565b91505092915050565b600080fd5b600080fd5b60008083601f840112614e5d57614e5c614b49565b5b8235905067ffffffffffffffff811115614e7a57614e79614e3d565b5b602083019150836020820283011115614e9657614e95614e42565b5b9250929050565b600080600060408486031215614eb657614eb56144f6565b5b6000614ec4868287016146c1565b935050602084013567ffffffffffffffff811115614ee557614ee46144fb565b5b614ef186828701614e47565b92509250509250925092565b60008060408385031215614f1457614f136144f6565b5b6000614f2285828601614776565b9250506020614f3385828601614776565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614f8457607f821691505b60208210811415614f9857614f97614f3d565b5b50919050565b7f556e617574686f72697a65640000000000000000000000000000000000000000600082015250565b6000614fd4600c836145fa565b9150614fdf82614f9e565b602082019050919050565b6000602082019050818103600083015261500381614fc7565b9050919050565b600081905092915050565b50565b600061502560008361500a565b915061503082615015565b600082019050919050565b600061504682615018565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006150866010836145fa565b915061509182615050565b602082019050919050565b600060208201905081810360008301526150b581615079565b9050919050565b7f4e6f7420617070726f7665640000000000000000000000000000000000000000600082015250565b60006150f2600c836145fa565b91506150fd826150bc565b602082019050919050565b60006020820190508181036000830152615121816150e5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061515e6020836145fa565b915061516982615128565b602082019050919050565b6000602082019050818103600083015261518d81615151565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006151ca601f836145fa565b91506151d582615194565b602082019050919050565b600060208201905081810360008301526151f9816151bd565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006152366010836145fa565b915061524182615200565b602082019050919050565b6000602082019050818103600083015261526581615229565b9050919050565b7f6e6f20626f747300000000000000000000000000000000000000000000000000600082015250565b60006152a26007836145fa565b91506152ad8261526c565b602082019050919050565b600060208201905081810360008301526152d181615295565b9050919050565b7f45786365656473206d6178000000000000000000000000000000000000000000600082015250565b600061530e600b836145fa565b9150615319826152d8565b602082019050919050565b6000602082019050818103600083015261533d81615301565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061537e826145bb565b9150615389836145bb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156153be576153bd615344565b5b828201905092915050565b60006153d4826145bb565b91506153df836145bb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561541857615417615344565b5b828202905092915050565b7f696e76616c696420707269636500000000000000000000000000000000000000600082015250565b6000615459600d836145fa565b915061546482615423565b602082019050919050565b600060208201905081810360008301526154888161544c565b9050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006154eb6021836145fa565b91506154f68261548f565b604082019050919050565b6000602082019050818103600083015261551a816154de565b9050919050565b600081905092915050565b6000615537826145ef565b6155418185615521565b935061555181856020860161460b565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461557f81614f6c565b6155898186615521565b945060018216600081146155a457600181146155b5576155e8565b60ff198316865281860193506155e8565b6155be8561555d565b60005b838110156155e0578154818901526001820191506020810190506155c1565b838801955050505b50505092915050565b60006155fd828661552c565b9150615609828561552c565b91506156158284615572565b9150819050949350505050565b60008160601b9050919050565b600061563a82615622565b9050919050565b600061564c8261562f565b9050919050565b61566461565f82614723565b615641565b82525050565b60006156768284615653565b60148201915081905092915050565b7f4164647265737320646f6573206e6f7420657869737420696e206c6973740000600082015250565b60006156bb601e836145fa565b91506156c682615685565b602082019050919050565b600060208201905081810360008301526156ea816156ae565b9050919050565b7f4e6f74206c697665000000000000000000000000000000000000000000000000600082015250565b60006157276008836145fa565b9150615732826156f1565b602082019050919050565b600060208201905081810360008301526157568161571a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006157b96026836145fa565b91506157c48261575d565b604082019050919050565b600060208201905081810360008301526157e8816157ac565b9050919050565b7f436f756e74206973203000000000000000000000000000000000000000000000600082015250565b6000615825600a836145fa565b9150615830826157ef565b602082019050919050565b6000602082019050818103600083015261585481615818565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b60006158916008836145fa565b915061589c8261585b565b602082019050919050565b600060208201905081810360008301526158c081615884565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006158fd6014836145fa565b9150615908826158c7565b602082019050919050565b6000602082019050818103600083015261592c816158f0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061595a82615933565b615964818561593e565b935061597481856020860161460b565b61597d8161463e565b840191505092915050565b600060808201905061599d6000830187614735565b6159aa6020830186614735565b6159b760408301856145c5565b81810360608301526159c9818461594f565b905095945050505050565b6000815190506159e38161452c565b92915050565b6000602082840312156159ff576159fe6144f6565b5b6000615a0d848285016159d4565b91505092915050565b6000615a21826145bb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615a5457615a53615344565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615a99826145bb565b9150615aa4836145bb565b925082615ab457615ab3615a5f565b5b828204905092915050565b6000615aca826145bb565b9150615ad5836145bb565b925082821015615ae857615ae7615344565b5b828203905092915050565b6000615afe826145bb565b9150615b09836145bb565b925082615b1957615b18615a5f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b615b6e615b6982614c8c565b615b53565b82525050565b6000615b808285615b5d565b602082019150615b908284615b5d565b602082019150819050939250505056fea26469706673582212205cce8fbbbf81e7631342bac51f4380a4fdb5192bb16a6022ecc9ceea5dec716764736f6c634300080a0033

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.