ETH Price: $3,276.43 (-5.71%)

Token

Haruna (Future)
 

Overview

Max Total Supply

288 Future

Holders

63

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 Future
0x2B084c812D6156D0A4d91825e04AC3c4eb2fD0C2
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:
HARUNA

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : Haruna.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721Psi.sol";

contract HARUNA is ERC721Psi, Ownable, ReentrancyGuard {
    using Strings for uint256;
    using ECDSA for bytes32;

    bool public _isSaleActive = false;
    bool public _isWLSaleActive = false;
    bool public _revealed = false;

    
    uint256 public MAX_SUPPLY = 777;
    uint256 public mintPrice = 0.088 ether;
    uint256 public WL_mintPrice = 0.055 ether;
    uint256 public maxBalance = 10;


    string baseURI;
    string public notRevealedUri;
    string public baseExtension = ".json";
    //tokenURI
    mapping(uint256 => string) private _tokenURIs;

    //signer
    address private _signer;

    //core-F
    address core_F;

    //funds
    address funds;

    //connect
    address connect;

    //whiteList counter
    mapping(address=>uint256) whitelist_counter;

    constructor(string memory initBaseURI, string memory initNotRevealedUri)
        ERC721Psi("Haruna","Future")
    {
        setBaseURI(initBaseURI);
        setNotRevealedURI(initNotRevealedUri);
    }

    //modifier
    modifier callerIsContract(){
        require(msg.sender == connect || tx.origin == msg.sender,"caller is mot human!");
        _;
        }
    modifier notExceedMax_Supply(uint256 tokenQuantity){
        require(totalSupply() + tokenQuantity <= MAX_SUPPLY,"Sale would exceed max supply");
        _;
        }
    modifier saleTime(){
        require(_isSaleActive, "Sale must be active to mint HARUNA Metas");
        _;
        }
    modifier balance(uint256 tokenQuantity){
        require(balanceOf(msg.sender) + tokenQuantity <= maxBalance,"Sale would exceed max balance");
        _;
        }
    //mintFunction
    function mintHARUNA(uint256 tokenQuantity) 
    public payable nonReentrant 
    callerIsContract 
    notExceedMax_Supply(tokenQuantity)
    saleTime
    balance(tokenQuantity)
    {
        require(
            tokenQuantity * mintPrice <= msg.value,
            "Not enough ether sent"
        );
        _mintHARUNA(tokenQuantity);
    }
    function mintHARUNA_Owner(uint256 tokenQuantity) 
    public payable 
    onlyOwner 
    callerIsContract
    notExceedMax_Supply(tokenQuantity)
    {
        _mintHARUNA(tokenQuantity);
    }
    //WL
    function isWhitelisted(bytes memory signature) internal view returns(bool){
        bytes32 messagehash = keccak256(
             abi.encodePacked(address(this), msg.sender)
         );
         address signer = messagehash.toEthSignedMessageHash().recover(
             signature
         ); 
            return((_signer == signer));
  }
    function mintHARUNA_WL(uint256 tokenQuantity, bytes memory signature) 
    public payable 
    nonReentrant 
    callerIsContract
    notExceedMax_Supply(tokenQuantity)
    balance(tokenQuantity)
    {
        require(_isWLSaleActive,"Sale must be active to mint HARUNA Metas");
        require(isWhitelisted(signature), "Must be whitelisted");
        require(
            tokenQuantity * WL_mintPrice <= msg.value,
            "Not enough ether sent"
        );
        require(whitelist_counter[msg.sender] + tokenQuantity < 3,"");
        whitelist_counter[msg.sender] = whitelist_counter[msg.sender] + tokenQuantity;
        if(tokenQuantity == 2){
            tokenQuantity = tokenQuantity + 1;
        }
        _mintHARUNA(tokenQuantity);
    }
    function _mintHARUNA(uint256 tokenQuantity) internal  {
        if (totalSupply()+tokenQuantity < MAX_SUPPLY) {
            _safeMint(msg.sender, tokenQuantity);
        }
    }
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (_revealed == false) {
            return notRevealedUri;
        }
        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();
        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return
            string(abi.encodePacked(base, tokenId.toString(), baseExtension));
    }
    // internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    //only owner
    function flipSaleActive() public onlyOwner {
        _isSaleActive = !_isSaleActive;
    }
    function flipWLSaleActive() public onlyOwner {
        _isWLSaleActive = !_isWLSaleActive;
    }

    function flipReveal() public onlyOwner {
        _revealed = !_revealed;
    }
    function setMintPrice(uint256 _mintPrice) public onlyOwner {
        mintPrice = _mintPrice;
    }
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }
    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }
    function setMaxBalance(uint256 _maxBalance) public onlyOwner {
        maxBalance = _maxBalance;
    }
    function withdraw() public onlyOwner nonReentrant {
        uint256 balance_core = address(this).balance * 2560 / 10000;
        uint256 balance_fund = address(this).balance * 7440 / 10000;
        payable(core_F).transfer(balance_core);
        payable(funds).transfer(balance_fund);
    }

    function setCore_F(address core_F_) public onlyOwner {
        core_F = core_F_;
    }
    function setfunds(address funds_) public onlyOwner {
        funds = funds_;
    }
    function setSigner(address signer)public onlyOwner
    {
        _signer = signer;
    }
    function set_WL_mint(address WL, uint256 numb) public onlyOwner{
        whitelist_counter[WL] = numb;
    }
    function set_connect(address _connect) public onlyOwner{
        connect = _connect;
    }
    function set_MAX_SUPPLY(uint256 _MAX_SUPPLY) public onlyOwner{
        MAX_SUPPLY = _MAX_SUPPLY;
    }
    function check_WL(address WL) public view onlyOwner returns(uint256 times){
        times = whitelist_counter[WL];
    }
}

File 2 of 17 : ERC721Psi.sol
// SPDX-License-Identifier: MIT
/**
  ______ _____   _____ ______ ___  __ _  _  _ 
 |  ____|  __ \ / ____|____  |__ \/_ | || || |
 | |__  | |__) | |        / /   ) || | \| |/ |
 |  __| |  _  /| |       / /   / / | |\_   _/ 
 | |____| | \ \| |____  / /   / /_ | |  | |   
 |______|_|  \_\\_____|/_/   |____||_|  |_|   
                                              
                                            
 */

pragma solidity ^0.8.0;

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/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/StorageSlot.sol";
import "solidity-bits/contracts/BitMaps.sol";


contract ERC721Psi is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;
    using BitMaps for BitMaps.BitMap;

    BitMaps.BitMap private _batchHead;

    string private _name;
    string private _symbol;

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

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

        uint count;
        for( uint i; i < _minted; ++i ){
            if(_exists(i)){
                if( owner == ownerOf(i)){
                    ++count;
                }
            }
        }
        return count;
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        (address owner, uint256 tokenIdBatchHead) = _ownerAndBatchHeadOf(tokenId);
        return owner;
    }

    function _ownerAndBatchHeadOf(uint256 tokenId) internal view returns (address owner, uint256 tokenIdBatchHead){
        require(_exists(tokenId), "ERC721Psi: owner query for nonexistent token");
        tokenIdBatchHead = _getBatchHead(tokenId);
        owner = _owners[tokenIdBatchHead];
    }

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

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

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

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

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


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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721Psi: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _minted;
    }

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

    /**
     * @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) internal virtual {
        _safeMint(to, quantity, "");
    }

    
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        uint256 startTokenId = _minted;
        _mint(to, quantity);
        require(
            _checkOnERC721Received(address(0), to, startTokenId, quantity, _data),
            "ERC721Psi: transfer to non ERC721Receiver implementer"
        );
    }


    function _mint(
        address to,
        uint256 quantity
    ) internal virtual {
        uint256 tokenIdBatchHead = _minted;
        
        require(quantity > 0, "ERC721Psi: quantity must be greater 0");
        require(to != address(0), "ERC721Psi: mint to the zero address");
        
        _beforeTokenTransfers(address(0), to, tokenIdBatchHead, quantity);
        _minted += quantity;
        _owners[tokenIdBatchHead] = to;
        _batchHead.set(tokenIdBatchHead);
        _afterTokenTransfers(address(0), to, tokenIdBatchHead, quantity);
        
        // Emit events
        for(uint256 tokenId=tokenIdBatchHead;tokenId < tokenIdBatchHead + quantity; tokenId++){
            emit Transfer(address(0), to, tokenId);
        } 
    }


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

        require(
            owner == from,
            "ERC721Psi: transfer of token that is not own"
        );
        require(to != address(0), "ERC721Psi: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        uint256 nextTokenId = tokenId + 1;

        if(!_batchHead.get(nextTokenId) &&  
            nextTokenId < _minted
        ) {
            _owners[nextTokenId] = from;
            _batchHead.set(nextTokenId);
        }

        _owners[tokenId] = to;
        if(tokenId != tokenIdBatchHead) {
            _batchHead.set(tokenId);
        }

        emit Transfer(from, to, tokenId);

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

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

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

    function _getBatchHead(uint256 tokenId) internal view returns (uint256 tokenIdBatchHead) {
        tokenIdBatchHead = _batchHead.scanForward(tokenId); 
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _minted;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < totalSupply(), "ERC721Psi: global index out of bounds");
        
        uint count;
        for(uint i; i < _minted; i++){
            if(_exists(i)){
                if(count == index) return i;
                else count++;
            }
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) {
        uint count;
        for(uint i; i < _minted; i++){
            if(_exists(i) && owner == ownerOf(i)){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Psi: owner index out of bounds");
    }


    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 3 of 17 : 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 4 of 17 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 5 of 17 : 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 6 of 17 : 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 7 of 17 : BitMaps.sol
// SPDX-License-Identifier: MIT
/**
   _____       ___     ___ __           ____  _ __      
  / ___/____  / (_)___/ (_) /___  __   / __ )(_) /______
  \__ \/ __ \/ / / __  / / __/ / / /  / __  / / __/ ___/
 ___/ / /_/ / / / /_/ / / /_/ /_/ /  / /_/ / / /_(__  ) 
/____/\____/_/_/\__,_/_/\__/\__, /  /_____/_/\__/____/  
                           /____/                        

- npm: https://www.npmjs.com/package/solidity-bits
- github: https://github.com/estarriolvetch/solidity-bits

 */
pragma solidity ^0.8.0;

import "./BitScan.sol";

