ETH Price: $2,390.92 (+0.79%)

Token

PAYESA (IBZPAYESA)
 

Overview

Max Total Supply

62 IBZPAYESA

Holders

11

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
Ibiza Token: Deployer 2
Balance
1 IBZPAYESA
0xc105ed52b5ab23fbb96535b4844ed68f6177e15f
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:
PayesaNFT

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

/**
 * @title PayesaNFT
 */
contract PayesaNFT is ERC721, Ownable {
    using Counters for Counters.Counter;
    mapping(address => bool) private _minters;
    bool public whitelist_active = false;
    bool public sale_active = false;
    Counters.Counter private _tokenIdCounter;
    uint256 public minting_price = 0.05 ether;
    uint256 public HARD_CAP = 2000;
    uint256 public SOFT_CAP = 1800;
    uint256 public MAX_AMOUNT = 5;
    bytes32 public MERKLE_ROOT;
    bool public is_collection_locked = false;
    string public contract_base_uri = "https://0rexd186dj.execute-api.us-east-1.amazonaws.com/dev/generative/payesa/";
    address public vault_address;

    constructor(string memory _name, string memory _ticker)
        ERC721(_name, _ticker)
    {}

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

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

    function tokenURI(uint256 _tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        string memory _tknId = Strings.toString(_tokenId);
        return string(abi.encodePacked(contract_base_uri, _tknId, ".json"));
    }

    function tokensOfOwner(address _owner)
        external
        view
        returns (uint256[] memory ownerTokens)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 totalTkns = totalSupply();
            uint256 resultIndex = 0;
            uint256 tnkId;

            for (tnkId = 1; tnkId <= totalTkns; tnkId++) {
                if (ownerOf(tnkId) == _owner) {
                    result[resultIndex] = tnkId;
                    resultIndex++;
                }
            }

            return result;
        }
    }

    function fixBaseURI(string memory _newURI) public onlyOwner {
        require(!is_collection_locked, "Collection locked");
        contract_base_uri = _newURI;
    }

    /*
        This method will allow owner lock the collection
     */

    function lockCollection() public onlyOwner {
        is_collection_locked = true;
    }

    /*
        This method will allow owner to start and stop the sale
    */
    function fixSaleState(bool newState) external onlyOwner {
        require(!is_collection_locked, "Collection locked");
        sale_active = newState;
    }

    /*
        This method will allow owner to fix max amount of nfts per minting
    */
    function fixMaxAmount(uint256 newMax) external onlyOwner {
        require(!is_collection_locked, "Collection locked");
        MAX_AMOUNT = newMax;
    }

    /*
        This method will allow owner to fix the minting price
    */
    function fixPrice(uint256 price) external onlyOwner {
        require(!is_collection_locked, "Collection locked");
        minting_price = price;
    }

    /*
        This method will allow owner to fix the whitelist role
    */
    function fixWhitelist(bool state) external onlyOwner {
        require(!is_collection_locked, "Collection locked");
        whitelist_active = state;
    }

    /*
        This method will allow owner to change the gnosis safe wallet
    */
    function fixVault(address newAddress) public onlyOwner {
        require(newAddress != address(0), "Can't use black hole");
        vault_address = newAddress;
    }

    /*
        This method will allow owner to set the merkle root
    */
    function fixMerkleRoot(bytes32 root) external onlyOwner {
        require(!is_collection_locked, "Collection locked");
        MERKLE_ROOT = root;
    }

    /*
        This method will mint the token to provided user, can be called just by the proxy address.
    */
    function dropNFT(address _to, uint256 _amount) public onlyOwner {
        uint256 reached = _tokenIdCounter.current() + _amount;
        require(reached <= HARD_CAP, "Hard cap reached");
        for (uint256 j = 1; j <= _amount; j++) {
            _tokenIdCounter.increment();
            uint256 newTokenId = _tokenIdCounter.current();
            _mint(_to, newTokenId);
        }
    }

    /*
        This method will return the whitelisting state for a proof
    */
    function isWhitelisted(bytes32[] calldata _merkleProof, address _address)
        public
        view
        returns (bool)
    {
        require(whitelist_active, "Whitelist is not active");
        bytes32 leaf = keccak256(abi.encodePacked(_address));
        bool whitelisted = MerkleProof.verify(_merkleProof, MERKLE_ROOT, leaf);
        return whitelisted;
    }

    /*
        This method will allow owner to withdraw all ethers
    */
    function withdrawFunds() external onlyOwner {
        uint256 balance = address(this).balance;
        require(vault_address != address(0) && balance > 0, "Can't withdraw");
        bool success;
        (success, ) = vault_address.call{value: balance}("");
        require(success, "Withdraw to vault failed");
    }

    /*
        This method will allow users to buy the nft
    */
    function buyNFT(bytes32[] calldata _merkleProof) public payable {
        require(sale_active, "Can't buy because sale is not active");
        bool canMint = true;
        if (whitelist_active) {
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            canMint = MerkleProof.verify(_merkleProof, MERKLE_ROOT, leaf);
        }
        require(
            canMint && msg.value % minting_price == 0,
            "Sorry you can't mint right now"
        );
        uint256 amount = msg.value / minting_price;
        require(
            amount >= 1 && amount <= MAX_AMOUNT,
            "Amount should be at least 1 and must be less or equal to 5"
        );
        uint256 reached_hardcap = amount + totalSupply();
        require(reached_hardcap <= SOFT_CAP, "Soft cap reached");
        uint256 j = 0;
        for (j = 0; j < amount; j++) {
            _tokenIdCounter.increment();
            uint256 nextId = _tokenIdCounter.current();
            _mint(msg.sender, nextId);
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_ticker","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":"HARD_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MERKLE_ROOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SOFT_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"buyNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contract_base_uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"dropNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"fixBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"fixMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"fixMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"fixPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"fixSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"fixVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"fixWhitelist","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":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"address","name":"_address","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"is_collection_locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minting_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"ownerTokens","type":"uint256[]"}],"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":"vault_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelist_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860006101000a81548160ff0219169083151502179055506000600860016101000a81548160ff02191690831515021790555066b1a2bc2ec50000600a556107d0600b55610708600c556005600d556000600f60006101000a81548160ff0219169083151502179055506040518060800160405280604d815260200162004f70604d913960109080519060200190620000a292919062000202565b50348015620000b057600080fd5b5060405162004fbd38038062004fbd8339818101604052810190620000d6919062000330565b81818160009080519060200190620000f092919062000202565b5080600190805190602001906200010992919062000202565b5050506200012c620001206200013460201b60201c565b6200013c60201b60201c565b505062000539565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000210906200044a565b90600052602060002090601f01602090048101928262000234576000855562000280565b82601f106200024f57805160ff191683800117855562000280565b8280016001018555821562000280579182015b828111156200027f57825182559160200191906001019062000262565b5b5090506200028f919062000293565b5090565b5b80821115620002ae57600081600090555060010162000294565b5090565b6000620002c9620002c384620003de565b620003b5565b905082815260208101848484011115620002e857620002e762000519565b5b620002f584828562000414565b509392505050565b600082601f83011262000315576200031462000514565b5b815162000327848260208601620002b2565b91505092915050565b600080604083850312156200034a576200034962000523565b5b600083015167ffffffffffffffff8111156200036b576200036a6200051e565b5b6200037985828601620002fd565b925050602083015167ffffffffffffffff8111156200039d576200039c6200051e565b5b620003ab85828601620002fd565b9150509250929050565b6000620003c1620003d4565b9050620003cf828262000480565b919050565b6000604051905090565b600067ffffffffffffffff821115620003fc57620003fb620004e5565b5b620004078262000528565b9050602081019050919050565b60005b838110156200043457808201518184015260208101905062000417565b8381111562000444576000848401525b50505050565b600060028204905060018216806200046357607f821691505b602082108114156200047a5762000479620004b6565b5b50919050565b6200048b8262000528565b810181811067ffffffffffffffff82111715620004ad57620004ac620004e5565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b614a2780620005496000396000f3fe60806040526004361061023b5760003560e01c8063733f23991161012e578063b88d4fde116100ab578063debefaa61161006f578063debefaa614610828578063e0df721614610865578063e985e9c514610890578063f2b3ea5d146108cd578063f2fde38b146108f85761023b565b8063b88d4fde14610752578063c87b56dd1461077b578063cef220a3146107b8578063d40dc870146107d4578063daf68ef3146107ff5761023b565b806395d89b41116100f257806395d89b4114610681578063a22cb465146106ac578063a24721d3146106d5578063b652dc2f146106fe578063b703a9f4146107295761023b565b8063733f23991461059a57806383bc5245146105c55780638462151c146105ee5780638b22f3411461062b5780638da5cb5b146106565761023b565b80632a1436c2116101bc5780635e01967c116101805780635e01967c146104b557806361ad2057146104de5780636352211e1461050957806370a0823114610546578063715018a6146105835761023b565b80632a1436c2146103e45780633a03171c1461040d57806342842e0e1461043857806347d0c9301461046157806351e75e8b1461048a5761023b565b80631036b3c5116102035780631036b3c51461032557806318160ddd14610350578063211eb07d1461037b57806323b872dd146103a457806324600fc3146103cd5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e55780630ee83a711461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906133a7565b610921565b6040516102749190613b0a565b60405180910390f35b34801561028957600080fd5b50610292610a03565b60405161029f9190613b40565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061344a565b610a95565b6040516102dc9190613a81565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613260565b610b1a565b005b34801561031a57600080fd5b50610323610c32565b005b34801561033157600080fd5b5061033a610ccb565b6040516103479190613b0a565b60405180910390f35b34801561035c57600080fd5b50610365610cde565b6040516103729190613e82565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613401565b610cef565b005b3480156103b057600080fd5b506103cb60048036038101906103c6919061314a565b610dd5565b005b3480156103d957600080fd5b506103e2610e35565b005b3480156103f057600080fd5b5061040b6004803603810190610406919061334d565b611028565b005b34801561041957600080fd5b50610422611111565b60405161042f9190613e82565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a919061314a565b611117565b005b34801561046d57600080fd5b506104886004803603810190610483919061337a565b611137565b005b34801561049657600080fd5b5061049f61120d565b6040516104ac9190613b25565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d791906130dd565b611213565b005b3480156104ea57600080fd5b506104f3611343565b6040516105009190613b40565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b919061344a565b6113d1565b60405161053d9190613a81565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906130dd565b611483565b60405161057a9190613e82565b60405180910390f35b34801561058f57600080fd5b5061059861153b565b005b3480156105a657600080fd5b506105af6115c3565b6040516105bc9190613a81565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e7919061334d565b6115e9565b005b3480156105fa57600080fd5b50610615600480360381019061061091906130dd565b6116d2565b6040516106229190613ae8565b60405180910390f35b34801561063757600080fd5b50610640611830565b60405161064d9190613b0a565b60405180910390f35b34801561066257600080fd5b5061066b611843565b6040516106789190613a81565b60405180910390f35b34801561068d57600080fd5b5061069661186d565b6040516106a39190613b40565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce9190613220565b6118ff565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190613260565b611915565b005b34801561070a57600080fd5b50610713611a39565b6040516107209190613e82565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b919061344a565b611a3f565b005b34801561075e57600080fd5b506107796004803603810190610774919061319d565b611b15565b005b34801561078757600080fd5b506107a2600480360381019061079d919061344a565b611b77565b6040516107af9190613b40565b60405180910390f35b6107d260048036038101906107cd91906132a0565b611bb1565b005b3480156107e057600080fd5b506107e9611dfa565b6040516107f69190613e82565b60405180910390f35b34801561080b57600080fd5b506108266004803603810190610821919061344a565b611e00565b005b34801561083457600080fd5b5061084f600480360381019061084a91906132ed565b611ed6565b60405161085c9190613b0a565b60405180910390f35b34801561087157600080fd5b5061087a611fb0565b6040516108879190613b0a565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b2919061310a565b611fc3565b6040516108c49190613b0a565b60405180910390f35b3480156108d957600080fd5b506108e2612057565b6040516108ef9190613e82565b60405180910390f35b34801561090457600080fd5b5061091f600480360381019061091a91906130dd565b61205d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ec57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fc57506109fb82612155565b5b9050919050565b606060008054610a129061413b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e9061413b565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b5050505050905090565b6000610aa0826121bf565b610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690613dc2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b25826113d1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d90613e02565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb561222b565b73ffffffffffffffffffffffffffffffffffffffff161480610be45750610be381610bde61222b565b611fc3565b5b610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a90613ce2565b60405180910390fd5b610c2d8383612233565b505050565b610c3a61222b565b73ffffffffffffffffffffffffffffffffffffffff16610c58611843565b73ffffffffffffffffffffffffffffffffffffffff1614610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca590613de2565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b600860009054906101000a900460ff1681565b6000610cea60096122ec565b905090565b610cf761222b565b73ffffffffffffffffffffffffffffffffffffffff16610d15611843565b73ffffffffffffffffffffffffffffffffffffffff1614610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290613de2565b60405180910390fd5b600f60009054906101000a900460ff1615610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290613b62565b60405180910390fd5b8060109080519060200190610dd1929190612e86565b5050565b610de6610de061222b565b826122fa565b610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90613e62565b60405180910390fd5b610e308383836123d8565b505050565b610e3d61222b565b73ffffffffffffffffffffffffffffffffffffffff16610e5b611843565b73ffffffffffffffffffffffffffffffffffffffff1614610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890613de2565b60405180910390fd5b6000479050600073ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015610f155750600081115b610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90613d02565b60405180910390fd5b6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610f9c90613a6c565b60006040518083038185875af1925050503d8060008114610fd9576040519150601f19603f3d011682016040523d82523d6000602084013e610fde565b606091505b50508091505080611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90613e42565b60405180910390fd5b5050565b61103061222b565b73ffffffffffffffffffffffffffffffffffffffff1661104e611843565b73ffffffffffffffffffffffffffffffffffffffff16146110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b90613de2565b60405180910390fd5b600f60009054906101000a900460ff16156110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90613b62565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b600b5481565b61113283838360405180602001604052806000815250611b15565b505050565b61113f61222b565b73ffffffffffffffffffffffffffffffffffffffff1661115d611843565b73ffffffffffffffffffffffffffffffffffffffff16146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90613de2565b60405180910390fd5b600f60009054906101000a900460ff1615611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa90613b62565b60405180910390fd5b80600e8190555050565b600e5481565b61121b61222b565b73ffffffffffffffffffffffffffffffffffffffff16611239611843565b73ffffffffffffffffffffffffffffffffffffffff161461128f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128690613de2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690613da2565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601080546113509061413b565b80601f016020809104026020016040519081016040528092919081815260200182805461137c9061413b565b80156113c95780601f1061139e576101008083540402835291602001916113c9565b820191906000526020600020905b8154815290600101906020018083116113ac57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561147a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147190613d42565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb90613d22565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61154361222b565b73ffffffffffffffffffffffffffffffffffffffff16611561611843565b73ffffffffffffffffffffffffffffffffffffffff16146115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90613de2565b60405180910390fd5b6115c1600061263f565b565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115f161222b565b73ffffffffffffffffffffffffffffffffffffffff1661160f611843565b73ffffffffffffffffffffffffffffffffffffffff1614611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c90613de2565b60405180910390fd5b600f60009054906101000a900460ff16156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90613b62565b60405180910390fd5b80600860016101000a81548160ff02191690831515021790555050565b606060006116df83611483565b9050600081141561173c57600067ffffffffffffffff811115611705576117046142f8565b5b6040519080825280602002602001820160405280156117335781602001602082028036833780820191505090505b5091505061182b565b60008167ffffffffffffffff811115611758576117576142f8565b5b6040519080825280602002602001820160405280156117865781602001602082028036833780820191505090505b5090506000611793610cde565b9050600080600190505b828111611822578673ffffffffffffffffffffffffffffffffffffffff166117c4826113d1565b73ffffffffffffffffffffffffffffffffffffffff16141561180f57808483815181106117f4576117f36142c9565b5b602002602001018181525050818061180b9061419e565b9250505b808061181a9061419e565b91505061179d565b83955050505050505b919050565b600f60009054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461187c9061413b565b80601f01602080910402602001604051908101604052809291908181526020018280546118a89061413b565b80156118f55780601f106118ca576101008083540402835291602001916118f5565b820191906000526020600020905b8154815290600101906020018083116118d857829003601f168201915b5050505050905090565b61191161190a61222b565b8383612705565b5050565b61191d61222b565b73ffffffffffffffffffffffffffffffffffffffff1661193b611843565b73ffffffffffffffffffffffffffffffffffffffff1614611991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198890613de2565b60405180910390fd5b60008161199e60096122ec565b6119a89190613fc0565b9050600b548111156119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690613e22565b60405180910390fd5b6000600190505b828111611a3357611a076009612872565b6000611a1360096122ec565b9050611a1f8582612888565b508080611a2b9061419e565b9150506119f6565b50505050565b600c5481565b611a4761222b565b73ffffffffffffffffffffffffffffffffffffffff16611a65611843565b73ffffffffffffffffffffffffffffffffffffffff1614611abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab290613de2565b60405180910390fd5b600f60009054906101000a900460ff1615611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290613b62565b60405180910390fd5b80600a8190555050565b611b26611b2061222b565b836122fa565b611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c90613e62565b60405180910390fd5b611b7184848484612a62565b50505050565b60606000611b8483612abe565b9050601081604051602001611b9a929190613a3d565b604051602081830303815290604052915050919050565b600860019054906101000a900460ff16611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf790613c62565b60405180910390fd5b600060019050600860009054906101000a900460ff1615611c9857600033604051602001611c2e9190613a22565b604051602081830303815290604052805190602001209050611c94848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483612c1f565b9150505b808015611cb257506000600a5434611cb0919061420b565b145b611cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce890613c22565b60405180910390fd5b6000600a5434611d019190614016565b905060018110158015611d165750600d548111155b611d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4c90613c42565b60405180910390fd5b6000611d5f610cde565b82611d6a9190613fc0565b9050600c54811115611db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da890613d62565b60405180910390fd5b60005b82811015611df257611dc66009612872565b6000611dd260096122ec565b9050611dde3382612888565b508080611dea9061419e565b915050611db4565b505050505050565b600d5481565b611e0861222b565b73ffffffffffffffffffffffffffffffffffffffff16611e26611843565b73ffffffffffffffffffffffffffffffffffffffff1614611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7390613de2565b60405180910390fd5b600f60009054906101000a900460ff1615611ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec390613b62565b60405180910390fd5b80600d8190555050565b6000600860009054906101000a900460ff16611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90613b82565b60405180910390fd5b600082604051602001611f3a9190613a22565b6040516020818303038152906040528051906020012090506000611fa2868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5484612c1f565b905080925050509392505050565b600860019054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a5481565b61206561222b565b73ffffffffffffffffffffffffffffffffffffffff16612083611843565b73ffffffffffffffffffffffffffffffffffffffff16146120d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d090613de2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214090613bc2565b60405180910390fd5b6121528161263f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122a6836113d1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000612305826121bf565b612344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233b90613cc2565b60405180910390fd5b600061234f836113d1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123be57508373ffffffffffffffffffffffffffffffffffffffff166123a684610a95565b73ffffffffffffffffffffffffffffffffffffffff16145b806123cf57506123ce8185611fc3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123f8826113d1565b73ffffffffffffffffffffffffffffffffffffffff161461244e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244590613be2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b590613c82565b60405180910390fd5b6124c9838383612c36565b6124d4600082612233565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125249190614047565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461257b9190613fc0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461263a838383612c3b565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276b90613ca2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128659190613b0a565b60405180910390a3505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ef90613d82565b60405180910390fd5b612901816121bf565b15612941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293890613c02565b60405180910390fd5b61294d60008383612c36565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461299d9190613fc0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a5e60008383612c3b565b5050565b612a6d8484846123d8565b612a7984848484612c40565b612ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaf90613ba2565b60405180910390fd5b50505050565b60606000821415612b06576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c1a565b600082905060005b60008214612b38578080612b219061419e565b915050600a82612b319190614016565b9150612b0e565b60008167ffffffffffffffff811115612b5457612b536142f8565b5b6040519080825280601f01601f191660200182016040528015612b865781602001600182028036833780820191505090505b5090505b60008514612c1357600182612b9f9190614047565b9150600a85612bae919061420b565b6030612bba9190613fc0565b60f81b818381518110612bd057612bcf6142c9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c0c9190614016565b9450612b8a565b8093505050505b919050565b600082612c2c8584612dd7565b1490509392505050565b505050565b505050565b6000612c618473ffffffffffffffffffffffffffffffffffffffff16612e4c565b15612dca578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c8a61222b565b8786866040518563ffffffff1660e01b8152600401612cac9493929190613a9c565b602060405180830381600087803b158015612cc657600080fd5b505af1925050508015612cf757506040513d601f19601f82011682018060405250810190612cf491906133d4565b60015b612d7a573d8060008114612d27576040519150601f19603f3d011682016040523d82523d6000602084013e612d2c565b606091505b50600081511415612d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6990613ba2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dcf565b600190505b949350505050565b60008082905060005b8451811015612e41576000858281518110612dfe57612dfd6142c9565b5b60200260200101519050808311612e2057612e198382612e6f565b9250612e2d565b612e2a8184612e6f565b92505b508080612e399061419e565b915050612de0565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b828054612e929061413b565b90600052602060002090601f016020900481019282612eb45760008555612efb565b82601f10612ecd57805160ff1916838001178555612efb565b82800160010185558215612efb579182015b82811115612efa578251825591602001919060010190612edf565b5b509050612f089190612f0c565b5090565b5b80821115612f25576000816000905550600101612f0d565b5090565b6000612f3c612f3784613ec2565b613e9d565b905082815260208101848484011115612f5857612f57614336565b5b612f638482856140f9565b509392505050565b6000612f7e612f7984613ef3565b613e9d565b905082815260208101848484011115612f9a57612f99614336565b5b612fa58482856140f9565b509392505050565b600081359050612fbc8161497e565b92915050565b60008083601f840112612fd857612fd761432c565b5b8235905067ffffffffffffffff811115612ff557612ff4614327565b5b60208301915083602082028301111561301157613010614331565b5b9250929050565b60008135905061302781614995565b92915050565b60008135905061303c816149ac565b92915050565b600081359050613051816149c3565b92915050565b600081519050613066816149c3565b92915050565b600082601f8301126130815761308061432c565b5b8135613091848260208601612f29565b91505092915050565b600082601f8301126130af576130ae61432c565b5b81356130bf848260208601612f6b565b91505092915050565b6000813590506130d7816149da565b92915050565b6000602082840312156130f3576130f2614340565b5b600061310184828501612fad565b91505092915050565b6000806040838503121561312157613120614340565b5b600061312f85828601612fad565b925050602061314085828601612fad565b9150509250929050565b60008060006060848603121561316357613162614340565b5b600061317186828701612fad565b935050602061318286828701612fad565b9250506040613193868287016130c8565b9150509250925092565b600080600080608085870312156131b7576131b6614340565b5b60006131c587828801612fad565b94505060206131d687828801612fad565b93505060406131e7878288016130c8565b925050606085013567ffffffffffffffff8111156132085761320761433b565b5b6132148782880161306c565b91505092959194509250565b6000806040838503121561323757613236614340565b5b600061324585828601612fad565b925050602061325685828601613018565b9150509250929050565b6000806040838503121561327757613276614340565b5b600061328585828601612fad565b9250506020613296858286016130c8565b9150509250929050565b600080602083850312156132b7576132b6614340565b5b600083013567ffffffffffffffff8111156132d5576132d461433b565b5b6132e185828601612fc2565b92509250509250929050565b60008060006040848603121561330657613305614340565b5b600084013567ffffffffffffffff8111156133245761332361433b565b5b61333086828701612fc2565b9350935050602061334386828701612fad565b9150509250925092565b60006020828403121561336357613362614340565b5b600061337184828501613018565b91505092915050565b6000602082840312156133905761338f614340565b5b600061339e8482850161302d565b91505092915050565b6000602082840312156133bd576133bc614340565b5b60006133cb84828501613042565b91505092915050565b6000602082840312156133ea576133e9614340565b5b60006133f884828501613057565b91505092915050565b60006020828403121561341757613416614340565b5b600082013567ffffffffffffffff8111156134355761343461433b565b5b6134418482850161309a565b91505092915050565b6000602082840312156134605761345f614340565b5b600061346e848285016130c8565b91505092915050565b60006134838383613a04565b60208301905092915050565b6134988161407b565b82525050565b6134af6134aa8261407b565b6141e7565b82525050565b60006134c082613f49565b6134ca8185613f77565b93506134d583613f24565b8060005b838110156135065781516134ed8882613477565b97506134f883613f6a565b9250506001810190506134d9565b5085935050505092915050565b61351c8161408d565b82525050565b61352b81614099565b82525050565b600061353c82613f54565b6135468185613f88565b9350613556818560208601614108565b61355f81614345565b840191505092915050565b600061357582613f5f565b61357f8185613fa4565b935061358f818560208601614108565b61359881614345565b840191505092915050565b60006135ae82613f5f565b6135b88185613fb5565b93506135c8818560208601614108565b80840191505092915050565b600081546135e18161413b565b6135eb8186613fb5565b9450600182166000811461360657600181146136175761364a565b60ff1983168652818601935061364a565b61362085613f34565b60005b8381101561364257815481890152600182019150602081019050613623565b838801955050505b50505092915050565b6000613660601183613fa4565b915061366b82614363565b602082019050919050565b6000613683601783613fa4565b915061368e8261438c565b602082019050919050565b60006136a6603283613fa4565b91506136b1826143b5565b604082019050919050565b60006136c9602683613fa4565b91506136d482614404565b604082019050919050565b60006136ec602583613fa4565b91506136f782614453565b604082019050919050565b600061370f601c83613fa4565b915061371a826144a2565b602082019050919050565b6000613732601e83613fa4565b915061373d826144cb565b602082019050919050565b6000613755603a83613fa4565b9150613760826144f4565b604082019050919050565b6000613778602483613fa4565b915061378382614543565b604082019050919050565b600061379b602483613fa4565b91506137a682614592565b604082019050919050565b60006137be601983613fa4565b91506137c9826145e1565b602082019050919050565b60006137e1602c83613fa4565b91506137ec8261460a565b604082019050919050565b6000613804603883613fa4565b915061380f82614659565b604082019050919050565b6000613827600e83613fa4565b9150613832826146a8565b602082019050919050565b600061384a602a83613fa4565b9150613855826146d1565b604082019050919050565b600061386d602983613fa4565b915061387882614720565b604082019050919050565b6000613890601083613fa4565b915061389b8261476f565b602082019050919050565b60006138b3602083613fa4565b91506138be82614798565b602082019050919050565b60006138d6601483613fa4565b91506138e1826147c1565b602082019050919050565b60006138f9602c83613fa4565b9150613904826147ea565b604082019050919050565b600061391c600583613fb5565b915061392782614839565b600582019050919050565b600061393f602083613fa4565b915061394a82614862565b602082019050919050565b6000613962602183613fa4565b915061396d8261488b565b604082019050919050565b6000613985601083613fa4565b9150613990826148da565b602082019050919050565b60006139a8601883613fa4565b91506139b382614903565b602082019050919050565b60006139cb600083613f99565b91506139d68261492c565b600082019050919050565b60006139ee603183613fa4565b91506139f98261492f565b604082019050919050565b613a0d816140ef565b82525050565b613a1c816140ef565b82525050565b6000613a2e828461349e565b60148201915081905092915050565b6000613a4982856135d4565b9150613a5582846135a3565b9150613a608261390f565b91508190509392505050565b6000613a77826139be565b9150819050919050565b6000602082019050613a96600083018461348f565b92915050565b6000608082019050613ab1600083018761348f565b613abe602083018661348f565b613acb6040830185613a13565b8181036060830152613add8184613531565b905095945050505050565b60006020820190508181036000830152613b0281846134b5565b905092915050565b6000602082019050613b1f6000830184613513565b92915050565b6000602082019050613b3a6000830184613522565b92915050565b60006020820190508181036000830152613b5a818461356a565b905092915050565b60006020820190508181036000830152613b7b81613653565b9050919050565b60006020820190508181036000830152613b9b81613676565b9050919050565b60006020820190508181036000830152613bbb81613699565b9050919050565b60006020820190508181036000830152613bdb816136bc565b9050919050565b60006020820190508181036000830152613bfb816136df565b9050919050565b60006020820190508181036000830152613c1b81613702565b9050919050565b60006020820190508181036000830152613c3b81613725565b9050919050565b60006020820190508181036000830152613c5b81613748565b9050919050565b60006020820190508181036000830152613c7b8161376b565b9050919050565b60006020820190508181036000830152613c9b8161378e565b9050919050565b60006020820190508181036000830152613cbb816137b1565b9050919050565b60006020820190508181036000830152613cdb816137d4565b9050919050565b60006020820190508181036000830152613cfb816137f7565b9050919050565b60006020820190508181036000830152613d1b8161381a565b9050919050565b60006020820190508181036000830152613d3b8161383d565b9050919050565b60006020820190508181036000830152613d5b81613860565b9050919050565b60006020820190508181036000830152613d7b81613883565b9050919050565b60006020820190508181036000830152613d9b816138a6565b9050919050565b60006020820190508181036000830152613dbb816138c9565b9050919050565b60006020820190508181036000830152613ddb816138ec565b9050919050565b60006020820190508181036000830152613dfb81613932565b9050919050565b60006020820190508181036000830152613e1b81613955565b9050919050565b60006020820190508181036000830152613e3b81613978565b9050919050565b60006020820190508181036000830152613e5b8161399b565b9050919050565b60006020820190508181036000830152613e7b816139e1565b9050919050565b6000602082019050613e976000830184613a13565b92915050565b6000613ea7613eb8565b9050613eb3828261416d565b919050565b6000604051905090565b600067ffffffffffffffff821115613edd57613edc6142f8565b5b613ee682614345565b9050602081019050919050565b600067ffffffffffffffff821115613f0e57613f0d6142f8565b5b613f1782614345565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fcb826140ef565b9150613fd6836140ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561400b5761400a61423c565b5b828201905092915050565b6000614021826140ef565b915061402c836140ef565b92508261403c5761403b61426b565b5b828204905092915050565b6000614052826140ef565b915061405d836140ef565b9250828210156140705761406f61423c565b5b828203905092915050565b6000614086826140cf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561412657808201518184015260208101905061410b565b83811115614135576000848401525b50505050565b6000600282049050600182168061415357607f821691505b602082108114156141675761416661429a565b5b50919050565b61417682614345565b810181811067ffffffffffffffff82111715614195576141946142f8565b5b80604052505050565b60006141a9826140ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141dc576141db61423c565b5b600182019050919050565b60006141f2826141f9565b9050919050565b600061420482614356565b9050919050565b6000614216826140ef565b9150614221836140ef565b9250826142315761423061426b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f436f6c6c656374696f6e206c6f636b6564000000000000000000000000000000600082015250565b7f57686974656c697374206973206e6f7420616374697665000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f536f72727920796f752063616e2774206d696e74207269676874206e6f770000600082015250565b7f416d6f756e742073686f756c64206265206174206c65617374203120616e642060008201527f6d757374206265206c657373206f7220657175616c20746f2035000000000000602082015250565b7f43616e27742062757920626563617573652073616c65206973206e6f7420616360008201527f7469766500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f43616e2774207769746864726177000000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f536f667420636170207265616368656400000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e27742075736520626c61636b20686f6c65000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4861726420636170207265616368656400000000000000000000000000000000600082015250565b7f576974686472617720746f207661756c74206661696c65640000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6149878161407b565b811461499257600080fd5b50565b61499e8161408d565b81146149a957600080fd5b50565b6149b581614099565b81146149c057600080fd5b50565b6149cc816140a3565b81146149d757600080fd5b50565b6149e3816140ef565b81146149ee57600080fd5b5056fea26469706673582212204aaaee1282345b11aa8b2dfb36d6738b0980e8d9ef791cf8338c4371afed292864736f6c6343000806003368747470733a2f2f3072657864313836646a2e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f67656e657261746976652f7061796573612f0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000065041594553410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000949425a5041594553410000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063733f23991161012e578063b88d4fde116100ab578063debefaa61161006f578063debefaa614610828578063e0df721614610865578063e985e9c514610890578063f2b3ea5d146108cd578063f2fde38b146108f85761023b565b8063b88d4fde14610752578063c87b56dd1461077b578063cef220a3146107b8578063d40dc870146107d4578063daf68ef3146107ff5761023b565b806395d89b41116100f257806395d89b4114610681578063a22cb465146106ac578063a24721d3146106d5578063b652dc2f146106fe578063b703a9f4146107295761023b565b8063733f23991461059a57806383bc5245146105c55780638462151c146105ee5780638b22f3411461062b5780638da5cb5b146106565761023b565b80632a1436c2116101bc5780635e01967c116101805780635e01967c146104b557806361ad2057146104de5780636352211e1461050957806370a0823114610546578063715018a6146105835761023b565b80632a1436c2146103e45780633a03171c1461040d57806342842e0e1461043857806347d0c9301461046157806351e75e8b1461048a5761023b565b80631036b3c5116102035780631036b3c51461032557806318160ddd14610350578063211eb07d1461037b57806323b872dd146103a457806324600fc3146103cd5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e55780630ee83a711461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906133a7565b610921565b6040516102749190613b0a565b60405180910390f35b34801561028957600080fd5b50610292610a03565b60405161029f9190613b40565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061344a565b610a95565b6040516102dc9190613a81565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613260565b610b1a565b005b34801561031a57600080fd5b50610323610c32565b005b34801561033157600080fd5b5061033a610ccb565b6040516103479190613b0a565b60405180910390f35b34801561035c57600080fd5b50610365610cde565b6040516103729190613e82565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613401565b610cef565b005b3480156103b057600080fd5b506103cb60048036038101906103c6919061314a565b610dd5565b005b3480156103d957600080fd5b506103e2610e35565b005b3480156103f057600080fd5b5061040b6004803603810190610406919061334d565b611028565b005b34801561041957600080fd5b50610422611111565b60405161042f9190613e82565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a919061314a565b611117565b005b34801561046d57600080fd5b506104886004803603810190610483919061337a565b611137565b005b34801561049657600080fd5b5061049f61120d565b6040516104ac9190613b25565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d791906130dd565b611213565b005b3480156104ea57600080fd5b506104f3611343565b6040516105009190613b40565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b919061344a565b6113d1565b60405161053d9190613a81565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906130dd565b611483565b60405161057a9190613e82565b60405180910390f35b34801561058f57600080fd5b5061059861153b565b005b3480156105a657600080fd5b506105af6115c3565b6040516105bc9190613a81565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e7919061334d565b6115e9565b005b3480156105fa57600080fd5b50610615600480360381019061061091906130dd565b6116d2565b6040516106229190613ae8565b60405180910390f35b34801561063757600080fd5b50610640611830565b60405161064d9190613b0a565b60405180910390f35b34801561066257600080fd5b5061066b611843565b6040516106789190613a81565b60405180910390f35b34801561068d57600080fd5b5061069661186d565b6040516106a39190613b40565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce9190613220565b6118ff565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190613260565b611915565b005b34801561070a57600080fd5b50610713611a39565b6040516107209190613e82565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b919061344a565b611a3f565b005b34801561075e57600080fd5b506107796004803603810190610774919061319d565b611b15565b005b34801561078757600080fd5b506107a2600480360381019061079d919061344a565b611b77565b6040516107af9190613b40565b60405180910390f35b6107d260048036038101906107cd91906132a0565b611bb1565b005b3480156107e057600080fd5b506107e9611dfa565b6040516107f69190613e82565b60405180910390f35b34801561080b57600080fd5b506108266004803603810190610821919061344a565b611e00565b005b34801561083457600080fd5b5061084f600480360381019061084a91906132ed565b611ed6565b60405161085c9190613b0a565b60405180910390f35b34801561087157600080fd5b5061087a611fb0565b6040516108879190613b0a565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b2919061310a565b611fc3565b6040516108c49190613b0a565b60405180910390f35b3480156108d957600080fd5b506108e2612057565b6040516108ef9190613e82565b60405180910390f35b34801561090457600080fd5b5061091f600480360381019061091a91906130dd565b61205d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ec57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fc57506109fb82612155565b5b9050919050565b606060008054610a129061413b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e9061413b565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b5050505050905090565b6000610aa0826121bf565b610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690613dc2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b25826113d1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d90613e02565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb561222b565b73ffffffffffffffffffffffffffffffffffffffff161480610be45750610be381610bde61222b565b611fc3565b5b610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a90613ce2565b60405180910390fd5b610c2d8383612233565b505050565b610c3a61222b565b73ffffffffffffffffffffffffffffffffffffffff16610c58611843565b73ffffffffffffffffffffffffffffffffffffffff1614610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca590613de2565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b600860009054906101000a900460ff1681565b6000610cea60096122ec565b905090565b610cf761222b565b73ffffffffffffffffffffffffffffffffffffffff16610d15611843565b73ffffffffffffffffffffffffffffffffffffffff1614610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290613de2565b60405180910390fd5b600f60009054906101000a900460ff1615610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290613b62565b60405180910390fd5b8060109080519060200190610dd1929190612e86565b5050565b610de6610de061222b565b826122fa565b610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90613e62565b60405180910390fd5b610e308383836123d8565b505050565b610e3d61222b565b73ffffffffffffffffffffffffffffffffffffffff16610e5b611843565b73ffffffffffffffffffffffffffffffffffffffff1614610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890613de2565b60405180910390fd5b6000479050600073ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015610f155750600081115b610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90613d02565b60405180910390fd5b6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610f9c90613a6c565b60006040518083038185875af1925050503d8060008114610fd9576040519150601f19603f3d011682016040523d82523d6000602084013e610fde565b606091505b50508091505080611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90613e42565b60405180910390fd5b5050565b61103061222b565b73ffffffffffffffffffffffffffffffffffffffff1661104e611843565b73ffffffffffffffffffffffffffffffffffffffff16146110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b90613de2565b60405180910390fd5b600f60009054906101000a900460ff16156110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90613b62565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b600b5481565b61113283838360405180602001604052806000815250611b15565b505050565b61113f61222b565b73ffffffffffffffffffffffffffffffffffffffff1661115d611843565b73ffffffffffffffffffffffffffffffffffffffff16146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90613de2565b60405180910390fd5b600f60009054906101000a900460ff1615611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa90613b62565b60405180910390fd5b80600e8190555050565b600e5481565b61121b61222b565b73ffffffffffffffffffffffffffffffffffffffff16611239611843565b73ffffffffffffffffffffffffffffffffffffffff161461128f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128690613de2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690613da2565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601080546113509061413b565b80601f016020809104026020016040519081016040528092919081815260200182805461137c9061413b565b80156113c95780601f1061139e576101008083540402835291602001916113c9565b820191906000526020600020905b8154815290600101906020018083116113ac57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561147a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147190613d42565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb90613d22565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61154361222b565b73ffffffffffffffffffffffffffffffffffffffff16611561611843565b73ffffffffffffffffffffffffffffffffffffffff16146115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90613de2565b60405180910390fd5b6115c1600061263f565b565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115f161222b565b73ffffffffffffffffffffffffffffffffffffffff1661160f611843565b73ffffffffffffffffffffffffffffffffffffffff1614611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c90613de2565b60405180910390fd5b600f60009054906101000a900460ff16156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90613b62565b60405180910390fd5b80600860016101000a81548160ff02191690831515021790555050565b606060006116df83611483565b9050600081141561173c57600067ffffffffffffffff811115611705576117046142f8565b5b6040519080825280602002602001820160405280156117335781602001602082028036833780820191505090505b5091505061182b565b60008167ffffffffffffffff811115611758576117576142f8565b5b6040519080825280602002602001820160405280156117865781602001602082028036833780820191505090505b5090506000611793610cde565b9050600080600190505b828111611822578673ffffffffffffffffffffffffffffffffffffffff166117c4826113d1565b73ffffffffffffffffffffffffffffffffffffffff16141561180f57808483815181106117f4576117f36142c9565b5b602002602001018181525050818061180b9061419e565b9250505b808061181a9061419e565b91505061179d565b83955050505050505b919050565b600f60009054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461187c9061413b565b80601f01602080910402602001604051908101604052809291908181526020018280546118a89061413b565b80156118f55780601f106118ca576101008083540402835291602001916118f5565b820191906000526020600020905b8154815290600101906020018083116118d857829003601f168201915b5050505050905090565b61191161190a61222b565b8383612705565b5050565b61191d61222b565b73ffffffffffffffffffffffffffffffffffffffff1661193b611843565b73ffffffffffffffffffffffffffffffffffffffff1614611991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198890613de2565b60405180910390fd5b60008161199e60096122ec565b6119a89190613fc0565b9050600b548111156119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690613e22565b60405180910390fd5b6000600190505b828111611a3357611a076009612872565b6000611a1360096122ec565b9050611a1f8582612888565b508080611a2b9061419e565b9150506119f6565b50505050565b600c5481565b611a4761222b565b73ffffffffffffffffffffffffffffffffffffffff16611a65611843565b73ffffffffffffffffffffffffffffffffffffffff1614611abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab290613de2565b60405180910390fd5b600f60009054906101000a900460ff1615611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290613b62565b60405180910390fd5b80600a8190555050565b611b26611b2061222b565b836122fa565b611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c90613e62565b60405180910390fd5b611b7184848484612a62565b50505050565b60606000611b8483612abe565b9050601081604051602001611b9a929190613a3d565b604051602081830303815290604052915050919050565b600860019054906101000a900460ff16611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf790613c62565b60405180910390fd5b600060019050600860009054906101000a900460ff1615611c9857600033604051602001611c2e9190613a22565b604051602081830303815290604052805190602001209050611c94848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483612c1f565b9150505b808015611cb257506000600a5434611cb0919061420b565b145b611cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce890613c22565b60405180910390fd5b6000600a5434611d019190614016565b905060018110158015611d165750600d548111155b611d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4c90613c42565b60405180910390fd5b6000611d5f610cde565b82611d6a9190613fc0565b9050600c54811115611db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da890613d62565b60405180910390fd5b60005b82811015611df257611dc66009612872565b6000611dd260096122ec565b9050611dde3382612888565b508080611dea9061419e565b915050611db4565b505050505050565b600d5481565b611e0861222b565b73ffffffffffffffffffffffffffffffffffffffff16611e26611843565b73ffffffffffffffffffffffffffffffffffffffff1614611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7390613de2565b60405180910390fd5b600f60009054906101000a900460ff1615611ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec390613b62565b60405180910390fd5b80600d8190555050565b6000600860009054906101000a900460ff16611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90613b82565b60405180910390fd5b600082604051602001611f3a9190613a22565b6040516020818303038152906040528051906020012090506000611fa2868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5484612c1f565b905080925050509392505050565b600860019054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a5481565b61206561222b565b73ffffffffffffffffffffffffffffffffffffffff16612083611843565b73ffffffffffffffffffffffffffffffffffffffff16146120d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d090613de2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214090613bc2565b60405180910390fd5b6121528161263f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122a6836113d1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000612305826121bf565b612344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233b90613cc2565b60405180910390fd5b600061234f836113d1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123be57508373ffffffffffffffffffffffffffffffffffffffff166123a684610a95565b73ffffffffffffffffffffffffffffffffffffffff16145b806123cf57506123ce8185611fc3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123f8826113d1565b73ffffffffffffffffffffffffffffffffffffffff161461244e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244590613be2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b590613c82565b60405180910390fd5b6124c9838383612c36565b6124d4600082612233565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125249190614047565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461257b9190613fc0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461263a838383612c3b565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276b90613ca2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128659190613b0a565b60405180910390a3505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ef90613d82565b60405180910390fd5b612901816121bf565b15612941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293890613c02565b60405180910390fd5b61294d60008383612c36565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461299d9190613fc0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a5e60008383612c3b565b5050565b612a6d8484846123d8565b612a7984848484612c40565b612ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaf90613ba2565b60405180910390fd5b50505050565b60606000821415612b06576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c1a565b600082905060005b60008214612b38578080612b219061419e565b915050600a82612b319190614016565b9150612b0e565b60008167ffffffffffffffff811115612b5457612b536142f8565b5b6040519080825280601f01601f191660200182016040528015612b865781602001600182028036833780820191505090505b5090505b60008514612c1357600182612b9f9190614047565b9150600a85612bae919061420b565b6030612bba9190613fc0565b60f81b818381518110612bd057612bcf6142c9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c0c9190614016565b9450612b8a565b8093505050505b919050565b600082612c2c8584612dd7565b1490509392505050565b505050565b505050565b6000612c618473ffffffffffffffffffffffffffffffffffffffff16612e4c565b15612dca578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c8a61222b565b8786866040518563ffffffff1660e01b8152600401612cac9493929190613a9c565b602060405180830381600087803b158015612cc657600080fd5b505af1925050508015612cf757506040513d601f19601f82011682018060405250810190612cf491906133d4565b60015b612d7a573d8060008114612d27576040519150601f19603f3d011682016040523d82523d6000602084013e612d2c565b606091505b50600081511415612d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6990613ba2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dcf565b600190505b949350505050565b60008082905060005b8451811015612e41576000858281518110612dfe57612dfd6142c9565b5b60200260200101519050808311612e2057612e198382612e6f565b9250612e2d565b612e2a8184612e6f565b92505b508080612e399061419e565b915050612de0565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b828054612e929061413b565b90600052602060002090601f016020900481019282612eb45760008555612efb565b82601f10612ecd57805160ff1916838001178555612efb565b82800160010185558215612efb579182015b82811115612efa578251825591602001919060010190612edf565b5b509050612f089190612f0c565b5090565b5b80821115612f25576000816000905550600101612f0d565b5090565b6000612f3c612f3784613ec2565b613e9d565b905082815260208101848484011115612f5857612f57614336565b5b612f638482856140f9565b509392505050565b6000612f7e612f7984613ef3565b613e9d565b905082815260208101848484011115612f9a57612f99614336565b5b612fa58482856140f9565b509392505050565b600081359050612fbc8161497e565b92915050565b60008083601f840112612fd857612fd761432c565b5b8235905067ffffffffffffffff811115612ff557612ff4614327565b5b60208301915083602082028301111561301157613010614331565b5b9250929050565b60008135905061302781614995565b92915050565b60008135905061303c816149ac565b92915050565b600081359050613051816149c3565b92915050565b600081519050613066816149c3565b92915050565b600082601f8301126130815761308061432c565b5b8135613091848260208601612f29565b91505092915050565b600082601f8301126130af576130ae61432c565b5b81356130bf848260208601612f6b565b91505092915050565b6000813590506130d7816149da565b92915050565b6000602082840312156130f3576130f2614340565b5b600061310184828501612fad565b91505092915050565b6000806040838503121561312157613120614340565b5b600061312f85828601612fad565b925050602061314085828601612fad565b9150509250929050565b60008060006060848603121561316357613162614340565b5b600061317186828701612fad565b935050602061318286828701612fad565b9250506040613193868287016130c8565b9150509250925092565b600080600080608085870312156131b7576131b6614340565b5b60006131c587828801612fad565b94505060206131d687828801612fad565b93505060406131e7878288016130c8565b925050606085013567ffffffffffffffff8111156132085761320761433b565b5b6132148782880161306c565b91505092959194509250565b6000806040838503121561323757613236614340565b5b600061324585828601612fad565b925050602061325685828601613018565b9150509250929050565b6000806040838503121561327757613276614340565b5b600061328585828601612fad565b9250506020613296858286016130c8565b9150509250929050565b600080602083850312156132b7576132b6614340565b5b600083013567ffffffffffffffff8111156132d5576132d461433b565b5b6132e185828601612fc2565b92509250509250929050565b60008060006040848603121561330657613305614340565b5b600084013567ffffffffffffffff8111156133245761332361433b565b5b61333086828701612fc2565b9350935050602061334386828701612fad565b9150509250925092565b60006020828403121561336357613362614340565b5b600061337184828501613018565b91505092915050565b6000602082840312156133905761338f614340565b5b600061339e8482850161302d565b91505092915050565b6000602082840312156133bd576133bc614340565b5b60006133cb84828501613042565b91505092915050565b6000602082840312156133ea576133e9614340565b5b60006133f884828501613057565b91505092915050565b60006020828403121561341757613416614340565b5b600082013567ffffffffffffffff8111156134355761343461433b565b5b6134418482850161309a565b91505092915050565b6000602082840312156134605761345f614340565b5b600061346e848285016130c8565b91505092915050565b60006134838383613a04565b60208301905092915050565b6134988161407b565b82525050565b6134af6134aa8261407b565b6141e7565b82525050565b60006134c082613f49565b6134ca8185613f77565b93506134d583613f24565b8060005b838110156135065781516134ed8882613477565b97506134f883613f6a565b9250506001810190506134d9565b5085935050505092915050565b61351c8161408d565b82525050565b61352b81614099565b82525050565b600061353c82613f54565b6135468185613f88565b9350613556818560208601614108565b61355f81614345565b840191505092915050565b600061357582613f5f565b61357f8185613fa4565b935061358f818560208601614108565b61359881614345565b840191505092915050565b60006135ae82613f5f565b6135b88185613fb5565b93506135c8818560208601614108565b80840191505092915050565b600081546135e18161413b565b6135eb8186613fb5565b9450600182166000811461360657600181146136175761364a565b60ff1983168652818601935061364a565b61362085613f34565b60005b8381101561364257815481890152600182019150602081019050613623565b838801955050505b50505092915050565b6000613660601183613fa4565b915061366b82614363565b602082019050919050565b6000613683601783613fa4565b915061368e8261438c565b602082019050919050565b60006136a6603283613fa4565b91506136b1826143b5565b604082019050919050565b60006136c9602683613fa4565b91506136d482614404565b604082019050919050565b60006136ec602583613fa4565b91506136f782614453565b604082019050919050565b600061370f601c83613fa4565b915061371a826144a2565b602082019050919050565b6000613732601e83613fa4565b915061373d826144cb565b602082019050919050565b6000613755603a83613fa4565b9150613760826144f4565b604082019050919050565b6000613778602483613fa4565b915061378382614543565b604082019050919050565b600061379b602483613fa4565b91506137a682614592565b604082019050919050565b60006137be601983613fa4565b91506137c9826145e1565b602082019050919050565b60006137e1602c83613fa4565b91506137ec8261460a565b604082019050919050565b6000613804603883613fa4565b915061380f82614659565b604082019050919050565b6000613827600e83613fa4565b9150613832826146a8565b602082019050919050565b600061384a602a83613fa4565b9150613855826146d1565b604082019050919050565b600061386d602983613fa4565b915061387882614720565b604082019050919050565b6000613890601083613fa4565b915061389b8261476f565b602082019050919050565b60006138b3602083613fa4565b91506138be82614798565b602082019050919050565b60006138d6601483613fa4565b91506138e1826147c1565b602082019050919050565b60006138f9602c83613fa4565b9150613904826147ea565b604082019050919050565b600061391c600583613fb5565b915061392782614839565b600582019050919050565b600061393f602083613fa4565b915061394a82614862565b602082019050919050565b6000613962602183613fa4565b915061396d8261488b565b604082019050919050565b6000613985601083613fa4565b9150613990826148da565b602082019050919050565b60006139a8601883613fa4565b91506139b382614903565b602082019050919050565b60006139cb600083613f99565b91506139d68261492c565b600082019050919050565b60006139ee603183613fa4565b91506139f98261492f565b604082019050919050565b613a0d816140ef565b82525050565b613a1c816140ef565b82525050565b6000613a2e828461349e565b60148201915081905092915050565b6000613a4982856135d4565b9150613a5582846135a3565b9150613a608261390f565b91508190509392505050565b6000613a77826139be565b9150819050919050565b6000602082019050613a96600083018461348f565b92915050565b6000608082019050613ab1600083018761348f565b613abe602083018661348f565b613acb6040830185613a13565b8181036060830152613add8184613531565b905095945050505050565b60006020820190508181036000830152613b0281846134b5565b905092915050565b6000602082019050613b1f6000830184613513565b92915050565b6000602082019050613b3a6000830184613522565b92915050565b60006020820190508181036000830152613b5a818461356a565b905092915050565b60006020820190508181036000830152613b7b81613653565b9050919050565b60006020820190508181036000830152613b9b81613676565b9050919050565b60006020820190508181036000830152613bbb81613699565b9050919050565b60006020820190508181036000830152613bdb816136bc565b9050919050565b60006020820190508181036000830152613bfb816136df565b9050919050565b60006020820190508181036000830152613c1b81613702565b9050919050565b60006020820190508181036000830152613c3b81613725565b9050919050565b60006020820190508181036000830152613c5b81613748565b9050919050565b60006020820190508181036000830152613c7b8161376b565b9050919050565b60006020820190508181036000830152613c9b8161378e565b9050919050565b60006020820190508181036000830152613cbb816137b1565b9050919050565b60006020820190508181036000830152613cdb816137d4565b9050919050565b60006020820190508181036000830152613cfb816137f7565b9050919050565b60006020820190508181036000830152613d1b8161381a565b9050919050565b60006020820190508181036000830152613d3b8161383d565b9050919050565b60006020820190508181036000830152613d5b81613860565b9050919050565b60006020820190508181036000830152613d7b81613883565b9050919050565b60006020820190508181036000830152613d9b816138a6565b9050919050565b60006020820190508181036000830152613dbb816138c9565b9050919050565b60006020820190508181036000830152613ddb816138ec565b9050919050565b60006020820190508181036000830152613dfb81613932565b9050919050565b60006020820190508181036000830152613e1b81613955565b9050919050565b60006020820190508181036000830152613e3b81613978565b9050919050565b60006020820190508181036000830152613e5b8161399b565b9050919050565b60006020820190508181036000830152613e7b816139e1565b9050919050565b6000602082019050613e976000830184613a13565b92915050565b6000613ea7613eb8565b9050613eb3828261416d565b919050565b6000604051905090565b600067ffffffffffffffff821115613edd57613edc6142f8565b5b613ee682614345565b9050602081019050919050565b600067ffffffffffffffff821115613f0e57613f0d6142f8565b5b613f1782614345565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fcb826140ef565b9150613fd6836140ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561400b5761400a61423c565b5b828201905092915050565b6000614021826140ef565b915061402c836140ef565b92508261403c5761403b61426b565b5b828204905092915050565b6000614052826140ef565b915061405d836140ef565b9250828210156140705761406f61423c565b5b828203905092915050565b6000614086826140cf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561412657808201518184015260208101905061410b565b83811115614135576000848401525b50505050565b6000600282049050600182168061415357607f821691505b602082108114156141675761416661429a565b5b50919050565b61417682614345565b810181811067ffffffffffffffff82111715614195576141946142f8565b5b80604052505050565b60006141a9826140ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141dc576141db61423c565b5b600182019050919050565b60006141f2826141f9565b9050919050565b600061420482614356565b9050919050565b6000614216826140ef565b9150614221836140ef565b9250826142315761423061426b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f436f6c6c656374696f6e206c6f636b6564000000000000000000000000000000600082015250565b7f57686974656c697374206973206e6f7420616374697665000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f536f72727920796f752063616e2774206d696e74207269676874206e6f770000600082015250565b7f416d6f756e742073686f756c64206265206174206c65617374203120616e642060008201527f6d757374206265206c657373206f7220657175616c20746f2035000000000000602082015250565b7f43616e27742062757920626563617573652073616c65206973206e6f7420616360008201527f7469766500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f43616e2774207769746864726177000000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f536f667420636170207265616368656400000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e27742075736520626c61636b20686f6c65000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4861726420636170207265616368656400000000000000000000000000000000600082015250565b7f576974686472617720746f207661756c74206661696c65640000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6149878161407b565b811461499257600080fd5b50565b61499e8161408d565b81146149a957600080fd5b50565b6149b581614099565b81146149c057600080fd5b50565b6149cc816140a3565b81146149d757600080fd5b50565b6149e3816140ef565b81146149ee57600080fd5b5056fea26469706673582212204aaaee1282345b11aa8b2dfb36d6738b0980e8d9ef791cf8338c4371afed292864736f6c63430008060033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000065041594553410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000949425a5041594553410000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): PAYESA
Arg [1] : _ticker (string): IBZPAYESA

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [3] : 5041594553410000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 49425a5041594553410000000000000000000000000000000000000000000000


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.