/**
 * @dev This Library is a modified version of Openzeppelin's BitMaps library.
 * Functions of finding the index of the closest set bit from a given index are added.
 * The indexing of each bucket is modifed to count from the MSB to the LSB instead of from the LSB to the MSB.
 * The modification of indexing makes finding the closest previous set bit more efficient in gas usage.
*/

/**
 * @dev Library for managing uint256 to bool mapping in a compact and efficient way, providing the keys are sequential.
 * Largelly inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor].
 */

library BitMaps {
    using BitScan for uint256;
    uint256 private constant MASK_INDEX_ZERO = (1 << 255);
    struct BitMap {
        mapping(uint256 => uint256) _data;
    }

    /**
     * @dev Returns whether the bit at `index` is set.
     */
    function get(BitMap storage bitmap, uint256 index) internal view returns (bool) {
        uint256 bucket = index >> 8;
        uint256 mask = MASK_INDEX_ZERO >> (index & 0xff);
        return bitmap._data[bucket] & mask != 0;
    }

    /**
     * @dev Sets the bit at `index` to the boolean `value`.
     */
    function setTo(
        BitMap storage bitmap,
        uint256 index,
        bool value
    ) internal {
        if (value) {
            set(bitmap, index);
        } else {
            unset(bitmap, index);
        }
    }

    /**
     * @dev Sets the bit at `index`.
     */
    function set(BitMap storage bitmap, uint256 index) internal {
        uint256 bucket = index >> 8;
        uint256 mask = MASK_INDEX_ZERO >> (index & 0xff);
        bitmap._data[bucket] |= mask;
    }

    /**
     * @dev Unsets the bit at `index`.
     */
    function unset(BitMap storage bitmap, uint256 index) internal {
        uint256 bucket = index >> 8;
        uint256 mask = MASK_INDEX_ZERO >> (index & 0xff);
        bitmap._data[bucket] &= ~mask;
    }

    /**
     * @dev Find the closest index of the set bit before `index`.
     */
    function scanForward(BitMap storage bitmap, uint256 index) internal view returns (uint256) {
        uint256 bucket = index >> 8;

        // index within the bucket
        uint256 bucketIndex = (index & 0xff);

        // load a bitboard from the bitmap.
        uint256 bb = bitmap._data[bucket];

        // offset the bitboard to scan from `bucketIndex`.
        bb = bb >> (0xff ^ bucketIndex); // bb >> (255 - bucketIndex)
        
        if(bb > 0) {
            unchecked {
                return (bucket << 8) | (bucketIndex -  bb.bitScanForward256());    
            }
        } else {
            while(true) {
                require(bucket > 0, "BitMaps: The set bit before the index doesn't exist.");
                unchecked {
                    bucket--;
                }
                // No offset. Always scan from the least significiant bit now.
                bb = bitmap._data[bucket];
                
                if(bb > 0) {
                    unchecked {
                        return (bucket << 8) | (255 -  bb.bitScanForward256());    
                    }
                } 
            }
        }
    }

    function getBucket(BitMap storage bitmap, uint256 bucket) internal view returns (uint256) {
        return bitmap._data[bucket];
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        assembly {
            r.slot := slot
        }
    }
}

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 17 : 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 11 of 17 : 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 12 of 17 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @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 17 : 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 14 of 17 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 15 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

File 16 of 17 : BitScan.sol
// SPDX-License-Identifier: MIT
/**
   _____       ___     ___ __           ____  _ __      
  / ___/____  / (_)___/ (_) /___  __   / __ )(_) /______
  \__ \/ __ \/ / / __  / / __/ / / /  / __  / / __/ ___/
 ___/ / /_/ / / / /_/ / / /_/ /_/ /  / /_/ / / /_(__  ) 
/____/\____/_/_/\__,_/_/\__/\__, /  /_____/_/\__/____/  
                           /____/                        

- npm: https://www.npmjs.com/package/solidity-bits
- github: https://github.com/estarriolvetch/solidity-bits

 */

pragma solidity ^0.8.0;


library BitScan {
    uint256 constant private DEBRUIJN_256 = 0x818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff;
    bytes constant private LOOKUP_TABLE_256 = hex"0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8";

    /**
        @dev Isolate the least significant set bit.
     */ 
    function isolateLS1B256(uint256 bb) pure internal returns (uint256) {
        require(bb > 0);
        unchecked {
            return bb & (0 - bb);
        }
    } 

    /**
        @dev Isolate the most significant set bit.
     */ 
    function isolateMS1B256(uint256 bb) pure internal returns (uint256) {
        require(bb > 0);
        unchecked {
            bb |= bb >> 256;
            bb |= bb >> 128;
            bb |= bb >> 64;
            bb |= bb >> 32;
            bb |= bb >> 16;
            bb |= bb >> 8;
            bb |= bb >> 4;
            bb |= bb >> 2;
            bb |= bb >> 1;
            
            return (bb >> 1) + 1;
        }
    } 

    /**
        @dev Find the index of the lest significant set bit. (trailing zero count)
     */ 
    function bitScanForward256(uint256 bb) pure internal returns (uint8) {
        unchecked {
            return uint8(LOOKUP_TABLE_256[(isolateLS1B256(bb) * DEBRUIJN_256) >> 248]);
        }   
    }

    /**
        @dev Find the index of the most significant set bit.
     */ 
    function bitScanReverse256(uint256 bb) pure internal returns (uint8) {
        unchecked {
            return 255 - uint8(LOOKUP_TABLE_256[((isolateMS1B256(bb) * DEBRUIJN_256) >> 248)]);
        }   
    }

    function log2(uint256 bb) pure internal returns (uint8) {
        unchecked {
            return uint8(LOOKUP_TABLE_256[(isolateMS1B256(bb) * DEBRUIJN_256) >> 248]);
        } 
    }
}

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"string","name":"initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isWLSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"WL","type":"address"}],"name":"check_WL","outputs":[{"internalType":"uint256","name":"times","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWLSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintHARUNA","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintHARUNA_Owner","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintHARUNA_WL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"core_F_","type":"address"}],"name":"setCore_F","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBalance","type":"uint256"}],"name":"setMaxBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"set_MAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"WL","type":"address"},{"internalType":"uint256","name":"numb","type":"uint256"}],"name":"set_WL_mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_connect","type":"address"}],"name":"set_connect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"funds_","type":"address"}],"name":"setfunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff0219169083151502179055506000600960026101000a81548160ff021916908315150217905550610309600a55670138a388a43c0000600b5566c3663566a58000600c55600a600d556040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060109080519060200190620000c492919062000438565b50348015620000d257600080fd5b50604051620067f1380380620067f18339818101604052810190620000f8919062000566565b6040518060400160405280600681526020017f486172756e6100000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f467574757265000000000000000000000000000000000000000000000000000081525081600190805190602001906200017c92919062000438565b5080600290805190602001906200019592919062000438565b505050620001b8620001ac620001ea60201b60201c565b620001f260201b60201c565b6001600881905550620001d182620002b860201b60201c565b620001e2816200036360201b60201c565b5050620007f2565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002c8620001ea60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ee6200040e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033e9062000612565b60405180910390fd5b80600e90805190602001906200035f92919062000438565b5050565b62000373620001ea60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003996200040e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e99062000612565b60405180910390fd5b80600f90805190602001906200040a92919062000438565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200044690620006da565b90600052602060002090601f0160209004810192826200046a5760008555620004b6565b82601f106200048557805160ff1916838001178555620004b6565b82800160010185558215620004b6579182015b82811115620004b557825182559160200191906001019062000498565b5b509050620004c59190620004c9565b5090565b5b80821115620004e4576000816000905550600101620004ca565b5090565b6000620004ff620004f9846200065d565b62000634565b9050828152602081018484840111156200051e576200051d620007a9565b5b6200052b848285620006a4565b509392505050565b600082601f8301126200054b576200054a620007a4565b5b81516200055d848260208601620004e8565b91505092915050565b6000806040838503121562000580576200057f620007b3565b5b600083015167ffffffffffffffff811115620005a157620005a0620007ae565b5b620005af8582860162000533565b925050602083015167ffffffffffffffff811115620005d357620005d2620007ae565b5b620005e18582860162000533565b9150509250929050565b6000620005fa60208362000693565b91506200060782620007c9565b602082019050919050565b600060208201905081810360008301526200062d81620005eb565b9050919050565b60006200064062000653565b90506200064e828262000710565b919050565b6000604051905090565b600067ffffffffffffffff8211156200067b576200067a62000775565b5b6200068682620007b8565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006c4578082015181840152602081019050620006a7565b83811115620006d4576000848401525b50505050565b60006002820490506001821680620006f357607f821691505b602082108114156200070a576200070962000746565b5b50919050565b6200071b82620007b8565b810181811067ffffffffffffffff821117156200073d576200073c62000775565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b615fef80620008026000396000f3fe6080604052600436106102885760003560e01c80637080d6fc1161015a578063b88d4fde116100c1578063e985e9c51161007a578063e985e9c514610964578063ed8d3012146109a1578063f2c4ce1e146109bd578063f2f886bc146109e6578063f2fde38b14610a0f578063f4a0a52814610a3857610288565b8063b88d4fde1461086a578063c668286214610893578063c87b56dd146108be578063da3ef23f146108fb578063de8b51e114610924578063e28a55b71461093b57610288565b80638da5cb5b116101135780638da5cb5b1461076e57806395d89b41146107995780639d51d9b7146107c4578063a22cb465146107ed578063ab35c64b14610816578063af1f09211461084157610288565b80637080d6fc1461067257806370a082311461069d578063715018a6146106da57806373ad468a146106f15780637cb698631461071c578063839949e31461074557610288565b806323b872dd116101fe5780634f6ccce7116101b75780634f6ccce71461055057806355f804b31461058d5780636352211e146105b65780636817c76c146105f35780636c19e7831461061e5780636ebeac851461064757610288565b806323b872dd146104685780632f745c591461049157806332cb6b0c146104ce5780633b84d9c6146104f95780633ccfd60b1461051057806342842e0e1461052757610288565b8063095ea7b311610250578063095ea7b31461039a5780630bb4a004146103c35780630e97a43e146103da5780630ea899ab1461040557806310deb9ee1461042157806318160ddd1461043d57610288565b806301b77b511461028d57806301ffc9a7146102ca57806306fdde0314610307578063081812fc14610332578063081c8c441461036f575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af91906142de565b610a61565b6040516102c19190615138565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec91906144a1565b610b26565b6040516102fe9190614cd6565b60405180910390f35b34801561031357600080fd5b5061031c610c70565b6040516103299190614d36565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190614544565b610d02565b6040516103669190614c6f565b60405180910390f35b34801561037b57600080fd5b50610384610d87565b6040516103919190614d36565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190614461565b610e15565b005b3480156103cf57600080fd5b506103d8610f2d565b005b3480156103e657600080fd5b506103ef610fd5565b6040516103fc9190615138565b60405180910390f35b61041f600480360381019061041a9190614544565b610fdb565b005b61043b60048036038101906104369190614571565b611182565b005b34801561044957600080fd5b50610452611579565b60405161045f9190615138565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a919061434b565b611583565b005b34801561049d57600080fd5b506104b860048036038101906104b39190614461565b6115e3565b6040516104c59190615138565b60405180910390f35b3480156104da57600080fd5b506104e36116b6565b6040516104f09190615138565b60405180910390f35b34801561050557600080fd5b5061050e6116bc565b005b34801561051c57600080fd5b50610525611764565b005b34801561053357600080fd5b5061054e6004803603810190610549919061434b565b61194a565b005b34801561055c57600080fd5b5061057760048036038101906105729190614544565b61196a565b6040516105849190615138565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906144fb565b611a0d565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190614544565b611aa3565b6040516105ea9190614c6f565b60405180910390f35b3480156105ff57600080fd5b50610608611abf565b6040516106159190615138565b60405180910390f35b34801561062a57600080fd5b50610645600480360381019061064091906142de565b611ac5565b005b34801561065357600080fd5b5061065c611b85565b6040516106699190614cd6565b60405180910390f35b34801561067e57600080fd5b50610687611b98565b6040516106949190614cd6565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf91906142de565b611bab565b6040516106d19190615138565b60405180910390f35b3480156106e657600080fd5b506106ef611c9d565b005b3480156106fd57600080fd5b50610706611d25565b6040516107139190615138565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e91906142de565b611d2b565b005b34801561075157600080fd5b5061076c60048036038101906107679190614461565b611deb565b005b34801561077a57600080fd5b50610783611eaf565b6040516107909190614c6f565b60405180910390f35b3480156107a557600080fd5b506107ae611ed9565b6040516107bb9190614d36565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e69190614544565b611f6b565b005b3480156107f957600080fd5b50610814600480360381019061080f9190614421565b611ff1565b005b34801561082257600080fd5b5061082b612172565b6040516108389190614cd6565b60405180910390f35b34801561084d57600080fd5b5061086860048036038101906108639190614544565b612185565b005b34801561087657600080fd5b50610891600480360381019061088c919061439e565b61220b565b005b34801561089f57600080fd5b506108a861226d565b6040516108b59190614d36565b60405180910390f35b3480156108ca57600080fd5b506108e560048036038101906108e09190614544565b6122fb565b6040516108f29190614d36565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d91906144fb565b61251f565b005b34801561093057600080fd5b506109396125b5565b005b34801561094757600080fd5b50610962600480360381019061095d91906142de565b61265d565b005b34801561097057600080fd5b5061098b6004803603810190610986919061430b565b61271d565b6040516109989190614cd6565b60405180910390f35b6109bb60048036038101906109b69190614544565b6127b1565b005b3480156109c957600080fd5b506109e460048036038101906109df91906144fb565b612a2b565b005b3480156109f257600080fd5b50610a0d6004803603810190610a0891906142de565b612ac1565b005b348015610a1b57600080fd5b50610a366004803603810190610a3191906142de565b612b81565b005b348015610a4457600080fd5b50610a5f6004803603810190610a5a9190614544565b612c79565b005b6000610a6b612cff565b73ffffffffffffffffffffffffffffffffffffffff16610a89611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690614f98565b60405180910390fd5b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bf157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c5957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c695750610c6882612d07565b5b9050919050565b606060018054610c7f90615414565b80601f0160208091040260200160405190810160405280929190818152602001828054610cab90615414565b8015610cf85780601f10610ccd57610100808354040283529160200191610cf8565b820191906000526020600020905b815481529060010190602001808311610cdb57829003601f168201915b5050505050905090565b6000610d0d82612d71565b610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390614e18565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f8054610d9490615414565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc090615414565b8015610e0d5780601f10610de257610100808354040283529160200191610e0d565b820191906000526020600020905b815481529060010190602001808311610df057829003601f168201915b505050505081565b6000610e2082611aa3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8890614f78565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eb0612cff565b73ffffffffffffffffffffffffffffffffffffffff161480610edf5750610ede81610ed9612cff565b61271d565b5b610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f15906150b8565b60405180910390fd5b610f288383612d7f565b505050565b610f35612cff565b73ffffffffffffffffffffffffffffffffffffffff16610f53611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090614f98565b60405180910390fd5b600960019054906101000a900460ff1615600960016101000a81548160ff021916908315150217905550565b600c5481565b610fe3612cff565b73ffffffffffffffffffffffffffffffffffffffff16611001611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90614f98565b60405180910390fd5b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806110de57503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b61111d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111490614e38565b60405180910390fd5b80600a548161112a611579565b6111349190615232565b1115611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c90614df8565b60405180910390fd5b61117e82612e38565b5050565b600260085414156111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf906150f8565b60405180910390fd5b6002600881905550601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061125757503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90614e38565b60405180910390fd5b81600a54816112a3611579565b6112ad9190615232565b11156112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590614df8565b60405180910390fd5b82600d54816112fc33611bab565b6113069190615232565b1115611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90614ed8565b60405180910390fd5b600960019054906101000a900460ff16611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d906150d8565b60405180910390fd5b61139f83612e62565b6113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590614db8565b60405180910390fd5b34600c54856113ed91906152b9565b111561142e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142590615098565b60405180910390fd5b600384601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461147b9190615232565b106114bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b290615078565b60405180910390fd5b83601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115069190615232565b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060028414156115625760018461155f9190615232565b93505b61156b84612e38565b505060016008819055505050565b6000600454905090565b61159461158e612cff565b82612f09565b6115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90614ff8565b60405180910390fd5b6115de838383612fe7565b505050565b60008060005b600454811015611674576115fc81612d71565b801561163b575061160c81611aa3565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b1561166157838214156116525780925050506116b0565b818061165d90615477565b9250505b808061166c90615477565b9150506115e9565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a790614f18565b60405180910390fd5b92915050565b600a5481565b6116c4612cff565b73ffffffffffffffffffffffffffffffffffffffff166116e2611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f90614f98565b60405180910390fd5b600960029054906101000a900460ff1615600960026101000a81548160ff021916908315150217905550565b61176c612cff565b73ffffffffffffffffffffffffffffffffffffffff1661178a611eaf565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790614f98565b60405180910390fd5b60026008541415611826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181d906150f8565b60405180910390fd5b60026008819055506000612710610a004761184191906152b9565b61184b9190615288565b90506000612710611d104761186091906152b9565b61186a9190615288565b9050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156118d4573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561193d573d6000803e3d6000fd5b5050506001600881905550565b6119658383836040518060200160405280600081525061220b565b505050565b6000611974611579565b82106119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90614d98565b60405180910390fd5b6000805b600454811015611a05576119cc81612d71565b156119f257838214156119e3578092505050611a08565b81806119ee90615477565b9250505b80806119fd90615477565b9150506119b9565b50505b919050565b611a15612cff565b73ffffffffffffffffffffffffffffffffffffffff16611a33611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090614f98565b60405180910390fd5b80600e9080519060200190611a9f9291906140f2565b5050565b6000806000611ab18461326a565b915091508192505050919050565b600b5481565b611acd612cff565b73ffffffffffffffffffffffffffffffffffffffff16611aeb611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614611b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3890614f98565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600960029054906101000a900460ff1681565b600960009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390614e58565b60405180910390fd5b6000805b600454811015611c9357611c3381612d71565b15611c8257611c4181611aa3565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c815781611c7e90615477565b91505b5b80611c8c90615477565b9050611c20565b5080915050919050565b611ca5612cff565b73ffffffffffffffffffffffffffffffffffffffff16611cc3611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614611d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1090614f98565b60405180910390fd5b611d2360006132fb565b565b600d5481565b611d33612cff565b73ffffffffffffffffffffffffffffffffffffffff16611d51611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614611da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9e90614f98565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611df3612cff565b73ffffffffffffffffffffffffffffffffffffffff16611e11611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614611e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5e90614f98565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611ee890615414565b80601f0160208091040260200160405190810160405280929190818152602001828054611f1490615414565b8015611f615780601f10611f3657610100808354040283529160200191611f61565b820191906000526020600020905b815481529060010190602001808311611f4457829003601f168201915b5050505050905090565b611f73612cff565b73ffffffffffffffffffffffffffffffffffffffff16611f91611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614611fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fde90614f98565b60405180910390fd5b80600d8190555050565b611ff9612cff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205e90614e98565b60405180910390fd5b8060066000612074612cff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612121612cff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121669190614cd6565b60405180910390a35050565b600960019054906101000a900460ff1681565b61218d612cff565b73ffffffffffffffffffffffffffffffffffffffff166121ab611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890614f98565b60405180910390fd5b80600a8190555050565b61221c612216612cff565b83612f09565b61225b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225290614ff8565b60405180910390fd5b612267848484846133c1565b50505050565b6010805461227a90615414565b80601f01602080910402602001604051908101604052809291908181526020018280546122a690615414565b80156122f35780601f106122c8576101008083540402835291602001916122f3565b820191906000526020600020905b8154815290600101906020018083116122d657829003601f168201915b505050505081565b606061230682612d71565b612345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233c90614fb8565b60405180910390fd5b60001515600960029054906101000a900460ff16151514156123f357600f805461236e90615414565b80601f016020809104026020016040519081016040528092919081815260200182805461239a90615414565b80156123e75780601f106123bc576101008083540402835291602001916123e7565b820191906000526020600020905b8154815290600101906020018083116123ca57829003601f168201915b5050505050905061251a565b600060116000848152602001908152602001600020805461241390615414565b80601f016020809104026020016040519081016040528092919081815260200182805461243f90615414565b801561248c5780601f106124615761010080835404028352916020019161248c565b820191906000526020600020905b81548152906001019060200180831161246f57829003601f168201915b50505050509050600061249d61341f565b90506000815114156124b357819250505061251a565b6000825111156124e85780826040516020016124d0929190614bf4565b6040516020818303038152906040529250505061251a565b806124f2856134b1565b601060405160200161250693929190614c18565b604051602081830303815290604052925050505b919050565b612527612cff565b73ffffffffffffffffffffffffffffffffffffffff16612545611eaf565b73ffffffffffffffffffffffffffffffffffffffff161461259b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259290614f98565b60405180910390fd5b80601090805190602001906125b19291906140f2565b5050565b6125bd612cff565b73ffffffffffffffffffffffffffffffffffffffff166125db611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614612631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262890614f98565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b612665612cff565b73ffffffffffffffffffffffffffffffffffffffff16612683611eaf565b73ffffffffffffffffffffffffffffffffffffffff16146126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d090614f98565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600260085414156127f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ee906150f8565b60405180910390fd5b6002600881905550601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061288657503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b6128c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bc90614e38565b60405180910390fd5b80600a54816128d2611579565b6128dc9190615232565b111561291d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291490614df8565b60405180910390fd5b600960009054906101000a900460ff1661296c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612963906150d8565b60405180910390fd5b81600d548161297a33611bab565b6129849190615232565b11156129c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bc90614ed8565b60405180910390fd5b34600b54846129d491906152b9565b1115612a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0c90615098565b60405180910390fd5b612a1e83612e38565b5050600160088190555050565b612a33612cff565b73ffffffffffffffffffffffffffffffffffffffff16612a51611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614612aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9e90614f98565b60405180910390fd5b80600f9080519060200190612abd9291906140f2565b5050565b612ac9612cff565b73ffffffffffffffffffffffffffffffffffffffff16612ae7611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614612b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3490614f98565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612b89612cff565b73ffffffffffffffffffffffffffffffffffffffff16612ba7611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614612bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf490614f98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6490614dd8565b60405180910390fd5b612c76816132fb565b50565b612c81612cff565b73ffffffffffffffffffffffffffffffffffffffff16612c9f611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614612cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cec90614f98565b60405180910390fd5b80600b8190555050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060045482109050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612df283611aa3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a5481612e44611579565b612e4e9190615232565b1015612e5f57612e5e3382613612565b5b50565b6000803033604051602001612e78929190614bc8565b6040516020818303038152906040528051906020012090506000612ead84612e9f84613630565b61366090919063ffffffff16565b90508073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161492505050919050565b6000612f1482612d71565b612f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4a90615058565b60405180910390fd5b6000612f5e83611aa3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612fcd57508373ffffffffffffffffffffffffffffffffffffffff16612fb584610d02565b73ffffffffffffffffffffffffffffffffffffffff16145b80612fde5750612fdd818561271d565b5b91505092915050565b600080612ff38361326a565b915091508473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305c90615038565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cc90614f58565b60405180910390fd5b6130e28585856001613687565b6130ed600084612d7f565b60006001846130fc9190615232565b905061311281600061368d90919063ffffffff16565b158015613120575060045481105b1561318c57856003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061318b8160006136e890919063ffffffff16565b5b846003600086815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508184146131fa576131f98460006136e890919063ffffffff16565b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132628686866001613745565b505050505050565b60008061327683612d71565b6132b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ac90615118565b60405180910390fd5b6132be8361374b565b90506003600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169150915091565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6133cc848484612fe7565b6133da848484600185613768565b613419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341090614eb8565b60405180910390fd5b50505050565b6060600e805461342e90615414565b80601f016020809104026020016040519081016040528092919081815260200182805461345a90615414565b80156134a75780601f1061347c576101008083540402835291602001916134a7565b820191906000526020600020905b81548152906001019060200180831161348a57829003601f168201915b5050505050905090565b606060008214156134f9576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061360d565b600082905060005b6000821461352b57808061351490615477565b915050600a826135249190615288565b9150613501565b60008167ffffffffffffffff8111156135475761354661560a565b5b6040519080825280601f01601f1916602001820160405280156135795781602001600182028036833780820191505090505b5090505b60008514613606576001826135929190615313565b9150600a856135a191906154ee565b60306135ad9190615232565b60f81b8183815181106135c3576135c26155db565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135ff9190615288565b945061357d565b8093505050505b919050565b61362c82826040518060200160405280600081525061393a565b5050565b6000816040516020016136439190614c49565b604051602081830303815290604052805190602001209050919050565b600080600061366f858561399e565b9150915061367c81613a21565b819250505092915050565b50505050565b600080600883901c9050600060ff84167f8000000000000000000000000000000000000000000000000000000000000000901c9050600081866000016000858152602001908152602001600020541614159250505092915050565b6000600882901c9050600060ff83167f8000000000000000000000000000000000000000000000000000000000000000901c9050808460000160008481526020019081526020016000206000828254179250508190555050505050565b50505050565b6000613761826000613bf690919063ffffffff16565b9050919050565b60006137898573ffffffffffffffffffffffffffffffffffffffff16613cf5565b1561392c576001905060008490505b83856137a49190615232565b811015613926578573ffffffffffffffffffffffffffffffffffffffff1663150b7a026137cf612cff565b8984876040518563ffffffff1660e01b81526004016137f19493929190614c8a565b602060405180830381600087803b15801561380b57600080fd5b505af192505050801561383c57506040513d601f19601f8201168201806040525081019061383991906144ce565b60015b6138bf573d806000811461386c576040519150601f19603f3d011682016040523d82523d6000602084013e613871565b606091505b506000815114156138b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ae90614eb8565b60405180910390fd5b805181602001fd5b828015613910575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b925050808061391e90615477565b915050613798565b50613931565b600190505b95945050505050565b6000600454905061394b8484613d18565b613959600085838686613768565b613998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398f90614eb8565b60405180910390fd5b50505050565b6000806041835114156139e05760008060006020860151925060408601519150606086015160001a90506139d487828585613ef9565b94509450505050613a1a565b604083511415613a11576000806020850151915060408501519050613a06868383614006565b935093505050613a1a565b60006002915091505b9250929050565b60006004811115613a3557613a3461557d565b5b816004811115613a4857613a4761557d565b5b1415613a5357613bf3565b60016004811115613a6757613a6661557d565b5b816004811115613a7a57613a7961557d565b5b1415613abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab290614d58565b60405180910390fd5b60026004811115613acf57613ace61557d565b5b816004811115613ae257613ae161557d565b5b1415613b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1a90614d78565b60405180910390fd5b60036004811115613b3757613b3661557d565b5b816004811115613b4a57613b4961557d565b5b1415613b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b8290614e78565b60405180910390fd5b600480811115613b9e57613b9d61557d565b5b816004811115613bb157613bb061557d565b5b1415613bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613be990614f38565b60405180910390fd5b5b50565b600080600883901c9050600060ff8416905060008560000160008481526020019081526020016000205490508160ff1881901c90506000811115613c5257613c3d81614065565b60ff168203600884901b179350505050613cef565b5b600115613ceb5760008311613c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c9490614fd8565b60405180910390fd5b8280600190039350508560000160008481526020019081526020016000205490506000811115613ce657613cd081614065565b60ff0360ff16600884901b179350505050613cef565b613c53565b5050505b92915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000600454905060008211613d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d5990615018565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc990614ef8565b60405180910390fd5b613ddf6000848385613687565b8160046000828254613df19190615232565b92505081905550826003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550613e5e8160006136e890919063ffffffff16565b613e6b6000848385613745565b60008190505b8282613e7d9190615232565b811015613ef357808473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48080613eeb90615477565b915050613e71565b50505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613f34576000600391509150613ffd565b601b8560ff1614158015613f4c5750601c8560ff1614155b15613f5e576000600491509150613ffd565b600060018787878760405160008152602001604052604051613f839493929190614cf1565b6020604051602081039080840390855afa158015613fa5573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613ff457600060019250925050613ffd565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6140499190615232565b905061405787828885613ef9565b935093505050935093915050565b60006040518061012001604052806101008152602001615eba610100913960f87e818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff6140ae856140d7565b02901c815181106140c2576140c16155db565b5b602001015160f81c60f81b60f81c9050919050565b60008082116140e557600080fd5b8160000382169050919050565b8280546140fe90615414565b90600052602060002090601f0160209004810192826141205760008555614167565b82601f1061413957805160ff1916838001178555614167565b82800160010185558215614167579182015b8281111561416657825182559160200191906001019061414b565b5b5090506141749190614178565b5090565b5b80821115614191576000816000905550600101614179565b5090565b60006141a86141a384615178565b615153565b9050828152602081018484840111156141c4576141c361563e565b5b6141cf8482856153d2565b509392505050565b60006141ea6141e5846151a9565b615153565b9050828152602081018484840111156142065761420561563e565b5b6142118482856153d2565b509392505050565b60008135905061422881615e5d565b92915050565b60008135905061423d81615e74565b92915050565b60008135905061425281615e8b565b92915050565b60008151905061426781615e8b565b92915050565b600082601f83011261428257614281615639565b5b8135614292848260208601614195565b91505092915050565b600082601f8301126142b0576142af615639565b5b81356142c08482602086016141d7565b91505092915050565b6000813590506142d881615ea2565b92915050565b6000602082840312156142f4576142f3615648565b5b600061430284828501614219565b91505092915050565b6000806040838503121561432257614321615648565b5b600061433085828601614219565b925050602061434185828601614219565b9150509250929050565b60008060006060848603121561436457614363615648565b5b600061437286828701614219565b935050602061438386828701614219565b9250506040614394868287016142c9565b9150509250925092565b600080600080608085870312156143b8576143b7615648565b5b60006143c687828801614219565b94505060206143d787828801614219565b93505060406143e8878288016142c9565b925050606085013567ffffffffffffffff81111561440957614408615643565b5b6144158782880161426d565b91505092959194509250565b6000806040838503121561443857614437615648565b5b600061444685828601614219565b92505060206144578582860161422e565b9150509250929050565b6000806040838503121561447857614477615648565b5b600061448685828601614219565b9250506020614497858286016142c9565b9150509250929050565b6000602082840312156144b7576144b6615648565b5b60006144c584828501614243565b91505092915050565b6000602082840312156144e4576144e3615648565b5b60006144f284828501614258565b91505092915050565b60006020828403121561451157614510615648565b5b600082013567ffffffffffffffff81111561452f5761452e615643565b5b61453b8482850161429b565b91505092915050565b60006020828403121561455a57614559615648565b5b6000614568848285016142c9565b91505092915050565b6000806040838503121561458857614587615648565b5b6000614596858286016142c9565b925050602083013567ffffffffffffffff8111156145b7576145b6615643565b5b6145c38582860161426d565b9150509250929050565b6145d681615347565b82525050565b6145ed6145e882615347565b6154c0565b82525050565b6145fc81615359565b82525050565b61460b81615365565b82525050565b61462261461d82615365565b6154d2565b82525050565b6000614633826151ef565b61463d8185615205565b935061464d8185602086016153e1565b6146568161564d565b840191505092915050565b600061466c826151fa565b6146768185615216565b93506146868185602086016153e1565b61468f8161564d565b840191505092915050565b60006146a5826151fa565b6146af8185615227565b93506146bf8185602086016153e1565b80840191505092915050565b600081546146d881615414565b6146e28186615227565b945060018216600081146146fd576001811461470e57614741565b60ff19831686528186019350614741565b614717856151da565b60005b838110156147395781548189015260018201915060208101905061471a565b838801955050505b50505092915050565b6000614757601883615216565b91506147628261566b565b602082019050919050565b600061477a601f83615216565b915061478582615694565b602082019050919050565b600061479d602583615216565b91506147a8826156bd565b604082019050919050565b60006147c0601c83615227565b91506147cb8261570c565b601c82019050919050565b60006147e3601383615216565b91506147ee82615735565b602082019050919050565b6000614806602683615216565b91506148118261575e565b604082019050919050565b6000614829601c83615216565b9150614834826157ad565b602082019050919050565b600061484c602f83615216565b9150614857826157d6565b604082019050919050565b600061486f601483615216565b915061487a82615825565b602082019050919050565b6000614892602d83615216565b915061489d8261584e565b604082019050919050565b60006148b5602283615216565b91506148c08261589d565b604082019050919050565b60006148d8601c83615216565b91506148e3826158ec565b602082019050919050565b60006148fb603583615216565b915061490682615915565b604082019050919050565b600061491e601d83615216565b915061492982615964565b602082019050919050565b6000614941602383615216565b915061494c8261598d565b604082019050919050565b6000614964602483615216565b915061496f826159dc565b604082019050919050565b6000614987602283615216565b915061499282615a2b565b604082019050919050565b60006149aa602783615216565b91506149b582615a7a565b604082019050919050565b60006149cd602483615216565b91506149d882615ac9565b604082019050919050565b60006149f0602083615216565b91506149fb82615b18565b602082019050919050565b6000614a13602f83615216565b9150614a1e82615b41565b604082019050919050565b6000614a36603483615216565b9150614a4182615b90565b604082019050919050565b6000614a59603483615216565b9150614a6482615bdf565b604082019050919050565b6000614a7c602583615216565b9150614a8782615c2e565b604082019050919050565b6000614a9f602c83615216565b9150614aaa82615c7d565b604082019050919050565b6000614ac2602f83615216565b9150614acd82615ccc565b604082019050919050565b6000614ae5600083615216565b9150614af082615d1b565b600082019050919050565b6000614b08601583615216565b9150614b1382615d1e565b602082019050919050565b6000614b2b603b83615216565b9150614b3682615d47565b604082019050919050565b6000614b4e602883615216565b9150614b5982615d96565b604082019050919050565b6000614b71601f83615216565b9150614b7c82615de5565b602082019050919050565b6000614b94602c83615216565b9150614b9f82615e0e565b604082019050919050565b614bb3816153bb565b82525050565b614bc2816153c5565b82525050565b6000614bd482856145dc565b601482019150614be482846145dc565b6014820191508190509392505050565b6000614c00828561469a565b9150614c0c828461469a565b91508190509392505050565b6000614c24828661469a565b9150614c30828561469a565b9150614c3c82846146cb565b9150819050949350505050565b6000614c54826147b3565b9150614c608284614611565b60208201915081905092915050565b6000602082019050614c8460008301846145cd565b92915050565b6000608082019050614c9f60008301876145cd565b614cac60208301866145cd565b614cb96040830185614baa565b8181036060830152614ccb8184614628565b905095945050505050565b6000602082019050614ceb60008301846145f3565b92915050565b6000608082019050614d066000830187614602565b614d136020830186614bb9565b614d206040830185614602565b614d2d6060830184614602565b95945050505050565b60006020820190508181036000830152614d508184614661565b905092915050565b60006020820190508181036000830152614d718161474a565b9050919050565b60006020820190508181036000830152614d918161476d565b9050919050565b60006020820190508181036000830152614db181614790565b9050919050565b60006020820190508181036000830152614dd1816147d6565b9050919050565b60006020820190508181036000830152614df1816147f9565b9050919050565b60006020820190508181036000830152614e118161481c565b9050919050565b60006020820190508181036000830152614e318161483f565b9050919050565b60006020820190508181036000830152614e5181614862565b9050919050565b60006020820190508181036000830152614e7181614885565b9050919050565b60006020820190508181036000830152614e91816148a8565b9050919050565b60006020820190508181036000830152614eb1816148cb565b9050919050565b60006020820190508181036000830152614ed1816148ee565b9050919050565b60006020820190508181036000830152614ef181614911565b9050919050565b60006020820190508181036000830152614f1181614934565b9050919050565b60006020820190508181036000830152614f3181614957565b9050919050565b60006020820190508181036000830152614f518161497a565b9050919050565b60006020820190508181036000830152614f718161499d565b9050919050565b60006020820190508181036000830152614f91816149c0565b9050919050565b60006020820190508181036000830152614fb1816149e3565b9050919050565b60006020820190508181036000830152614fd181614a06565b9050919050565b60006020820190508181036000830152614ff181614a29565b9050919050565b6000602082019050818103600083015261501181614a4c565b9050919050565b6000602082019050818103600083015261503181614a6f565b9050919050565b6000602082019050818103600083015261505181614a92565b9050919050565b6000602082019050818103600083015261507181614ab5565b9050919050565b6000602082019050818103600083015261509181614ad8565b9050919050565b600060208201905081810360008301526150b181614afb565b9050919050565b600060208201905081810360008301526150d181614b1e565b9050919050565b600060208201905081810360008301526150f181614b41565b9050919050565b6000602082019050818103600083015261511181614b64565b9050919050565b6000602082019050818103600083015261513181614b87565b9050919050565b600060208201905061514d6000830184614baa565b92915050565b600061515d61516e565b90506151698282615446565b919050565b6000604051905090565b600067ffffffffffffffff8211156151935761519261560a565b5b61519c8261564d565b9050602081019050919050565b600067ffffffffffffffff8211156151c4576151c361560a565b5b6151cd8261564d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061523d826153bb565b9150615248836153bb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561527d5761527c61551f565b5b828201905092915050565b6000615293826153bb565b915061529e836153bb565b9250826152ae576152ad61554e565b5b828204905092915050565b60006152c4826153bb565b91506152cf836153bb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153085761530761551f565b5b828202905092915050565b600061531e826153bb565b9150615329836153bb565b92508282101561533c5761533b61551f565b5b828203905092915050565b60006153528261539b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156153ff5780820151818401526020810190506153e4565b8381111561540e576000848401525b50505050565b6000600282049050600182168061542c57607f821691505b602082108114156154405761543f6155ac565b5b50919050565b61544f8261564d565b810181811067ffffffffffffffff8211171561546e5761546d61560a565b5b80604052505050565b6000615482826153bb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154b5576154b461551f565b5b600182019050919050565b60006154cb826154dc565b9050919050565b6000819050919050565b60006154e78261565e565b9050919050565b60006154f9826153bb565b9150615504836153bb565b9250826155145761551361554e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4552433732315073693a20676c6f62616c20696e646578206f7574206f66206260008201527f6f756e6473000000000000000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4d7573742062652077686974656c697374656400000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520776f756c6420657863656564206d617820737570706c7900000000600082015250565b7f4552433732315073693a20617070726f76656420717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f63616c6c6572206973206d6f742068756d616e21000000000000000000000000600082015250565b7f4552433732315073693a2062616c616e636520717565727920666f722074686560008201527f207a65726f206164647265737300000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732315073693a20617070726f766520746f2063616c6c657200000000600082015250565b7f4552433732315073693a207472616e7366657220746f206e6f6e20455243373260008201527f31526563656976657220696d706c656d656e7465720000000000000000000000602082015250565b7f53616c6520776f756c6420657863656564206d61782062616c616e6365000000600082015250565b7f4552433732315073693a206d696e7420746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732315073693a206f776e657220696e646578206f7574206f6620626f60008201527f756e647300000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732315073693a207472616e7366657220746f20746865207a65726f2060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b7f4552433732315073693a20617070726f76616c20746f2063757272656e74206f60008201527f776e657200000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4269744d6170733a205468652073657420626974206265666f7265207468652060008201527f696e64657820646f65736e27742065786973742e000000000000000000000000602082015250565b7f4552433732315073693a207472616e736665722063616c6c6572206973206e6f60008201527f74206f776e6572206e6f7220617070726f766564000000000000000000000000602082015250565b7f4552433732315073693a207175616e74697479206d757374206265206772656160008201527f7465722030000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732315073693a207472616e73666572206f6620746f6b656e2074686160008201527f74206973206e6f74206f776e0000000000000000000000000000000000000000602082015250565b7f4552433732315073693a206f70657261746f7220717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f4552433732315073693a20617070726f76652063616c6c6572206973206e6f7460008201527f206f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74204841525560008201527f4e41204d65746173000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4552433732315073693a206f776e657220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b615e6681615347565b8114615e7157600080fd5b50565b615e7d81615359565b8114615e8857600080fd5b50565b615e948161536f565b8114615e9f57600080fd5b50565b615eab816153bb565b8114615eb657600080fd5b5056fe0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8a2646970667358221220dcd5f269875e3cf4cdcdeb7a2c1e9a4ddbcc8e7df21605019bb05cbfcd7d8e6e64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c80637080d6fc1161015a578063b88d4fde116100c1578063e985e9c51161007a578063e985e9c514610964578063ed8d3012146109a1578063f2c4ce1e146109bd578063f2f886bc146109e6578063f2fde38b14610a0f578063f4a0a52814610a3857610288565b8063b88d4fde1461086a578063c668286214610893578063c87b56dd146108be578063da3ef23f146108fb578063de8b51e114610924578063e28a55b71461093b57610288565b80638da5cb5b116101135780638da5cb5b1461076e57806395d89b41146107995780639d51d9b7146107c4578063a22cb465146107ed578063ab35c64b14610816578063af1f09211461084157610288565b80637080d6fc1461067257806370a082311461069d578063715018a6146106da57806373ad468a146106f15780637cb698631461071c578063839949e31461074557610288565b806323b872dd116101fe5780634f6ccce7116101b75780634f6ccce71461055057806355f804b31461058d5780636352211e146105b65780636817c76c146105f35780636c19e7831461061e5780636ebeac851461064757610288565b806323b872dd146104685780632f745c591461049157806332cb6b0c146104ce5780633b84d9c6146104f95780633ccfd60b1461051057806342842e0e1461052757610288565b8063095ea7b311610250578063095ea7b31461039a5780630bb4a004146103c35780630e97a43e146103da5780630ea899ab1461040557806310deb9ee1461042157806318160ddd1461043d57610288565b806301b77b511461028d57806301ffc9a7146102ca57806306fdde0314610307578063081812fc14610332578063081c8c441461036f575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af91906142de565b610a61565b6040516102c19190615138565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec91906144a1565b610b26565b6040516102fe9190614cd6565b60405180910390f35b34801561031357600080fd5b5061031c610c70565b6040516103299190614d36565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190614544565b610d02565b6040516103669190614c6f565b60405180910390f35b34801561037b57600080fd5b50610384610d87565b6040516103919190614d36565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190614461565b610e15565b005b3480156103cf57600080fd5b506103d8610f2d565b005b3480156103e657600080fd5b506103ef610fd5565b6040516103fc9190615138565b60405180910390f35b61041f600480360381019061041a9190614544565b610fdb565b005b61043b60048036038101906104369190614571565b611182565b005b34801561044957600080fd5b50610452611579565b60405161045f9190615138565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a919061434b565b611583565b005b34801561049d57600080fd5b506104b860048036038101906104b39190614461565b6115e3565b6040516104c59190615138565b60405180910390f35b3480156104da57600080fd5b506104e36116b6565b6040516104f09190615138565b60405180910390f35b34801561050557600080fd5b5061050e6116bc565b005b34801561051c57600080fd5b50610525611764565b005b34801561053357600080fd5b5061054e6004803603810190610549919061434b565b61194a565b005b34801561055c57600080fd5b5061057760048036038101906105729190614544565b61196a565b6040516105849190615138565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906144fb565b611a0d565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190614544565b611aa3565b6040516105ea9190614c6f565b60405180910390f35b3480156105ff57600080fd5b50610608611abf565b6040516106159190615138565b60405180910390f35b34801561062a57600080fd5b50610645600480360381019061064091906142de565b611ac5565b005b34801561065357600080fd5b5061065c611b85565b6040516106699190614cd6565b60405180910390f35b34801561067e57600080fd5b50610687611b98565b6040516106949190614cd6565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf91906142de565b611bab565b6040516106d19190615138565b60405180910390f35b3480156106e657600080fd5b506106ef611c9d565b005b3480156106fd57600080fd5b50610706611d25565b6040516107139190615138565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e91906142de565b611d2b565b005b34801561075157600080fd5b5061076c60048036038101906107679190614461565b611deb565b005b34801561077a57600080fd5b50610783611eaf565b6040516107909190614c6f565b60405180910390f35b3480156107a557600080fd5b506107ae611ed9565b6040516107bb9190614d36565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e69190614544565b611f6b565b005b3480156107f957600080fd5b50610814600480360381019061080f9190614421565b611ff1565b005b34801561082257600080fd5b5061082b612172565b6040516108389190614cd6565b60405180910390f35b34801561084d57600080fd5b5061086860048036038101906108639190614544565b612185565b005b34801561087657600080fd5b50610891600480360381019061088c919061439e565b61220b565b005b34801561089f57600080fd5b506108a861226d565b6040516108b59190614d36565b60405180910390f35b3480156108ca57600080fd5b506108e560048036038101906108e09190614544565b6122fb565b6040516108f29190614d36565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d91906144fb565b61251f565b005b34801561093057600080fd5b506109396125b5565b005b34801561094757600080fd5b50610962600480360381019061095d91906142de565b61265d565b005b34801561097057600080fd5b5061098b6004803603810190610986919061430b565b61271d565b6040516109989190614cd6565b60405180910390f35b6109bb60048036038101906109b69190614544565b6127b1565b005b3480156109c957600080fd5b506109e460048036038101906109df91906144fb565b612a2b565b005b3480156109f257600080fd5b50610a0d6004803603810190610a0891906142de565b612ac1565b005b348015610a1b57600080fd5b50610a366004803603810190610a3191906142de565b612b81565b005b348015610a4457600080fd5b50610a5f6004803603810190610a5a9190614544565b612c79565b005b6000610a6b612cff565b73ffffffffffffffffffffffffffffffffffffffff16610a89611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690614f98565b60405180910390fd5b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bf157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c5957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c695750610c6882612d07565b5b9050919050565b606060018054610c7f90615414565b80601f0160208091040260200160405190810160405280929190818152602001828054610cab90615414565b8015610cf85780601f10610ccd57610100808354040283529160200191610cf8565b820191906000526020600020905b815481529060010190602001808311610cdb57829003601f168201915b5050505050905090565b6000610d0d82612d71565b610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390614e18565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f8054610d9490615414565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc090615414565b8015610e0d5780601f10610de257610100808354040283529160200191610e0d565b820191906000526020600020905b815481529060010190602001808311610df057829003601f168201915b505050505081565b6000610e2082611aa3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8890614f78565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eb0612cff565b73ffffffffffffffffffffffffffffffffffffffff161480610edf5750610ede81610ed9612cff565b61271d565b5b610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f15906150b8565b60405180910390fd5b610f288383612d7f565b505050565b610f35612cff565b73ffffffffffffffffffffffffffffffffffffffff16610f53611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090614f98565b60405180910390fd5b600960019054906101000a900460ff1615600960016101000a81548160ff021916908315150217905550565b600c5481565b610fe3612cff565b73ffffffffffffffffffffffffffffffffffffffff16611001611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90614f98565b60405180910390fd5b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806110de57503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b61111d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111490614e38565b60405180910390fd5b80600a548161112a611579565b6111349190615232565b1115611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c90614df8565b60405180910390fd5b61117e82612e38565b5050565b600260085414156111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf906150f8565b60405180910390fd5b6002600881905550601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061125757503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90614e38565b60405180910390fd5b81600a54816112a3611579565b6112ad9190615232565b11156112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590614df8565b60405180910390fd5b82600d54816112fc33611bab565b6113069190615232565b1115611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90614ed8565b60405180910390fd5b600960019054906101000a900460ff16611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d906150d8565b60405180910390fd5b61139f83612e62565b6113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590614db8565b60405180910390fd5b34600c54856113ed91906152b9565b111561142e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142590615098565b60405180910390fd5b600384601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461147b9190615232565b106114bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b290615078565b60405180910390fd5b83601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115069190615232565b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060028414156115625760018461155f9190615232565b93505b61156b84612e38565b505060016008819055505050565b6000600454905090565b61159461158e612cff565b82612f09565b6115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90614ff8565b60405180910390fd5b6115de838383612fe7565b505050565b60008060005b600454811015611674576115fc81612d71565b801561163b575061160c81611aa3565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b1561166157838214156116525780925050506116b0565b818061165d90615477565b9250505b808061166c90615477565b9150506115e9565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a790614f18565b60405180910390fd5b92915050565b600a5481565b6116c4612cff565b73ffffffffffffffffffffffffffffffffffffffff166116e2611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f90614f98565b60405180910390fd5b600960029054906101000a900460ff1615600960026101000a81548160ff021916908315150217905550565b61176c612cff565b73ffffffffffffffffffffffffffffffffffffffff1661178a611eaf565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790614f98565b60405180910390fd5b60026008541415611826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181d906150f8565b60405180910390fd5b60026008819055506000612710610a004761184191906152b9565b61184b9190615288565b90506000612710611d104761186091906152b9565b61186a9190615288565b9050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156118d4573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561193d573d6000803e3d6000fd5b5050506001600881905550565b6119658383836040518060200160405280600081525061220b565b505050565b6000611974611579565b82106119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90614d98565b60405180910390fd5b6000805b600454811015611a05576119cc81612d71565b156119f257838214156119e3578092505050611a08565b81806119ee90615477565b9250505b80806119fd90615477565b9150506119b9565b50505b919050565b611a15612cff565b73ffffffffffffffffffffffffffffffffffffffff16611a33611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090614f98565b60405180910390fd5b80600e9080519060200190611a9f9291906140f2565b5050565b6000806000611ab18461326a565b915091508192505050919050565b600b5481565b611acd612cff565b73ffffffffffffffffffffffffffffffffffffffff16611aeb611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614611b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3890614f98565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600960029054906101000a900460ff1681565b600960009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390614e58565b60405180910390fd5b6000805b600454811015611c9357611c3381612d71565b15611c8257611c4181611aa3565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c815781611c7e90615477565b91505b5b80611c8c90615477565b9050611c20565b5080915050919050565b611ca5612cff565b73ffffffffffffffffffffffffffffffffffffffff16611cc3611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614611d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1090614f98565b60405180910390fd5b611d2360006132fb565b565b600d5481565b611d33612cff565b73ffffffffffffffffffffffffffffffffffffffff16611d51611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614611da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9e90614f98565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611df3612cff565b73ffffffffffffffffffffffffffffffffffffffff16611e11611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614611e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5e90614f98565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611ee890615414565b80601f0160208091040260200160405190810160405280929190818152602001828054611f1490615414565b8015611f615780601f10611f3657610100808354040283529160200191611f61565b820191906000526020600020905b815481529060010190602001808311611f4457829003601f168201915b5050505050905090565b611f73612cff565b73ffffffffffffffffffffffffffffffffffffffff16611f91611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614611fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fde90614f98565b60405180910390fd5b80600d8190555050565b611ff9612cff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205e90614e98565b60405180910390fd5b8060066000612074612cff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612121612cff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121669190614cd6565b60405180910390a35050565b600960019054906101000a900460ff1681565b61218d612cff565b73ffffffffffffffffffffffffffffffffffffffff166121ab611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890614f98565b60405180910390fd5b80600a8190555050565b61221c612216612cff565b83612f09565b61225b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225290614ff8565b60405180910390fd5b612267848484846133c1565b50505050565b6010805461227a90615414565b80601f01602080910402602001604051908101604052809291908181526020018280546122a690615414565b80156122f35780601f106122c8576101008083540402835291602001916122f3565b820191906000526020600020905b8154815290600101906020018083116122d657829003601f168201915b505050505081565b606061230682612d71565b612345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233c90614fb8565b60405180910390fd5b60001515600960029054906101000a900460ff16151514156123f357600f805461236e90615414565b80601f016020809104026020016040519081016040528092919081815260200182805461239a90615414565b80156123e75780601f106123bc576101008083540402835291602001916123e7565b820191906000526020600020905b8154815290600101906020018083116123ca57829003601f168201915b5050505050905061251a565b600060116000848152602001908152602001600020805461241390615414565b80601f016020809104026020016040519081016040528092919081815260200182805461243f90615414565b801561248c5780601f106124615761010080835404028352916020019161248c565b820191906000526020600020905b81548152906001019060200180831161246f57829003601f168201915b50505050509050600061249d61341f565b90506000815114156124b357819250505061251a565b6000825111156124e85780826040516020016124d0929190614bf4565b6040516020818303038152906040529250505061251a565b806124f2856134b1565b601060405160200161250693929190614c18565b604051602081830303815290604052925050505b919050565b612527612cff565b73ffffffffffffffffffffffffffffffffffffffff16612545611eaf565b73ffffffffffffffffffffffffffffffffffffffff161461259b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259290614f98565b60405180910390fd5b80601090805190602001906125b19291906140f2565b5050565b6125bd612cff565b73ffffffffffffffffffffffffffffffffffffffff166125db611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614612631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262890614f98565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b612665612cff565b73ffffffffffffffffffffffffffffffffffffffff16612683611eaf565b73ffffffffffffffffffffffffffffffffffffffff16146126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d090614f98565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600260085414156127f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ee906150f8565b60405180910390fd5b6002600881905550601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061288657503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b6128c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bc90614e38565b60405180910390fd5b80600a54816128d2611579565b6128dc9190615232565b111561291d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291490614df8565b60405180910390fd5b600960009054906101000a900460ff1661296c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612963906150d8565b60405180910390fd5b81600d548161297a33611bab565b6129849190615232565b11156129c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bc90614ed8565b60405180910390fd5b34600b54846129d491906152b9565b1115612a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0c90615098565b60405180910390fd5b612a1e83612e38565b5050600160088190555050565b612a33612cff565b73ffffffffffffffffffffffffffffffffffffffff16612a51611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614612aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9e90614f98565b60405180910390fd5b80600f9080519060200190612abd9291906140f2565b5050565b612ac9612cff565b73ffffffffffffffffffffffffffffffffffffffff16612ae7611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614612b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3490614f98565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612b89612cff565b73ffffffffffffffffffffffffffffffffffffffff16612ba7611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614612bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf490614f98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6490614dd8565b60405180910390fd5b612c76816132fb565b50565b612c81612cff565b73ffffffffffffffffffffffffffffffffffffffff16612c9f611eaf565b73ffffffffffffffffffffffffffffffffffffffff1614612cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cec90614f98565b60405180910390fd5b80600b8190555050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060045482109050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612df283611aa3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a5481612e44611579565b612e4e9190615232565b1015612e5f57612e5e3382613612565b5b50565b6000803033604051602001612e78929190614bc8565b6040516020818303038152906040528051906020012090506000612ead84612e9f84613630565b61366090919063ffffffff16565b90508073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161492505050919050565b6000612f1482612d71565b612f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4a90615058565b60405180910390fd5b6000612f5e83611aa3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612fcd57508373ffffffffffffffffffffffffffffffffffffffff16612fb584610d02565b73ffffffffffffffffffffffffffffffffffffffff16145b80612fde5750612fdd818561271d565b5b91505092915050565b600080612ff38361326a565b915091508473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305c90615038565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cc90614f58565b60405180910390fd5b6130e28585856001613687565b6130ed600084612d7f565b60006001846130fc9190615232565b905061311281600061368d90919063ffffffff16565b158015613120575060045481105b1561318c57856003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061318b8160006136e890919063ffffffff16565b5b846003600086815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508184146131fa576131f98460006136e890919063ffffffff16565b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132628686866001613745565b505050505050565b60008061327683612d71565b6132b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ac90615118565b60405180910390fd5b6132be8361374b565b90506003600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169150915091565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6133cc848484612fe7565b6133da848484600185613768565b613419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341090614eb8565b60405180910390fd5b50505050565b6060600e805461342e90615414565b80601f016020809104026020016040519081016040528092919081815260200182805461345a90615414565b80156134a75780601f1061347c576101008083540402835291602001916134a7565b820191906000526020600020905b81548152906001019060200180831161348a57829003601f168201915b5050505050905090565b606060008214156134f9576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061360d565b600082905060005b6000821461352b57808061351490615477565b915050600a826135249190615288565b9150613501565b60008167ffffffffffffffff8111156135475761354661560a565b5b6040519080825280601f01601f1916602001820160405280156135795781602001600182028036833780820191505090505b5090505b60008514613606576001826135929190615313565b9150600a856135a191906154ee565b60306135ad9190615232565b60f81b8183815181106135c3576135c26155db565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135ff9190615288565b945061357d565b8093505050505b919050565b61362c82826040518060200160405280600081525061393a565b5050565b6000816040516020016136439190614c49565b604051602081830303815290604052805190602001209050919050565b600080600061366f858561399e565b9150915061367c81613a21565b819250505092915050565b50505050565b600080600883901c9050600060ff84167f8000000000000000000000000000000000000000000000000000000000000000901c9050600081866000016000858152602001908152602001600020541614159250505092915050565b6000600882901c9050600060ff83167f8000000000000000000000000000000000000000000000000000000000000000901c9050808460000160008481526020019081526020016000206000828254179250508190555050505050565b50505050565b6000613761826000613bf690919063ffffffff16565b9050919050565b60006137898573ffffffffffffffffffffffffffffffffffffffff16613cf5565b1561392c576001905060008490505b83856137a49190615232565b811015613926578573ffffffffffffffffffffffffffffffffffffffff1663150b7a026137cf612cff565b8984876040518563ffffffff1660e01b81526004016137f19493929190614c8a565b602060405180830381600087803b15801561380b57600080fd5b505af192505050801561383c57506040513d601f19601f8201168201806040525081019061383991906144ce565b60015b6138bf573d806000811461386c576040519150601f19603f3d011682016040523d82523d6000602084013e613871565b606091505b506000815114156138b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ae90614eb8565b60405180910390fd5b805181602001fd5b828015613910575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b925050808061391e90615477565b915050613798565b50613931565b600190505b95945050505050565b6000600454905061394b8484613d18565b613959600085838686613768565b613998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398f90614eb8565b60405180910390fd5b50505050565b6000806041835114156139e05760008060006020860151925060408601519150606086015160001a90506139d487828585613ef9565b94509450505050613a1a565b604083511415613a11576000806020850151915060408501519050613a06868383614006565b935093505050613a1a565b60006002915091505b9250929050565b60006004811115613a3557613a3461557d565b5b816004811115613a4857613a4761557d565b5b1415613a5357613bf3565b60016004811115613a6757613a6661557d565b5b816004811115613a7a57613a7961557d565b5b1415613abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab290614d58565b60405180910390fd5b60026004811115613acf57613ace61557d565b5b816004811115613ae257613ae161557d565b5b1415613b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1a90614d78565b60405180910390fd5b60036004811115613b3757613b3661557d565b5b816004811115613b4a57613b4961557d565b5b1415613b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b8290614e78565b60405180910390fd5b600480811115613b9e57613b9d61557d565b5b816004811115613bb157613bb061557d565b5b1415613bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613be990614f38565b60405180910390fd5b5b50565b600080600883901c9050600060ff8416905060008560000160008481526020019081526020016000205490508160ff1881901c90506000811115613c5257613c3d81614065565b60ff168203600884901b179350505050613cef565b5b600115613ceb5760008311613c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c9490614fd8565b60405180910390fd5b8280600190039350508560000160008481526020019081526020016000205490506000811115613ce657613cd081614065565b60ff0360ff16600884901b179350505050613cef565b613c53565b5050505b92915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000600454905060008211613d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d5990615018565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc990614ef8565b60405180910390fd5b613ddf6000848385613687565b8160046000828254613df19190615232565b92505081905550826003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550613e5e8160006136e890919063ffffffff16565b613e6b6000848385613745565b60008190505b8282613e7d9190615232565b811015613ef357808473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48080613eeb90615477565b915050613e71565b50505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613f34576000600391509150613ffd565b601b8560ff1614158015613f4c5750601c8560ff1614155b15613f5e576000600491509150613ffd565b600060018787878760405160008152602001604052604051613f839493929190614cf1565b6020604051602081039080840390855afa158015613fa5573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613ff457600060019250925050613ffd565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6140499190615232565b905061405787828885613ef9565b935093505050935093915050565b60006040518061012001604052806101008152602001615eba610100913960f87e818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff6140ae856140d7565b02901c815181106140c2576140c16155db565b5b602001015160f81c60f81b60f81c9050919050565b60008082116140e557600080fd5b8160000382169050919050565b8280546140fe90615414565b90600052602060002090601f0160209004810192826141205760008555614167565b82601f1061413957805160ff1916838001178555614167565b82800160010185558215614167579182015b8281111561416657825182559160200191906001019061414b565b5b5090506141749190614178565b5090565b5b80821115614191576000816000905550600101614179565b5090565b60006141a86141a384615178565b615153565b9050828152602081018484840111156141c4576141c361563e565b5b6141cf8482856153d2565b509392505050565b60006141ea6141e5846151a9565b615153565b9050828152602081018484840111156142065761420561563e565b5b6142118482856153d2565b509392505050565b60008135905061422881615e5d565b92915050565b60008135905061423d81615e74565b92915050565b60008135905061425281615e8b565b92915050565b60008151905061426781615e8b565b92915050565b600082601f83011261428257614281615639565b5b8135614292848260208601614195565b91505092915050565b600082601f8301126142b0576142af615639565b5b81356142c08482602086016141d7565b91505092915050565b6000813590506142d881615ea2565b92915050565b6000602082840312156142f4576142f3615648565b5b600061430284828501614219565b91505092915050565b6000806040838503121561432257614321615648565b5b600061433085828601614219565b925050602061434185828601614219565b9150509250929050565b60008060006060848603121561436457614363615648565b5b600061437286828701614219565b935050602061438386828701614219565b9250506040614394868287016142c9565b9150509250925092565b600080600080608085870312156143b8576143b7615648565b5b60006143c687828801614219565b94505060206143d787828801614219565b93505060406143e8878288016142c9565b925050606085013567ffffffffffffffff81111561440957614408615643565b5b6144158782880161426d565b91505092959194509250565b6000806040838503121561443857614437615648565b5b600061444685828601614219565b92505060206144578582860161422e565b9150509250929050565b6000806040838503121561447857614477615648565b5b600061448685828601614219565b9250506020614497858286016142c9565b9150509250929050565b6000602082840312156144b7576144b6615648565b5b60006144c584828501614243565b91505092915050565b6000602082840312156144e4576144e3615648565b5b60006144f284828501614258565b91505092915050565b60006020828403121561451157614510615648565b5b600082013567ffffffffffffffff81111561452f5761452e615643565b5b61453b8482850161429b565b91505092915050565b60006020828403121561455a57614559615648565b5b6000614568848285016142c9565b91505092915050565b6000806040838503121561458857614587615648565b5b6000614596858286016142c9565b925050602083013567ffffffffffffffff8111156145b7576145b6615643565b5b6145c38582860161426d565b9150509250929050565b6145d681615347565b82525050565b6145ed6145e882615347565b6154c0565b82525050565b6145fc81615359565b82525050565b61460b81615365565b82525050565b61462261461d82615365565b6154d2565b82525050565b6000614633826151ef565b61463d8185615205565b935061464d8185602086016153e1565b6146568161564d565b840191505092915050565b600061466c826151fa565b6146768185615216565b93506146868185602086016153e1565b61468f8161564d565b840191505092915050565b60006146a5826151fa565b6146af8185615227565b93506146bf8185602086016153e1565b80840191505092915050565b600081546146d881615414565b6146e28186615227565b945060018216600081146146fd576001811461470e57614741565b60ff19831686528186019350614741565b614717856151da565b60005b838110156147395781548189015260018201915060208101905061471a565b838801955050505b50505092915050565b6000614757601883615216565b91506147628261566b565b602082019050919050565b600061477a601f83615216565b915061478582615694565b602082019050919050565b600061479d602583615216565b91506147a8826156bd565b604082019050919050565b60006147c0601c83615227565b91506147cb8261570c565b601c82019050919050565b60006147e3601383615216565b91506147ee82615735565b602082019050919050565b6000614806602683615216565b91506148118261575e565b604082019050919050565b6000614829601c83615216565b9150614834826157ad565b602082019050919050565b600061484c602f83615216565b9150614857826157d6565b604082019050919050565b600061486f601483615216565b915061487a82615825565b602082019050919050565b6000614892602d83615216565b915061489d8261584e565b604082019050919050565b60006148b5602283615216565b91506148c08261589d565b604082019050919050565b60006148d8601c83615216565b91506148e3826158ec565b602082019050919050565b60006148fb603583615216565b915061490682615915565b604082019050919050565b600061491e601d83615216565b915061492982615964565b602082019050919050565b6000614941602383615216565b915061494c8261598d565b604082019050919050565b6000614964602483615216565b915061496f826159dc565b604082019050919050565b6000614987602283615216565b915061499282615a2b565b604082019050919050565b60006149aa602783615216565b91506149b582615a7a565b604082019050919050565b60006149cd602483615216565b91506149d882615ac9565b604082019050919050565b60006149f0602083615216565b91506149fb82615b18565b602082019050919050565b6000614a13602f83615216565b9150614a1e82615b41565b604082019050919050565b6000614a36603483615216565b9150614a4182615b90565b604082019050919050565b6000614a59603483615216565b9150614a6482615bdf565b604082019050919050565b6000614a7c602583615216565b9150614a8782615c2e565b604082019050919050565b6000614a9f602c83615216565b9150614aaa82615c7d565b604082019050919050565b6000614ac2602f83615216565b9150614acd82615ccc565b604082019050919050565b6000614ae5600083615216565b9150614af082615d1b565b600082019050919050565b6000614b08601583615216565b9150614b1382615d1e565b602082019050919050565b6000614b2b603b83615216565b9150614b3682615d47565b604082019050919050565b6000614b4e602883615216565b9150614b5982615d96565b604082019050919050565b6000614b71601f83615216565b9150614b7c82615de5565b602082019050919050565b6000614b94602c83615216565b9150614b9f82615e0e565b604082019050919050565b614bb3816153bb565b82525050565b614bc2816153c5565b82525050565b6000614bd482856145dc565b601482019150614be482846145dc565b6014820191508190509392505050565b6000614c00828561469a565b9150614c0c828461469a565b91508190509392505050565b6000614c24828661469a565b9150614c30828561469a565b9150614c3c82846146cb565b9150819050949350505050565b6000614c54826147b3565b9150614c608284614611565b60208201915081905092915050565b6000602082019050614c8460008301846145cd565b92915050565b6000608082019050614c9f60008301876145cd565b614cac60208301866145cd565b614cb96040830185614baa565b8181036060830152614ccb8184614628565b905095945050505050565b6000602082019050614ceb60008301846145f3565b92915050565b6000608082019050614d066000830187614602565b614d136020830186614bb9565b614d206040830185614602565b614d2d6060830184614602565b95945050505050565b60006020820190508181036000830152614d508184614661565b905092915050565b60006020820190508181036000830152614d718161474a565b9050919050565b60006020820190508181036000830152614d918161476d565b9050919050565b60006020820190508181036000830152614db181614790565b9050919050565b60006020820190508181036000830152614dd1816147d6565b9050919050565b60006020820190508181036000830152614df1816147f9565b9050919050565b60006020820190508181036000830152614e118161481c565b9050919050565b60006020820190508181036000830152614e318161483f565b9050919050565b60006020820190508181036000830152614e5181614862565b9050919050565b60006020820190508181036000830152614e7181614885565b9050919050565b60006020820190508181036000830152614e91816148a8565b9050919050565b60006020820190508181036000830152614eb1816148cb565b9050919050565b60006020820190508181036000830152614ed1816148ee565b9050919050565b60006020820190508181036000830152614ef181614911565b9050919050565b60006020820190508181036000830152614f1181614934565b9050919050565b60006020820190508181036000830152614f3181614957565b9050919050565b60006020820190508181036000830152614f518161497a565b9050919050565b60006020820190508181036000830152614f718161499d565b9050919050565b60006020820190508181036000830152614f91816149c0565b9050919050565b60006020820190508181036000830152614fb1816149e3565b9050919050565b60006020820190508181036000830152614fd181614a06565b9050919050565b60006020820190508181036000830152614ff181614a29565b9050919050565b6000602082019050818103600083015261501181614a4c565b9050919050565b6000602082019050818103600083015261503181614a6f565b9050919050565b6000602082019050818103600083015261505181614a92565b9050919050565b6000602082019050818103600083015261507181614ab5565b9050919050565b6000602082019050818103600083015261509181614ad8565b9050919050565b600060208201905081810360008301526150b181614afb565b9050919050565b600060208201905081810360008301526150d181614b1e565b9050919050565b600060208201905081810360008301526150f181614b41565b9050919050565b6000602082019050818103600083015261511181614b64565b9050919050565b6000602082019050818103600083015261513181614b87565b9050919050565b600060208201905061514d6000830184614baa565b92915050565b600061515d61516e565b90506151698282615446565b919050565b6000604051905090565b600067ffffffffffffffff8211156151935761519261560a565b5b61519c8261564d565b9050602081019050919050565b600067ffffffffffffffff8211156151c4576151c361560a565b5b6151cd8261564d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061523d826153bb565b9150615248836153bb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561527d5761527c61551f565b5b828201905092915050565b6000615293826153bb565b915061529e836153bb565b9250826152ae576152ad61554e565b5b828204905092915050565b60006152c4826153bb565b91506152cf836153bb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153085761530761551f565b5b828202905092915050565b600061531e826153bb565b9150615329836153bb565b92508282101561533c5761533b61551f565b5b828203905092915050565b60006153528261539b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156153ff5780820151818401526020810190506153e4565b8381111561540e576000848401525b50505050565b6000600282049050600182168061542c57607f821691505b602082108114156154405761543f6155ac565b5b50919050565b61544f8261564d565b810181811067ffffffffffffffff8211171561546e5761546d61560a565b5b80604052505050565b6000615482826153bb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154b5576154b461551f565b5b600182019050919050565b60006154cb826154dc565b9050919050565b6000819050919050565b60006154e78261565e565b9050919050565b60006154f9826153bb565b9150615504836153bb565b9250826155145761551361554e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4552433732315073693a20676c6f62616c20696e646578206f7574206f66206260008201527f6f756e6473000000000000000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4d7573742062652077686974656c697374656400000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520776f756c6420657863656564206d617820737570706c7900000000600082015250565b7f4552433732315073693a20617070726f76656420717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f63616c6c6572206973206d6f742068756d616e21000000000000000000000000600082015250565b7f4552433732315073693a2062616c616e636520717565727920666f722074686560008201527f207a65726f206164647265737300000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732315073693a20617070726f766520746f2063616c6c657200000000600082015250565b7f4552433732315073693a207472616e7366657220746f206e6f6e20455243373260008201527f31526563656976657220696d706c656d656e7465720000000000000000000000602082015250565b7f53616c6520776f756c6420657863656564206d61782062616c616e6365000000600082015250565b7f4552433732315073693a206d696e7420746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732315073693a206f776e657220696e646578206f7574206f6620626f60008201527f756e647300000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732315073693a207472616e7366657220746f20746865207a65726f2060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b7f4552433732315073693a20617070726f76616c20746f2063757272656e74206f60008201527f776e657200000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4269744d6170733a205468652073657420626974206265666f7265207468652060008201527f696e64657820646f65736e27742065786973742e000000000000000000000000602082015250565b7f4552433732315073693a207472616e736665722063616c6c6572206973206e6f60008201527f74206f776e6572206e6f7220617070726f766564000000000000000000000000602082015250565b7f4552433732315073693a207175616e74697479206d757374206265206772656160008201527f7465722030000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732315073693a207472616e73666572206f6620746f6b656e2074686160008201527f74206973206e6f74206f776e0000000000000000000000000000000000000000602082015250565b7f4552433732315073693a206f70657261746f7220717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f4552433732315073693a20617070726f76652063616c6c6572206973206e6f7460008201527f206f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74204841525560008201527f4e41204d65746173000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4552433732315073693a206f776e657220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b615e6681615347565b8114615e7157600080fd5b50565b615e7d81615359565b8114615e8857600080fd5b50565b615e948161536f565b8114615e9f57600080fd5b50565b615eab816153bb565b8114615eb657600080fd5b5056fe0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8a2646970667358221220dcd5f269875e3cf4cdcdeb7a2c1e9a4ddbcc8e7df21605019bb05cbfcd7d8e6e64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string):
Arg [1] : initNotRevealedUri (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


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.