ETH Price: $2,972.37 (+1.79%)
Gas: 2 Gwei

Token

She (SHE)
 

Overview

Max Total Supply

600 SHE

Holders

297

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SHE
0xf8cC081D772c8FA0DFc2d5544B11777B84E4E2Ad
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:
She

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-20
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/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;
    }
}

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);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;

/**
 * @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:
 *
 * ```soliditycontract ERC721 is Context, ERC165, IERC721, IERC721Metadata
 * 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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
pragma solidity ^0.8.0;

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

pragma solidity ^0.8.10;

abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;

    string private _name;
    string private _symbol;

    address[] internal _owners;

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

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

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

    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        uint256 count = 0;
        uint256 length = _owners.length;
        for (uint256 i = 0; i < length; ++i) {
            if (owner == _owners[i]) {
                ++count;
            }
        }
        delete length;
        return count;
    }

    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;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721P.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);
    }

    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    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);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    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);
    }

    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"
        );
    }

    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721P.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    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"
        );
    }

    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);
        _owners.push(to);

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

    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721P.ownerOf(tokenId);

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

        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

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

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721P.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721P.ownerOf(tokenId), to, tokenId);
    }

    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;
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

pragma solidity ^0.8.10;

abstract contract ERC721Enum is ERC721P, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(IERC165, ERC721P)
        returns (bool)
    {
        return
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256 tokenId)
    {
        require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 count;
        for (uint256 i; i < _owners.length; ++i) {
            if (owner == _owners[i]) {
                if (count == index) return i;
                else ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }

    function tokensOfOwner(address owner)
        public
        view
        returns (uint256[] memory)
    {
        require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }

    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;

/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(
            payees.length == shares_.length,
            "PaymentSplitter: payees and shares length mismatch"
        );
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) /
            _totalShares -
            _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(
            account != address(0),
            "PaymentSplitter: account is the zero address"
        );
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(
            _shares[account] == 0,
            "PaymentSplitter: account already has shares"
        );

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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);
    }
}

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.10;

contract She is ERC721Enum, Ownable, PaymentSplitter {
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 1164;
    uint256 public constant MAX_PRESALE_PER_TX = 10;
    uint256 public constant MAX_PRESALE_PER_WALLET = 50;
    uint256 public constant MAX_PUBLIC_SALE_PER_TX = 10;
    uint256 public constant MAX_PUBLIC_PER_WALLET = 50;
    uint256 public constant COST = 0.05 ether;
    bytes32 private merkleRoot;
    bool public presaleOnlyActive = true;
    bool public paused = true;
    bool public revealed = false;
    string baseURI;
    string hiddenURI;
    
    mapping(address => uint256) public whitelistAddressMintedBalance;
    mapping(address => uint256) public publicAddressMintedBalance;

    address[] private _splitterAddressList = [
        0x948CD796Db88b64a55f7070cBF3db77017314873, //ian
        0x596DC4Bb87c9D7dc4e227906b2fd6651AE2E6FD9, //fidel
        0xF012B5afD31d8aa22B3B97740e41731E3e30f7d8  //adam
    ];

    uint256[] private _shareList = [12, 44, 44];

    constructor(string memory _hiddenURI, bytes32 _merkleRoot) ERC721P("She", "SHE") PaymentSplitter(_splitterAddressList, _shareList) {
        setHiddenURI(_hiddenURI);
        merkleRoot = _merkleRoot;
    }

    modifier mintCheck(uint256 _mintAmount) {
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "Mint amt must be greater than 0");
        require(supply + _mintAmount <= MAX_SUPPLY, "Mint amt exceeds max supply");
        require(msg.value >= COST * _mintAmount, "Insufficient funds");
        _;
    }

    //---------------- Internal ----------------

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

    function _leaf(address _account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(_account));
    }

    function _verifyLeaf(bytes32 _leafNode, bytes32[] memory _proof) internal view returns (bool) {
        return MerkleProof.verify(_proof, merkleRoot, _leafNode);
    }

    function _doMint(address _receiver, uint256 _mintAmount) internal {
        uint256 supply = totalSupply();
        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(_receiver, supply + i);
        }
    }

    //---------------- Public/External ----------------

    function whitelistMint(uint256 _mintAmount, bytes32[] calldata proof) external payable mintCheck(_mintAmount) {
        require(presaleOnlyActive && !paused, "Presale is currently not active");
        require(_verifyLeaf(_leaf(msg.sender), proof), "Invalid proof");
        require(_mintAmount <= MAX_PRESALE_PER_TX, "Mint amt greater than max per tx");

        uint256 senderMintedCount = whitelistAddressMintedBalance[msg.sender];
        require(senderMintedCount + _mintAmount <= MAX_PRESALE_PER_WALLET, "Total mints after tx exceeds max mints for this address");
        whitelistAddressMintedBalance[msg.sender] += _mintAmount;
        
        _doMint(msg.sender, _mintAmount);
    }

    function publicMint(uint256 _mintAmount) external payable mintCheck(_mintAmount) {
        require(!presaleOnlyActive && !paused, "Public sale is not active");
        require(!Address.isContract(msg.sender), "Contract to contract minting not allowed");
        require(msg.sender == tx.origin, "Sender must be origin wallet");
        require(_mintAmount <= MAX_PUBLIC_SALE_PER_TX, "Mint amt greater than max per tx");
        
        uint256 senderMintedCount = publicAddressMintedBalance[msg.sender]; 
        require(senderMintedCount + _mintAmount <= MAX_PUBLIC_PER_WALLET, "Total mints after tx exceeds max mints for this address.");
        publicAddressMintedBalance[msg.sender] += _mintAmount;

        _doMint(msg.sender, _mintAmount);
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) {
            address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
            currentTokenId++;
        }
        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: TokenID does not exist.");
        if (revealed == false) {
            return hiddenURI;
        }
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : "";
    }

    //---------------- Only Owner ----------------

    function teamReserveMint(uint256 _mintAmount, address _receiver) public onlyOwner {
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= MAX_SUPPLY, "Mint amt exceeds max supply");
        _doMint(_receiver, _mintAmount);
    }

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

    function setHiddenURI(string memory _hiddenURI) public onlyOwner {
        hiddenURI = _hiddenURI;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    function whitelistMintOnly(bool _state) public onlyOwner {
        presaleOnlyActive = _state;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_hiddenURI","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_SALE_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOnlyActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicAddressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenURI","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"teamReserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAddressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"whitelistMintOnly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600c805462ffffff191661010117905560e060405273948cd796db88b64a55f7070cbf3db77017314873608090815273596dc4bb87c9d7dc4e227906b2fd6651ae2e6fd960a05273f012b5afd31d8aa22b3b97740e41731e3e30f7d860c0526200006e90601190600362000609565b5060408051606081018252600c8152602c60208201819052918101919091526200009d90601290600362000673565b50348015620000ab57600080fd5b50604051620036d6380380620036d6833981016040819052620000ce9162000760565b60118054806020026020016040519081016040528092919081815260200182805480156200012657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000107575b505050505060128054806020026020016040519081016040528092919081815260200182805480156200017957602002820191906000526020600020905b81548152602001906001019080831162000164575b50505050506040518060400160405280600381526020016253686560e81b8152506040518060400160405280600381526020016253484560e81b8152508160009080519060200190620001ce929190620006b6565b508051620001e4906001906020840190620006b6565b50505062000201620001fb6200035060201b60201c565b62000354565b8051825114620002735760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002c65760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200026a565b60005b825181101562000332576200031d838281518110620002ec57620002ec62000845565b602002602001015183838151811062000309576200030962000845565b6020026020010151620003a660201b60201c565b80620003298162000871565b915050620002c9565b50505062000346826200059460201b60201c565b600b5550620008e7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004135760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200026a565b60008111620004655760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200026a565b6001600160a01b03821660009081526008602052604090205415620004e15760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200026a565b600a8054600181019091557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319166001600160a01b03841690811790915560009081526008602052604090208190556006546200054b9082906200088f565b600655604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6005546001600160a01b03163314620005f05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200026a565b80516200060590600e906020840190620006b6565b5050565b82805482825590600052602060002090810192821562000661579160200282015b828111156200066157825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200062a565b506200066f92915062000733565b5090565b82805482825590600052602060002090810192821562000661579160200282015b8281111562000661578251829060ff1690559160200191906001019062000694565b828054620006c490620008aa565b90600052602060002090601f016020900481019282620006e8576000855562000661565b82601f106200070357805160ff191683800117855562000661565b8280016001018555821562000661579182015b828111156200066157825182559160200191906001019062000716565b5b808211156200066f576000815560010162000734565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156200077457600080fd5b82516001600160401b03808211156200078c57600080fd5b818501915085601f830112620007a157600080fd5b815181811115620007b657620007b66200074a565b604051601f8201601f19908116603f01168101908382118183101715620007e157620007e16200074a565b81604052828152602093508884848701011115620007fe57600080fd5b600091505b8282101562000822578482018401518183018501529083019062000803565b82821115620008345760008484830101525b969092015195979596505050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156200088857620008886200085b565b5060010190565b60008219821115620008a557620008a56200085b565b500190565b600181811c90821680620008bf57607f821691505b60208210811415620008e157634e487b7160e01b600052602260045260246000fd5b50919050565b612ddf80620008f76000396000f3fe60806040526004361061028c5760003560e01c80636209ff891161015a578063b88d4fde116100c1578063d2cab0561161007a578063d2cab056146107f6578063ddb35a6914610809578063e33b7de314610829578063e985e9c51461083e578063ef7d4df6146104cf578063f2fde38b1461088757600080fd5b8063b88d4fde14610745578063bbaac02f14610765578063bf8fbbd214610785578063c87b56dd146107a0578063ce7c2ac2146107c0578063d06836ab1461053157600080fd5b80638b83209b116101135780638b83209b146106875780638da5cb5b146106a757806395d89b41146106c55780639852595c146106da578063a22cb46514610710578063a475b5dd1461073057600080fd5b80636209ff89146105c55780636352211e146105f257806370a0823114610612578063715018a6146106325780637cb64759146106475780638462151c1461066757600080fd5b80632f745c59116101fe578063438b6300116101b7578063438b6300146105045780634e26d1af146105315780634f6ccce714610546578063518302271461056657806355f804b3146105865780635c975abb146105a657600080fd5b80632f745c591461045757806332cb6b0c14610477578063330a37681461048d5780633a98ef39146104ba5780633d4311f7146104cf57806342842e0e146104e457600080fd5b8063095ea7b311610250578063095ea7b3146103a557806318160ddd146103c557806319165587146103e45780631df656b01461040457806323b872dd146104245780632db115441461044457600080fd5b806301ffc9a7146102da57806302329a291461030f57806303d7630c1461033157806306fdde031461034b578063081812fc1461036d57600080fd5b366102d5577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102e657600080fd5b506102fa6102f53660046126a8565b6108a7565b60405190151581526020015b60405180910390f35b34801561031b57600080fd5b5061032f61032a3660046126da565b6108d2565b005b34801561033d57600080fd5b50600c546102fa9060ff1681565b34801561035757600080fd5b5061036061091f565b604051610306919061274d565b34801561037957600080fd5b5061038d610388366004612760565b6109b1565b6040516001600160a01b039091168152602001610306565b3480156103b157600080fd5b5061032f6103c036600461278e565b610a39565b3480156103d157600080fd5b506002545b604051908152602001610306565b3480156103f057600080fd5b5061032f6103ff3660046127ba565b610b4f565b34801561041057600080fd5b5061032f61041f3660046127d7565b610d20565b34801561043057600080fd5b5061032f61043f366004612807565b610d8c565b61032f610452366004612760565b610dbd565b34801561046357600080fd5b506103d661047236600461278e565b6110c7565b34801561048357600080fd5b506103d661048c81565b34801561049957600080fd5b506103d66104a83660046127ba565b60106020526000908152604090205481565b3480156104c657600080fd5b506006546103d6565b3480156104db57600080fd5b506103d6600a81565b3480156104f057600080fd5b5061032f6104ff366004612807565b611176565b34801561051057600080fd5b5061052461051f3660046127ba565b611191565b6040516103069190612848565b34801561053d57600080fd5b506103d6603281565b34801561055257600080fd5b506103d6610561366004612760565b611272565b34801561057257600080fd5b50600c546102fa9062010000900460ff1681565b34801561059257600080fd5b5061032f6105a1366004612918565b6112cf565b3480156105b257600080fd5b50600c546102fa90610100900460ff1681565b3480156105d157600080fd5b506103d66105e03660046127ba565b600f6020526000908152604090205481565b3480156105fe57600080fd5b5061038d61060d366004612760565b611310565b34801561061e57600080fd5b506103d661062d3660046127ba565b61139c565b34801561063e57600080fd5b5061032f61146e565b34801561065357600080fd5b5061032f610662366004612760565b6114a4565b34801561067357600080fd5b506105246106823660046127ba565b6114d3565b34801561069357600080fd5b5061038d6106a2366004612760565b61159d565b3480156106b357600080fd5b506005546001600160a01b031661038d565b3480156106d157600080fd5b506103606115cd565b3480156106e657600080fd5b506103d66106f53660046127ba565b6001600160a01b031660009081526009602052604090205490565b34801561071c57600080fd5b5061032f61072b366004612961565b6115dc565b34801561073c57600080fd5b5061032f6116a1565b34801561075157600080fd5b5061032f610760366004612996565b6116de565b34801561077157600080fd5b5061032f610780366004612918565b611710565b34801561079157600080fd5b506103d666b1a2bc2ec5000081565b3480156107ac57600080fd5b506103606107bb366004612760565b61174d565b3480156107cc57600080fd5b506103d66107db3660046127ba565b6001600160a01b031660009081526008602052604090205490565b61032f610804366004612a16565b6118b2565b34801561081557600080fd5b5061032f6108243660046126da565b611bbe565b34801561083557600080fd5b506007546103d6565b34801561084a57600080fd5b506102fa610859366004612a95565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561089357600080fd5b5061032f6108a23660046127ba565b611bfb565b60006001600160e01b0319821663780e9d6360e01b14806108cc57506108cc82611c96565b92915050565b6005546001600160a01b031633146109055760405162461bcd60e51b81526004016108fc90612ac3565b60405180910390fd5b600c80549115156101000261ff0019909216919091179055565b60606000805461092e90612af8565b80601f016020809104026020016040519081016040528092919081815260200182805461095a90612af8565b80156109a75780601f1061097c576101008083540402835291602001916109a7565b820191906000526020600020905b81548152906001019060200180831161098a57829003601f168201915b5050505050905090565b60006109bc82611ce6565b610a1d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108fc565b506000908152600360205260409020546001600160a01b031690565b6000610a4482611310565b9050806001600160a01b0316836001600160a01b03161415610ab25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108fc565b336001600160a01b0382161480610ace5750610ace8133610859565b610b405760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108fc565b610b4a8383611d30565b505050565b6001600160a01b038116600090815260086020526040902054610bc35760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016108fc565b600060075447610bd39190612b49565b6001600160a01b0383166000908152600960209081526040808320546006546008909352908320549394509192610c0a9085612b61565b610c149190612b96565b610c1e9190612baa565b905080610c815760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016108fc565b6001600160a01b038316600090815260096020526040902054610ca5908290612b49565b6001600160a01b038416600090815260096020526040902055600754610ccc908290612b49565b600755610cd98382611d9e565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6005546001600160a01b03163314610d4a5760405162461bcd60e51b81526004016108fc90612ac3565b6000610d5560025490565b905061048c610d648483612b49565b1115610d825760405162461bcd60e51b81526004016108fc90612bc1565b610b4a8284611eb7565b610d963382611ef4565b610db25760405162461bcd60e51b81526004016108fc90612bf8565b610b4a838383611fde565b806000610dc960025490565b905060008211610e1b5760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420616d74206d7573742062652067726561746572207468616e20300060448201526064016108fc565b61048c610e288383612b49565b1115610e465760405162461bcd60e51b81526004016108fc90612bc1565b610e578266b1a2bc2ec50000612b61565b341015610e9b5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016108fc565b600c5460ff16158015610eb65750600c54610100900460ff16155b610f025760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f74206163746976650000000000000060448201526064016108fc565b333b15610f625760405162461bcd60e51b815260206004820152602860248201527f436f6e747261637420746f20636f6e7472616374206d696e74696e67206e6f7460448201526708185b1b1bddd95960c21b60648201526084016108fc565b333214610fb15760405162461bcd60e51b815260206004820152601c60248201527f53656e646572206d757374206265206f726967696e2077616c6c65740000000060448201526064016108fc565b600a8311156110025760405162461bcd60e51b815260206004820181905260248201527f4d696e7420616d742067726561746572207468616e206d61782070657220747860448201526064016108fc565b33600090815260106020526040902054603261101e8583612b49565b11156110925760405162461bcd60e51b815260206004820152603860248201527f546f74616c206d696e74732061667465722074782065786365656473206d617860448201527f206d696e747320666f72207468697320616464726573732e000000000000000060648201526084016108fc565b33600090815260106020526040812080548692906110b1908490612b49565b909155506110c190503385611eb7565b50505050565b60006110d28361139c565b82106110f05760405162461bcd60e51b81526004016108fc90612c49565b6000805b60025481101561115d576002818154811061111157611111612c79565b6000918252602090912001546001600160a01b038681169116141561114d57838214156111415791506108cc9050565b61114a82612c8f565b91505b61115681612c8f565b90506110f4565b5060405162461bcd60e51b81526004016108fc90612c49565b610b4a838383604051806020016040528060008152506116de565b6060600061119e8361139c565b905060008167ffffffffffffffff8111156111bb576111bb61288c565b6040519080825280602002602001820160405280156111e4578160200160208202803683370190505b509050600160005b83811080156111fd575061048c8211155b1561126857600061120d83611310565b9050866001600160a01b0316816001600160a01b03161415611255578284838151811061123c5761123c612c79565b60209081029190910101528161125181612c8f565b9250505b8261125f81612c8f565b935050506111ec565b5090949350505050565b600061127d60025490565b82106112cb5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f6200000000000000000060448201526064016108fc565b5090565b6005546001600160a01b031633146112f95760405162461bcd60e51b81526004016108fc90612ac3565b805161130c90600d906020840190612602565b5050565b6000806002838154811061132657611326612c79565b6000918252602090912001546001600160a01b03169050806108cc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108fc565b60006001600160a01b0382166114075760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108fc565b600254600090815b81811015611465576002818154811061142a5761142a612c79565b6000918252602090912001546001600160a01b03868116911614156114555761145283612c8f565b92505b61145e81612c8f565b905061140f565b50909392505050565b6005546001600160a01b031633146114985760405162461bcd60e51b81526004016108fc90612ac3565b6114a26000612134565b565b6005546001600160a01b031633146114ce5760405162461bcd60e51b81526004016108fc90612ac3565b600b55565b60606114de8261139c565b6000106114fd5760405162461bcd60e51b81526004016108fc90612c49565b60006115088361139c565b905060008167ffffffffffffffff8111156115255761152561288c565b60405190808252806020026020018201604052801561154e578160200160208202803683370190505b50905060005b828110156115955761156685826110c7565b82828151811061157857611578612c79565b60209081029190910101528061158d81612c8f565b915050611554565b509392505050565b6000600a82815481106115b2576115b2612c79565b6000918252602090912001546001600160a01b031692915050565b60606001805461092e90612af8565b6001600160a01b0382163314156116355760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108fc565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b031633146116cb5760405162461bcd60e51b81526004016108fc90612ac3565b600c805462ff0000191662010000179055565b6116e83383611ef4565b6117045760405162461bcd60e51b81526004016108fc90612bf8565b6110c184848484612186565b6005546001600160a01b0316331461173a5760405162461bcd60e51b81526004016108fc90612ac3565b805161130c90600e906020840190612602565b606061175882611ce6565b6117b45760405162461bcd60e51b815260206004820152602760248201527f4552433732314d657461646174613a20546f6b656e494420646f6573206e6f746044820152661032bc34b9ba1760c91b60648201526084016108fc565b600c5462010000900460ff1661185657600e80546117d190612af8565b80601f01602080910402602001604051908101604052809291908181526020018280546117fd90612af8565b801561184a5780601f1061181f5761010080835404028352916020019161184a565b820191906000526020600020905b81548152906001019060200180831161182d57829003601f168201915b50505050509050919050565b60006118606121b9565b9050600081511161188057604051806020016040528060008152506118ab565b8061188a846121c8565b60405160200161189b929190612caa565b6040516020818303038152906040525b9392505050565b8260006118be60025490565b9050600082116119105760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420616d74206d7573742062652067726561746572207468616e20300060448201526064016108fc565b61048c61191d8383612b49565b111561193b5760405162461bcd60e51b81526004016108fc90612bc1565b61194c8266b1a2bc2ec50000612b61565b3410156119905760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016108fc565b600c5460ff1680156119aa5750600c54610100900460ff16155b6119f65760405162461bcd60e51b815260206004820152601f60248201527f50726573616c652069732063757272656e746c79206e6f74206163746976650060448201526064016108fc565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120611a6a908585808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506122c692505050565b611aa65760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016108fc565b600a851115611af75760405162461bcd60e51b815260206004820181905260248201527f4d696e7420616d742067726561746572207468616e206d61782070657220747860448201526064016108fc565b336000908152600f60205260409020546032611b138783612b49565b1115611b875760405162461bcd60e51b815260206004820152603760248201527f546f74616c206d696e74732061667465722074782065786365656473206d617860448201527f206d696e747320666f722074686973206164647265737300000000000000000060648201526084016108fc565b336000908152600f602052604081208054889290611ba6908490612b49565b90915550611bb690503387611eb7565b505050505050565b6005546001600160a01b03163314611be85760405162461bcd60e51b81526004016108fc90612ac3565b600c805460ff1916911515919091179055565b6005546001600160a01b03163314611c255760405162461bcd60e51b81526004016108fc90612ac3565b6001600160a01b038116611c8a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fc565b611c9381612134565b50565b60006001600160e01b031982166380ac58cd60e01b1480611cc757506001600160e01b03198216635b5e139f60e01b145b806108cc57506301ffc9a760e01b6001600160e01b03198316146108cc565b600254600090821080156108cc575060006001600160a01b031660028381548110611d1357611d13612c79565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d6582611310565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611dee5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108fc565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611e3b576040519150601f19603f3d011682016040523d82523d6000602084013e611e40565b606091505b5050905080610b4a5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108fc565b6000611ec260025490565b905060005b828110156110c157611ee284611edd8385612b49565b6122d5565b80611eec81612c8f565b915050611ec7565b6000611eff82611ce6565b611f605760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108fc565b6000611f6b83611310565b9050806001600160a01b0316846001600160a01b03161480611fa65750836001600160a01b0316611f9b846109b1565b6001600160a01b0316145b80611fd657506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ff182611310565b6001600160a01b0316146120595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108fc565b6001600160a01b0382166120bb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108fc565b6120c6600082611d30565b81600282815481106120da576120da612c79565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612191848484611fde565b61219d848484846122ef565b6110c15760405162461bcd60e51b81526004016108fc90612ce9565b6060600d805461092e90612af8565b6060816121ec5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612216578061220081612c8f565b915061220f9050600a83612b96565b91506121f0565b60008167ffffffffffffffff8111156122315761223161288c565b6040519080825280601f01601f19166020018201604052801561225b576020820181803683370190505b5090505b8415611fd657612270600183612baa565b915061227d600a86612d3b565b612288906030612b49565b60f81b81838151811061229d5761229d612c79565b60200101906001600160f81b031916908160001a9053506122bf600a86612b96565b945061225f565b60006118ab82600b54856123ed565b61130c828260405180602001604052806000815250612403565b60006001600160a01b0384163b156123e257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612333903390899088908890600401612d4f565b6020604051808303816000875af192505050801561236e575060408051601f3d908101601f1916820190925261236b91810190612d8c565b60015b6123c8573d80801561239c576040519150601f19603f3d011682016040523d82523d6000602084013e6123a1565b606091505b5080516123c05760405162461bcd60e51b81526004016108fc90612ce9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fd6565b506001949350505050565b6000826123fa8584612436565b14949350505050565b61240d83836124da565b61241a60008484846122ef565b610b4a5760405162461bcd60e51b81526004016108fc90612ce9565b600081815b845181101561159557600085828151811061245857612458612c79565b6020026020010151905080831161249a5760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506124c7565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806124d281612c8f565b91505061243b565b6001600160a01b0382166125305760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108fc565b61253981611ce6565b156125865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108fc565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461260e90612af8565b90600052602060002090601f0160209004810192826126305760008555612676565b82601f1061264957805160ff1916838001178555612676565b82800160010185558215612676579182015b8281111561267657825182559160200191906001019061265b565b506112cb9291505b808211156112cb576000815560010161267e565b6001600160e01b031981168114611c9357600080fd5b6000602082840312156126ba57600080fd5b81356118ab81612692565b803580151581146126d557600080fd5b919050565b6000602082840312156126ec57600080fd5b6118ab826126c5565b60005b838110156127105781810151838201526020016126f8565b838111156110c15750506000910152565b600081518084526127398160208601602086016126f5565b601f01601f19169290920160200192915050565b6020815260006118ab6020830184612721565b60006020828403121561277257600080fd5b5035919050565b6001600160a01b0381168114611c9357600080fd5b600080604083850312156127a157600080fd5b82356127ac81612779565b946020939093013593505050565b6000602082840312156127cc57600080fd5b81356118ab81612779565b600080604083850312156127ea57600080fd5b8235915060208301356127fc81612779565b809150509250929050565b60008060006060848603121561281c57600080fd5b833561282781612779565b9250602084013561283781612779565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b8181101561288057835183529284019291840191600101612864565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156128bd576128bd61288c565b604051601f8501601f19908116603f011681019082821181831017156128e5576128e561288c565b816040528093508581528686860111156128fe57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561292a57600080fd5b813567ffffffffffffffff81111561294157600080fd5b8201601f8101841361295257600080fd5b611fd6848235602084016128a2565b6000806040838503121561297457600080fd5b823561297f81612779565b915061298d602084016126c5565b90509250929050565b600080600080608085870312156129ac57600080fd5b84356129b781612779565b935060208501356129c781612779565b925060408501359150606085013567ffffffffffffffff8111156129ea57600080fd5b8501601f810187136129fb57600080fd5b612a0a878235602084016128a2565b91505092959194509250565b600080600060408486031215612a2b57600080fd5b83359250602084013567ffffffffffffffff80821115612a4a57600080fd5b818601915086601f830112612a5e57600080fd5b813581811115612a6d57600080fd5b8760208260051b8501011115612a8257600080fd5b6020830194508093505050509250925092565b60008060408385031215612aa857600080fd5b8235612ab381612779565b915060208301356127fc81612779565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612b0c57607f821691505b60208210811415612b2d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612b5c57612b5c612b33565b500190565b6000816000190483118215151615612b7b57612b7b612b33565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612ba557612ba5612b80565b500490565b600082821015612bbc57612bbc612b33565b500390565b6020808252601b908201527f4d696e7420616d742065786365656473206d617820737570706c790000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612ca357612ca3612b33565b5060010190565b60008351612cbc8184602088016126f5565b835190830190612cd08183602088016126f5565b64173539b7b760d91b9101908152600501949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612d4a57612d4a612b80565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d8290830184612721565b9695505050505050565b600060208284031215612d9e57600080fd5b81516118ab8161269256fea264697066735822122009df2ea53569137a7f52cac8f00511ef454ebf080d7a5394c4a8a848efc8327064736f6c634300080a00330000000000000000000000000000000000000000000000000000000000000040063591d8ba50a0d5e97ccb881bd8c2305f000ea5fb4f1c5f2ed520cb4ec0e88b000000000000000000000000000000000000000000000000000000000000004a697066733a2f2f516d564345784d47504b4a7038696b51537752364b4c756d6946766759357258586535316948635451716a3746662f68696464656e2d6d657461646174612e6a736f6e00000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061028c5760003560e01c80636209ff891161015a578063b88d4fde116100c1578063d2cab0561161007a578063d2cab056146107f6578063ddb35a6914610809578063e33b7de314610829578063e985e9c51461083e578063ef7d4df6146104cf578063f2fde38b1461088757600080fd5b8063b88d4fde14610745578063bbaac02f14610765578063bf8fbbd214610785578063c87b56dd146107a0578063ce7c2ac2146107c0578063d06836ab1461053157600080fd5b80638b83209b116101135780638b83209b146106875780638da5cb5b146106a757806395d89b41146106c55780639852595c146106da578063a22cb46514610710578063a475b5dd1461073057600080fd5b80636209ff89146105c55780636352211e146105f257806370a0823114610612578063715018a6146106325780637cb64759146106475780638462151c1461066757600080fd5b80632f745c59116101fe578063438b6300116101b7578063438b6300146105045780634e26d1af146105315780634f6ccce714610546578063518302271461056657806355f804b3146105865780635c975abb146105a657600080fd5b80632f745c591461045757806332cb6b0c14610477578063330a37681461048d5780633a98ef39146104ba5780633d4311f7146104cf57806342842e0e146104e457600080fd5b8063095ea7b311610250578063095ea7b3146103a557806318160ddd146103c557806319165587146103e45780631df656b01461040457806323b872dd146104245780632db115441461044457600080fd5b806301ffc9a7146102da57806302329a291461030f57806303d7630c1461033157806306fdde031461034b578063081812fc1461036d57600080fd5b366102d5577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102e657600080fd5b506102fa6102f53660046126a8565b6108a7565b60405190151581526020015b60405180910390f35b34801561031b57600080fd5b5061032f61032a3660046126da565b6108d2565b005b34801561033d57600080fd5b50600c546102fa9060ff1681565b34801561035757600080fd5b5061036061091f565b604051610306919061274d565b34801561037957600080fd5b5061038d610388366004612760565b6109b1565b6040516001600160a01b039091168152602001610306565b3480156103b157600080fd5b5061032f6103c036600461278e565b610a39565b3480156103d157600080fd5b506002545b604051908152602001610306565b3480156103f057600080fd5b5061032f6103ff3660046127ba565b610b4f565b34801561041057600080fd5b5061032f61041f3660046127d7565b610d20565b34801561043057600080fd5b5061032f61043f366004612807565b610d8c565b61032f610452366004612760565b610dbd565b34801561046357600080fd5b506103d661047236600461278e565b6110c7565b34801561048357600080fd5b506103d661048c81565b34801561049957600080fd5b506103d66104a83660046127ba565b60106020526000908152604090205481565b3480156104c657600080fd5b506006546103d6565b3480156104db57600080fd5b506103d6600a81565b3480156104f057600080fd5b5061032f6104ff366004612807565b611176565b34801561051057600080fd5b5061052461051f3660046127ba565b611191565b6040516103069190612848565b34801561053d57600080fd5b506103d6603281565b34801561055257600080fd5b506103d6610561366004612760565b611272565b34801561057257600080fd5b50600c546102fa9062010000900460ff1681565b34801561059257600080fd5b5061032f6105a1366004612918565b6112cf565b3480156105b257600080fd5b50600c546102fa90610100900460ff1681565b3480156105d157600080fd5b506103d66105e03660046127ba565b600f6020526000908152604090205481565b3480156105fe57600080fd5b5061038d61060d366004612760565b611310565b34801561061e57600080fd5b506103d661062d3660046127ba565b61139c565b34801561063e57600080fd5b5061032f61146e565b34801561065357600080fd5b5061032f610662366004612760565b6114a4565b34801561067357600080fd5b506105246106823660046127ba565b6114d3565b34801561069357600080fd5b5061038d6106a2366004612760565b61159d565b3480156106b357600080fd5b506005546001600160a01b031661038d565b3480156106d157600080fd5b506103606115cd565b3480156106e657600080fd5b506103d66106f53660046127ba565b6001600160a01b031660009081526009602052604090205490565b34801561071c57600080fd5b5061032f61072b366004612961565b6115dc565b34801561073c57600080fd5b5061032f6116a1565b34801561075157600080fd5b5061032f610760366004612996565b6116de565b34801561077157600080fd5b5061032f610780366004612918565b611710565b34801561079157600080fd5b506103d666b1a2bc2ec5000081565b3480156107ac57600080fd5b506103606107bb366004612760565b61174d565b3480156107cc57600080fd5b506103d66107db3660046127ba565b6001600160a01b031660009081526008602052604090205490565b61032f610804366004612a16565b6118b2565b34801561081557600080fd5b5061032f6108243660046126da565b611bbe565b34801561083557600080fd5b506007546103d6565b34801561084a57600080fd5b506102fa610859366004612a95565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561089357600080fd5b5061032f6108a23660046127ba565b611bfb565b60006001600160e01b0319821663780e9d6360e01b14806108cc57506108cc82611c96565b92915050565b6005546001600160a01b031633146109055760405162461bcd60e51b81526004016108fc90612ac3565b60405180910390fd5b600c80549115156101000261ff0019909216919091179055565b60606000805461092e90612af8565b80601f016020809104026020016040519081016040528092919081815260200182805461095a90612af8565b80156109a75780601f1061097c576101008083540402835291602001916109a7565b820191906000526020600020905b81548152906001019060200180831161098a57829003601f168201915b5050505050905090565b60006109bc82611ce6565b610a1d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108fc565b506000908152600360205260409020546001600160a01b031690565b6000610a4482611310565b9050806001600160a01b0316836001600160a01b03161415610ab25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108fc565b336001600160a01b0382161480610ace5750610ace8133610859565b610b405760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108fc565b610b4a8383611d30565b505050565b6001600160a01b038116600090815260086020526040902054610bc35760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016108fc565b600060075447610bd39190612b49565b6001600160a01b0383166000908152600960209081526040808320546006546008909352908320549394509192610c0a9085612b61565b610c149190612b96565b610c1e9190612baa565b905080610c815760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016108fc565b6001600160a01b038316600090815260096020526040902054610ca5908290612b49565b6001600160a01b038416600090815260096020526040902055600754610ccc908290612b49565b600755610cd98382611d9e565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6005546001600160a01b03163314610d4a5760405162461bcd60e51b81526004016108fc90612ac3565b6000610d5560025490565b905061048c610d648483612b49565b1115610d825760405162461bcd60e51b81526004016108fc90612bc1565b610b4a8284611eb7565b610d963382611ef4565b610db25760405162461bcd60e51b81526004016108fc90612bf8565b610b4a838383611fde565b806000610dc960025490565b905060008211610e1b5760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420616d74206d7573742062652067726561746572207468616e20300060448201526064016108fc565b61048c610e288383612b49565b1115610e465760405162461bcd60e51b81526004016108fc90612bc1565b610e578266b1a2bc2ec50000612b61565b341015610e9b5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016108fc565b600c5460ff16158015610eb65750600c54610100900460ff16155b610f025760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f74206163746976650000000000000060448201526064016108fc565b333b15610f625760405162461bcd60e51b815260206004820152602860248201527f436f6e747261637420746f20636f6e7472616374206d696e74696e67206e6f7460448201526708185b1b1bddd95960c21b60648201526084016108fc565b333214610fb15760405162461bcd60e51b815260206004820152601c60248201527f53656e646572206d757374206265206f726967696e2077616c6c65740000000060448201526064016108fc565b600a8311156110025760405162461bcd60e51b815260206004820181905260248201527f4d696e7420616d742067726561746572207468616e206d61782070657220747860448201526064016108fc565b33600090815260106020526040902054603261101e8583612b49565b11156110925760405162461bcd60e51b815260206004820152603860248201527f546f74616c206d696e74732061667465722074782065786365656473206d617860448201527f206d696e747320666f72207468697320616464726573732e000000000000000060648201526084016108fc565b33600090815260106020526040812080548692906110b1908490612b49565b909155506110c190503385611eb7565b50505050565b60006110d28361139c565b82106110f05760405162461bcd60e51b81526004016108fc90612c49565b6000805b60025481101561115d576002818154811061111157611111612c79565b6000918252602090912001546001600160a01b038681169116141561114d57838214156111415791506108cc9050565b61114a82612c8f565b91505b61115681612c8f565b90506110f4565b5060405162461bcd60e51b81526004016108fc90612c49565b610b4a838383604051806020016040528060008152506116de565b6060600061119e8361139c565b905060008167ffffffffffffffff8111156111bb576111bb61288c565b6040519080825280602002602001820160405280156111e4578160200160208202803683370190505b509050600160005b83811080156111fd575061048c8211155b1561126857600061120d83611310565b9050866001600160a01b0316816001600160a01b03161415611255578284838151811061123c5761123c612c79565b60209081029190910101528161125181612c8f565b9250505b8261125f81612c8f565b935050506111ec565b5090949350505050565b600061127d60025490565b82106112cb5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f6200000000000000000060448201526064016108fc565b5090565b6005546001600160a01b031633146112f95760405162461bcd60e51b81526004016108fc90612ac3565b805161130c90600d906020840190612602565b5050565b6000806002838154811061132657611326612c79565b6000918252602090912001546001600160a01b03169050806108cc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108fc565b60006001600160a01b0382166114075760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108fc565b600254600090815b81811015611465576002818154811061142a5761142a612c79565b6000918252602090912001546001600160a01b03868116911614156114555761145283612c8f565b92505b61145e81612c8f565b905061140f565b50909392505050565b6005546001600160a01b031633146114985760405162461bcd60e51b81526004016108fc90612ac3565b6114a26000612134565b565b6005546001600160a01b031633146114ce5760405162461bcd60e51b81526004016108fc90612ac3565b600b55565b60606114de8261139c565b6000106114fd5760405162461bcd60e51b81526004016108fc90612c49565b60006115088361139c565b905060008167ffffffffffffffff8111156115255761152561288c565b60405190808252806020026020018201604052801561154e578160200160208202803683370190505b50905060005b828110156115955761156685826110c7565b82828151811061157857611578612c79565b60209081029190910101528061158d81612c8f565b915050611554565b509392505050565b6000600a82815481106115b2576115b2612c79565b6000918252602090912001546001600160a01b031692915050565b60606001805461092e90612af8565b6001600160a01b0382163314156116355760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108fc565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b031633146116cb5760405162461bcd60e51b81526004016108fc90612ac3565b600c805462ff0000191662010000179055565b6116e83383611ef4565b6117045760405162461bcd60e51b81526004016108fc90612bf8565b6110c184848484612186565b6005546001600160a01b0316331461173a5760405162461bcd60e51b81526004016108fc90612ac3565b805161130c90600e906020840190612602565b606061175882611ce6565b6117b45760405162461bcd60e51b815260206004820152602760248201527f4552433732314d657461646174613a20546f6b656e494420646f6573206e6f746044820152661032bc34b9ba1760c91b60648201526084016108fc565b600c5462010000900460ff1661185657600e80546117d190612af8565b80601f01602080910402602001604051908101604052809291908181526020018280546117fd90612af8565b801561184a5780601f1061181f5761010080835404028352916020019161184a565b820191906000526020600020905b81548152906001019060200180831161182d57829003601f168201915b50505050509050919050565b60006118606121b9565b9050600081511161188057604051806020016040528060008152506118ab565b8061188a846121c8565b60405160200161189b929190612caa565b6040516020818303038152906040525b9392505050565b8260006118be60025490565b9050600082116119105760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420616d74206d7573742062652067726561746572207468616e20300060448201526064016108fc565b61048c61191d8383612b49565b111561193b5760405162461bcd60e51b81526004016108fc90612bc1565b61194c8266b1a2bc2ec50000612b61565b3410156119905760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016108fc565b600c5460ff1680156119aa5750600c54610100900460ff16155b6119f65760405162461bcd60e51b815260206004820152601f60248201527f50726573616c652069732063757272656e746c79206e6f74206163746976650060448201526064016108fc565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120611a6a908585808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506122c692505050565b611aa65760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016108fc565b600a851115611af75760405162461bcd60e51b815260206004820181905260248201527f4d696e7420616d742067726561746572207468616e206d61782070657220747860448201526064016108fc565b336000908152600f60205260409020546032611b138783612b49565b1115611b875760405162461bcd60e51b815260206004820152603760248201527f546f74616c206d696e74732061667465722074782065786365656473206d617860448201527f206d696e747320666f722074686973206164647265737300000000000000000060648201526084016108fc565b336000908152600f602052604081208054889290611ba6908490612b49565b90915550611bb690503387611eb7565b505050505050565b6005546001600160a01b03163314611be85760405162461bcd60e51b81526004016108fc90612ac3565b600c805460ff1916911515919091179055565b6005546001600160a01b03163314611c255760405162461bcd60e51b81526004016108fc90612ac3565b6001600160a01b038116611c8a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fc565b611c9381612134565b50565b60006001600160e01b031982166380ac58cd60e01b1480611cc757506001600160e01b03198216635b5e139f60e01b145b806108cc57506301ffc9a760e01b6001600160e01b03198316146108cc565b600254600090821080156108cc575060006001600160a01b031660028381548110611d1357611d13612c79565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d6582611310565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611dee5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108fc565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611e3b576040519150601f19603f3d011682016040523d82523d6000602084013e611e40565b606091505b5050905080610b4a5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108fc565b6000611ec260025490565b905060005b828110156110c157611ee284611edd8385612b49565b6122d5565b80611eec81612c8f565b915050611ec7565b6000611eff82611ce6565b611f605760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108fc565b6000611f6b83611310565b9050806001600160a01b0316846001600160a01b03161480611fa65750836001600160a01b0316611f9b846109b1565b6001600160a01b0316145b80611fd657506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ff182611310565b6001600160a01b0316146120595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108fc565b6001600160a01b0382166120bb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108fc565b6120c6600082611d30565b81600282815481106120da576120da612c79565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612191848484611fde565b61219d848484846122ef565b6110c15760405162461bcd60e51b81526004016108fc90612ce9565b6060600d805461092e90612af8565b6060816121ec5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612216578061220081612c8f565b915061220f9050600a83612b96565b91506121f0565b60008167ffffffffffffffff8111156122315761223161288c565b6040519080825280601f01601f19166020018201604052801561225b576020820181803683370190505b5090505b8415611fd657612270600183612baa565b915061227d600a86612d3b565b612288906030612b49565b60f81b81838151811061229d5761229d612c79565b60200101906001600160f81b031916908160001a9053506122bf600a86612b96565b945061225f565b60006118ab82600b54856123ed565b61130c828260405180602001604052806000815250612403565b60006001600160a01b0384163b156123e257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612333903390899088908890600401612d4f565b6020604051808303816000875af192505050801561236e575060408051601f3d908101601f1916820190925261236b91810190612d8c565b60015b6123c8573d80801561239c576040519150601f19603f3d011682016040523d82523d6000602084013e6123a1565b606091505b5080516123c05760405162461bcd60e51b81526004016108fc90612ce9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fd6565b506001949350505050565b6000826123fa8584612436565b14949350505050565b61240d83836124da565b61241a60008484846122ef565b610b4a5760405162461bcd60e51b81526004016108fc90612ce9565b600081815b845181101561159557600085828151811061245857612458612c79565b6020026020010151905080831161249a5760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506124c7565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806124d281612c8f565b91505061243b565b6001600160a01b0382166125305760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108fc565b61253981611ce6565b156125865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108fc565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461260e90612af8565b90600052602060002090601f0160209004810192826126305760008555612676565b82601f1061264957805160ff1916838001178555612676565b82800160010185558215612676579182015b8281111561267657825182559160200191906001019061265b565b506112cb9291505b808211156112cb576000815560010161267e565b6001600160e01b031981168114611c9357600080fd5b6000602082840312156126ba57600080fd5b81356118ab81612692565b803580151581146126d557600080fd5b919050565b6000602082840312156126ec57600080fd5b6118ab826126c5565b60005b838110156127105781810151838201526020016126f8565b838111156110c15750506000910152565b600081518084526127398160208601602086016126f5565b601f01601f19169290920160200192915050565b6020815260006118ab6020830184612721565b60006020828403121561277257600080fd5b5035919050565b6001600160a01b0381168114611c9357600080fd5b600080604083850312156127a157600080fd5b82356127ac81612779565b946020939093013593505050565b6000602082840312156127cc57600080fd5b81356118ab81612779565b600080604083850312156127ea57600080fd5b8235915060208301356127fc81612779565b809150509250929050565b60008060006060848603121561281c57600080fd5b833561282781612779565b9250602084013561283781612779565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b8181101561288057835183529284019291840191600101612864565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156128bd576128bd61288c565b604051601f8501601f19908116603f011681019082821181831017156128e5576128e561288c565b816040528093508581528686860111156128fe57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561292a57600080fd5b813567ffffffffffffffff81111561294157600080fd5b8201601f8101841361295257600080fd5b611fd6848235602084016128a2565b6000806040838503121561297457600080fd5b823561297f81612779565b915061298d602084016126c5565b90509250929050565b600080600080608085870312156129ac57600080fd5b84356129b781612779565b935060208501356129c781612779565b925060408501359150606085013567ffffffffffffffff8111156129ea57600080fd5b8501601f810187136129fb57600080fd5b612a0a878235602084016128a2565b91505092959194509250565b600080600060408486031215612a2b57600080fd5b83359250602084013567ffffffffffffffff80821115612a4a57600080fd5b818601915086601f830112612a5e57600080fd5b813581811115612a6d57600080fd5b8760208260051b8501011115612a8257600080fd5b6020830194508093505050509250925092565b60008060408385031215612aa857600080fd5b8235612ab381612779565b915060208301356127fc81612779565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612b0c57607f821691505b60208210811415612b2d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612b5c57612b5c612b33565b500190565b6000816000190483118215151615612b7b57612b7b612b33565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612ba557612ba5612b80565b500490565b600082821015612bbc57612bbc612b33565b500390565b6020808252601b908201527f4d696e7420616d742065786365656473206d617820737570706c790000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612ca357612ca3612b33565b5060010190565b60008351612cbc8184602088016126f5565b835190830190612cd08183602088016126f5565b64173539b7b760d91b9101908152600501949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612d4a57612d4a612b80565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d8290830184612721565b9695505050505050565b600060208284031215612d9e57600080fd5b81516118ab8161269256fea264697066735822122009df2ea53569137a7f52cac8f00511ef454ebf080d7a5394c4a8a848efc8327064736f6c634300080a0033

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

0000000000000000000000000000000000000000000000000000000000000040063591d8ba50a0d5e97ccb881bd8c2305f000ea5fb4f1c5f2ed520cb4ec0e88b000000000000000000000000000000000000000000000000000000000000004a697066733a2f2f516d564345784d47504b4a7038696b51537752364b4c756d6946766759357258586535316948635451716a3746662f68696464656e2d6d657461646174612e6a736f6e00000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _hiddenURI (string): ipfs://QmVCExMGPKJp8ikQSwR6KLumiFvgY5rXXe51iHcTQqj7Ff/hidden-metadata.json
Arg [1] : _merkleRoot (bytes32): 0x063591d8ba50a0d5e97ccb881bd8c2305f000ea5fb4f1c5f2ed520cb4ec0e88b

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 063591d8ba50a0d5e97ccb881bd8c2305f000ea5fb4f1c5f2ed520cb4ec0e88b
Arg [2] : 000000000000000000000000000000000000000000000000000000000000004a
Arg [3] : 697066733a2f2f516d564345784d47504b4a7038696b51537752364b4c756d69
Arg [4] : 46766759357258586535316948635451716a3746662f68696464656e2d6d6574
Arg [5] : 61646174612e6a736f6e00000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

40395:5885:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25100:40;734:10;25100:40;;;-1:-1:-1;;;;;206:32:1;;;188:51;;25130:9:0;270:2:1;255:18;;248:34;161:18;25100:40:0;;;;;;;40395:5885;;;;;18502:301;;;;;;;;;;-1:-1:-1;18502:301:0;;;;;:::i;:::-;;:::i;:::-;;;844:14:1;;837:22;819:41;;807:2;792:18;18502:301:0;;;;;;;;45911:79;;;;;;;;;;-1:-1:-1;45911:79:0;;;;;:::i;:::-;;:::i;:::-;;40845:36;;;;;;;;;;-1:-1:-1;40845:36:0;;;;;;;;12067:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;12707:308::-;;;;;;;;;;-1:-1:-1;12707:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2321:32:1;;;2303:51;;2291:2;2276:18;12707:308:0;2157:203:1;12287:412:0;;;;;;;;;;-1:-1:-1;12287:412:0;;;;;:::i;:::-;;:::i;19781:110::-;;;;;;;;;;-1:-1:-1;19869:7:0;:14;19781:110;;;2967:25:1;;;2955:2;2940:18;19781:110:0;2821:177:1;26306:639:0;;;;;;;;;;-1:-1:-1;26306:639:0;;;;;:::i;:::-;;:::i;45419:258::-;;;;;;;;;;-1:-1:-1;45419:258:0;;;;;:::i;:::-;;:::i;13580:376::-;;;;;;;;;;-1:-1:-1;13580:376:0;;;;;:::i;:::-;;:::i;43465:763::-;;;;;;:::i;:::-;;:::i;18811:504::-;;;;;;;;;;-1:-1:-1;18811:504:0;;;;;:::i;:::-;;:::i;40489:41::-;;;;;;;;;;;;40526:4;40489:41;;41076:61;;;;;;;;;;-1:-1:-1;41076:61:0;;;;;:::i;:::-;;;;;;;;;;;;;;25231:91;;;;;;;;;;-1:-1:-1;25302:12:0;;25231:91;;40649:51;;;;;;;;;;;;40698:2;40649:51;;13964:185;;;;;;;;;;-1:-1:-1;13964:185:0;;;;;:::i;:::-;;:::i;44236:680::-;;;;;;;;;;-1:-1:-1;44236:680:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40707:50::-;;;;;;;;;;;;40755:2;40707:50;;19899:244;;;;;;;;;;-1:-1:-1;19899:244:0;;;;;:::i;:::-;;:::i;40920:28::-;;;;;;;;;;-1:-1:-1;40920:28:0;;;;;;;;;;;45685:104;;;;;;;;;;-1:-1:-1;45685:104:0;;;;;:::i;:::-;;:::i;40888:25::-;;;;;;;;;;-1:-1:-1;40888:25:0;;;;;;;;;;;41005:64;;;;;;;;;;-1:-1:-1;41005:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;11733:326;;;;;;;;;;-1:-1:-1;11733:326:0;;;;;:::i;:::-;;:::i;11207:518::-;;;;;;;;;;-1:-1:-1;11207:518:0;;;;;:::i;:::-;;:::i;21816:94::-;;;;;;;;;;;;;:::i;46185:92::-;;;;;;;;;;-1:-1:-1;46185:92:0;;;;;:::i;:::-;;:::i;19323:450::-;;;;;;;;;;-1:-1:-1;19323:450:0;;;;;:::i;:::-;;:::i;26006:100::-;;;;;;;;;;-1:-1:-1;26006:100:0;;;;;:::i;:::-;;:::i;21165:87::-;;;;;;;;;;-1:-1:-1;21238:6:0;;-1:-1:-1;;;;;21238:6:0;21165:87;;12175:104;;;;;;;;;;;;;:::i;25806:109::-;;;;;;;;;;-1:-1:-1;25806:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;25889:18:0;25862:7;25889:18;;;:9;:18;;;;;;;25806:109;13023:327;;;;;;;;;;-1:-1:-1;13023:327:0;;;;;:::i;:::-;;:::i;45998:69::-;;;;;;;;;;;;;:::i;14157:365::-;;;;;;;;;;-1:-1:-1;14157:365:0;;;;;:::i;:::-;;:::i;45797:106::-;;;;;;;;;;-1:-1:-1;45797:106:0;;;;;:::i;:::-;;:::i;40764:41::-;;;;;;;;;;;;40795:10;40764:41;;44924:433;;;;;;;;;;-1:-1:-1;44924:433:0;;;;;:::i;:::-;;:::i;25602:105::-;;;;;;;;;;-1:-1:-1;25602:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;25683:16:0;25656:7;25683:16;;;:7;:16;;;;;;;25602:105;42755:702;;;;;;:::i;:::-;;:::i;46075:102::-;;;;;;;;;;-1:-1:-1;46075:102:0;;;;;:::i;:::-;;:::i;25416:95::-;;;;;;;;;;-1:-1:-1;25489:14:0;;25416:95;;13358:214;;;;;;;;;;-1:-1:-1;13358:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;13529:25:0;;;13500:4;13529:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;13358:214;22065:229;;;;;;;;;;-1:-1:-1;22065:229:0;;;;;:::i;:::-;;:::i;18502:301::-;18650:4;-1:-1:-1;;;;;;18692:50:0;;-1:-1:-1;;;18692:50:0;;:103;;;18759:36;18783:11;18759:23;:36::i;:::-;18672:123;18502:301;-1:-1:-1;;18502:301:0:o;45911:79::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;;;;;;;;;45967:6:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;45967:15:0;;::::1;::::0;;;::::1;::::0;;45911:79::o;12067:100::-;12121:13;12154:5;12147:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12067:100;:::o;12707:308::-;12828:7;12875:16;12883:7;12875;:16::i;:::-;12853:110;;;;-1:-1:-1;;;12853:110:0;;9492:2:1;12853:110:0;;;9474:21:1;9531:2;9511:18;;;9504:30;9570:34;9550:18;;;9543:62;-1:-1:-1;;;9621:18:1;;;9614:42;9673:19;;12853:110:0;9290:408:1;12853:110:0;-1:-1:-1;12983:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;12983:24:0;;12707:308::o;12287:412::-;12368:13;12384:24;12400:7;12384:15;:24::i;:::-;12368:40;;12433:5;-1:-1:-1;;;;;12427:11:0;:2;-1:-1:-1;;;;;12427:11:0;;;12419:57;;;;-1:-1:-1;;;12419:57:0;;9905:2:1;12419:57:0;;;9887:21:1;9944:2;9924:18;;;9917:30;9983:34;9963:18;;;9956:62;-1:-1:-1;;;10034:18:1;;;10027:31;10075:19;;12419:57:0;9703:397:1;12419:57:0;734:10;-1:-1:-1;;;;;12511:21:0;;;;:62;;-1:-1:-1;12536:37:0;12553:5;734:10;13358:214;:::i;12536:37::-;12489:168;;;;-1:-1:-1;;;12489:168:0;;10307:2:1;12489:168:0;;;10289:21:1;10346:2;10326:18;;;10319:30;10385:34;10365:18;;;10358:62;10456:26;10436:18;;;10429:54;10500:19;;12489:168:0;10105:420:1;12489:168:0;12670:21;12679:2;12683:7;12670:8;:21::i;:::-;12357:342;12287:412;;:::o;26306:639::-;-1:-1:-1;;;;;26382:16:0;;26401:1;26382:16;;;:7;:16;;;;;;26374:71;;;;-1:-1:-1;;;26374:71:0;;10732:2:1;26374:71:0;;;10714:21:1;10771:2;10751:18;;;10744:30;10810:34;10790:18;;;10783:62;-1:-1:-1;;;10861:18:1;;;10854:36;10907:19;;26374:71:0;10530:402:1;26374:71:0;26458:21;26506:14;;26482:21;:38;;;;:::i;:::-;-1:-1:-1;;;;;26627:18:0;;26531:15;26627:18;;;:9;:18;;;;;;;;;26599:12;;26566:7;:16;;;;;;;26458:62;;-1:-1:-1;26531:15:0;;26550:32;;26458:62;26550:32;:::i;:::-;26549:62;;;;:::i;:::-;:96;;;;:::i;:::-;26531:114;-1:-1:-1;26666:12:0;26658:68;;;;-1:-1:-1;;;26658:68:0;;11964:2:1;26658:68:0;;;11946:21:1;12003:2;11983:18;;;11976:30;12042:34;12022:18;;;12015:62;-1:-1:-1;;;12093:18:1;;;12086:41;12144:19;;26658:68:0;11762:407:1;26658:68:0;-1:-1:-1;;;;;26760:18:0;;;;;;:9;:18;;;;;;:28;;26781:7;;26760:28;:::i;:::-;-1:-1:-1;;;;;26739:18:0;;;;;;:9;:18;;;;;:49;26816:14;;:24;;26833:7;;26816:24;:::i;:::-;26799:14;:41;26853:35;26871:7;26880;26853:17;:35::i;:::-;26904:33;;;-1:-1:-1;;;;;206:32:1;;188:51;;270:2;255:18;;248:34;;;26904:33:0;;161:18:1;26904:33:0;;;;;;;26363:582;;26306:639;:::o;45419:258::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;45512:14:::1;45529:13;19869:7:::0;:14;;19781:110;45529:13:::1;45512:30:::0;-1:-1:-1;40526:4:0::1;45561:20;45570:11:::0;45512:30;45561:20:::1;:::i;:::-;:34;;45553:74;;;;-1:-1:-1::0;;;45553:74:0::1;;;;;;;:::i;:::-;45638:31;45646:9;45657:11;45638:7;:31::i;13580:376::-:0;13789:41;734:10;13822:7;13789:18;:41::i;:::-;13767:140;;;;-1:-1:-1;;;13767:140:0;;;;;;;:::i;:::-;13920:28;13930:4;13936:2;13940:7;13920:9;:28::i;43465:763::-;43533:11;41704:14;41721:13;19869:7;:14;;19781:110;41721:13;41704:30;;41767:1;41753:11;:15;41745:59;;;;-1:-1:-1;;;41745:59:0;;13437:2:1;41745:59:0;;;13419:21:1;13476:2;13456:18;;;13449:30;13515:33;13495:18;;;13488:61;13566:18;;41745:59:0;13235:355:1;41745:59:0;40526:4;41823:20;41832:11;41823:6;:20;:::i;:::-;:34;;41815:74;;;;-1:-1:-1;;;41815:74:0;;;;;;;:::i;:::-;41921:18;41928:11;40795:10;41921:18;:::i;:::-;41908:9;:31;;41900:62;;;;-1:-1:-1;;;41900:62:0;;13797:2:1;41900:62:0;;;13779:21:1;13836:2;13816:18;;;13809:30;-1:-1:-1;;;13855:18:1;;;13848:48;13913:18;;41900:62:0;13595:342:1;41900:62:0;43566:17:::1;::::0;::::1;;43565:18;:29:::0;::::1;;;-1:-1:-1::0;43588:6:0::1;::::0;::::1;::::0;::::1;;;43587:7;43565:29;43557:67;;;::::0;-1:-1:-1;;;43557:67:0;;14144:2:1;43557:67:0::1;::::0;::::1;14126:21:1::0;14183:2;14163:18;;;14156:30;14222:27;14202:18;;;14195:55;14267:18;;43557:67:0::1;13942:349:1::0;43557:67:0::1;43663:10;28774:20:::0;28822:8;43635:84:::1;;;::::0;-1:-1:-1;;;43635:84:0;;14498:2:1;43635:84:0::1;::::0;::::1;14480:21:1::0;14537:2;14517:18;;;14510:30;14576:34;14556:18;;;14549:62;-1:-1:-1;;;14627:18:1;;;14620:38;14675:19;;43635:84:0::1;14296:404:1::0;43635:84:0::1;43738:10;43752:9;43738:23;43730:64;;;::::0;-1:-1:-1;;;43730:64:0;;14907:2:1;43730:64:0::1;::::0;::::1;14889:21:1::0;14946:2;14926:18;;;14919:30;14985;14965:18;;;14958:58;15033:18;;43730:64:0::1;14705:352:1::0;43730:64:0::1;40698:2;43813:11;:37;;43805:82;;;::::0;-1:-1:-1;;;43805:82:0;;15264:2:1;43805:82:0::1;::::0;::::1;15246:21:1::0;;;15283:18;;;15276:30;15342:34;15322:18;;;15315:62;15394:18;;43805:82:0::1;15062:356:1::0;43805:82:0::1;43963:10;43908:25;43936:38:::0;;;:26:::1;:38;::::0;;;;;40755:2:::1;43994:31;44014:11:::0;43936:38;43994:31:::1;:::i;:::-;:56;;43986:125;;;::::0;-1:-1:-1;;;43986:125:0;;15625:2:1;43986:125:0::1;::::0;::::1;15607:21:1::0;15664:2;15644:18;;;15637:30;15703:34;15683:18;;;15676:62;15774:26;15754:18;;;15747:54;15818:19;;43986:125:0::1;15423:420:1::0;43986:125:0::1;44149:10;44122:38;::::0;;;:26:::1;:38;::::0;;;;:53;;44164:11;;44122:38;:53:::1;::::0;44164:11;;44122:53:::1;:::i;:::-;::::0;;;-1:-1:-1;44188:32:0::1;::::0;-1:-1:-1;44196:10:0::1;44208:11:::0;44188:7:::1;:32::i;:::-;43546:682;41693:289:::0;43465:763;;:::o;18811:504::-;18936:15;18985:24;19003:5;18985:17;:24::i;:::-;18977:5;:32;18969:67;;;;-1:-1:-1;;;18969:67:0;;;;;;;:::i;:::-;19047:13;19076:9;19071:186;19091:7;:14;19087:18;;19071:186;;;19140:7;19148:1;19140:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;19131:19:0;;;19140:10;;19131:19;19127:119;;;19184:5;19175;:14;19171:59;;;19198:1;-1:-1:-1;19191:8:0;;-1:-1:-1;19191:8:0;19171:59;19223:7;;;:::i;:::-;;;19171:59;19107:3;;;:::i;:::-;;;19071:186;;;-1:-1:-1;19267:40:0;;-1:-1:-1;;;19267:40:0;;;;;;;:::i;13964:185::-;14102:39;14119:4;14125:2;14129:7;14102:39;;;;;;;;;;;;:16;:39::i;44236:680::-;44296:16;44325:23;44351:17;44361:6;44351:9;:17::i;:::-;44325:43;;44379:30;44426:15;44412:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44412:30:0;-1:-1:-1;44379:63:0;-1:-1:-1;44478:1:0;44453:22;44530:348;44555:15;44537;:33;:65;;;;;40526:4;44574:14;:28;;44537:65;44530:348;;;44619:25;44647:23;44655:14;44647:7;:23::i;:::-;44619:51;;44710:6;-1:-1:-1;;;;;44689:27:0;:17;-1:-1:-1;;;;;44689:27:0;;44685:151;;;44770:14;44737:13;44751:15;44737:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;44803:17;;;;:::i;:::-;;;;44685:151;44850:16;;;;:::i;:::-;;;;44604:274;44530:348;;;-1:-1:-1;44895:13:0;;44236:680;-1:-1:-1;;;;44236:680:0:o;19899:244::-;20019:7;20060:24;19869:7;:14;;19781:110;20060:24;20052:5;:32;20044:68;;;;-1:-1:-1;;;20044:68:0;;16673:2:1;20044:68:0;;;16655:21:1;16712:2;16692:18;;;16685:30;16751:25;16731:18;;;16724:53;16794:18;;20044:68:0;16471:347:1;20044:68:0;-1:-1:-1;20130:5:0;19899:244::o;45685:104::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;45760:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45685:104:::0;:::o;11733:326::-;11850:7;11875:13;11891:7;11899;11891:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;11891:16:0;;-1:-1:-1;11940:19:0;11918:110;;;;-1:-1:-1;;;11918:110:0;;17025:2:1;11918:110:0;;;17007:21:1;17064:2;17044:18;;;17037:30;17103:34;17083:18;;;17076:62;-1:-1:-1;;;17154:18:1;;;17147:39;17203:19;;11918:110:0;16823:405:1;11207:518:0;11324:7;-1:-1:-1;;;;;11371:19:0;;11349:111;;;;-1:-1:-1;;;11349:111:0;;17435:2:1;11349:111:0;;;17417:21:1;17474:2;17454:18;;;17447:30;17513:34;17493:18;;;17486:62;-1:-1:-1;;;17564:18:1;;;17557:40;17614:19;;11349:111:0;17233:406:1;11349:111:0;11516:7;:14;11471:13;;;11541:130;11565:6;11561:1;:10;11541:130;;;11606:7;11614:1;11606:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;11597:19:0;;;11606:10;;11597:19;11593:67;;;11637:7;;;:::i;:::-;;;11593:67;11573:3;;;:::i;:::-;;;11541:130;;;-1:-1:-1;11712:5:0;;11207:518;-1:-1:-1;;;11207:518:0:o;21816:94::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;21881:21:::1;21899:1;21881:9;:21::i;:::-;21816:94::o:0;46185:92::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;46251:10:::1;:18:::0;46185:92::o;19323:450::-;19409:16;19455:24;19473:5;19455:17;:24::i;:::-;19451:1;:28;19443:63;;;;-1:-1:-1;;;19443:63:0;;;;;;;:::i;:::-;19517:18;19538:16;19548:5;19538:9;:16::i;:::-;19517:37;;19565:25;19607:10;19593:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19593:25:0;;19565:53;;19634:9;19629:111;19653:10;19649:1;:14;19629:111;;;19699:29;19719:5;19726:1;19699:19;:29::i;:::-;19685:8;19694:1;19685:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;19665:3;;;;:::i;:::-;;;;19629:111;;;-1:-1:-1;19757:8:0;19323:450;-1:-1:-1;;;19323:450:0:o;26006:100::-;26057:7;26084;26092:5;26084:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;26084:14:0;;26006:100;-1:-1:-1;;26006:100:0:o;12175:104::-;12231:13;12264:7;12257:14;;;;;:::i;13023:327::-;-1:-1:-1;;;;;13158:24:0;;734:10;13158:24;;13150:62;;;;-1:-1:-1;;;13150:62:0;;17846:2:1;13150:62:0;;;17828:21:1;17885:2;17865:18;;;17858:30;17924:27;17904:18;;;17897:55;17969:18;;13150:62:0;17644:349:1;13150:62:0;734:10;13225:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;13225:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;13225:53:0;;;;;;;;;;13294:48;;819:41:1;;;13225:42:0;;734:10;13294:48;;792:18:1;13294:48:0;;;;;;;13023:327;;:::o;45998:69::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;46044:8:::1;:15:::0;;-1:-1:-1;;46044:15:0::1;::::0;::::1;::::0;;45998:69::o;14157:365::-;14346:41;734:10;14379:7;14346:18;:41::i;:::-;14324:140;;;;-1:-1:-1;;;14324:140:0;;;;;;;:::i;:::-;14475:39;14489:4;14495:2;14499:7;14508:5;14475:13;:39::i;45797:106::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;45873:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;44924:433::-:0;44998:13;45032:17;45040:8;45032:7;:17::i;:::-;45024:69;;;;-1:-1:-1;;;45024:69:0;;18200:2:1;45024:69:0;;;18182:21:1;18239:2;18219:18;;;18212:30;18278:34;18258:18;;;18251:62;-1:-1:-1;;;18329:18:1;;;18322:37;18376:19;;45024:69:0;17998:403:1;45024:69:0;45108:8;;;;;;;45104:66;;45149:9;45142:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44924:433;;;:::o;45104:66::-;45180:28;45211:10;:8;:10::i;:::-;45180:41;;45270:1;45245:14;45239:28;:32;:110;;;;;;;;;;;;;;;;;45298:14;45314:19;:8;:17;:19::i;:::-;45281:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45239:110;45232:117;44924:433;-1:-1:-1;;;44924:433:0:o;42755:702::-;42852:11;41704:14;41721:13;19869:7;:14;;19781:110;41721:13;41704:30;;41767:1;41753:11;:15;41745:59;;;;-1:-1:-1;;;41745:59:0;;13437:2:1;41745:59:0;;;13419:21:1;13476:2;13456:18;;;13449:30;13515:33;13495:18;;;13488:61;13566:18;;41745:59:0;13235:355:1;41745:59:0;40526:4;41823:20;41832:11;41823:6;:20;:::i;:::-;:34;;41815:74;;;;-1:-1:-1;;;41815:74:0;;;;;;;:::i;:::-;41921:18;41928:11;40795:10;41921:18;:::i;:::-;41908:9;:31;;41900:62;;;;-1:-1:-1;;;41900:62:0;;13797:2:1;41900:62:0;;;13779:21:1;13836:2;13816:18;;;13809:30;-1:-1:-1;;;13855:18:1;;;13848:48;13913:18;;41900:62:0;13595:342:1;41900:62:0;42884:17:::1;::::0;::::1;;:28:::0;::::1;;;-1:-1:-1::0;42906:6:0::1;::::0;::::1;::::0;::::1;;;42905:7;42884:28;42876:72;;;::::0;-1:-1:-1;;;42876:72:0;;19250:2:1;42876:72:0::1;::::0;::::1;19232:21:1::0;19289:2;19269:18;;;19262:30;19328:33;19308:18;;;19301:61;19379:18;;42876:72:0::1;19048:355:1::0;42876:72:0::1;42242:26:::0;;;42985:10:::1;23489:2:1::0;23485:15;-1:-1:-1;;23481:53:1;42242:26:0;;;;23469:66:1;;;;42242:26:0;;;;;;;;;23551:12:1;;;;42242:26:0;;;42232:37;;;;;42967::::1;::::0;42998:5:::1;;42967:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;42967:11:0::1;::::0;-1:-1:-1;;;42967:37:0:i:1;:::-;42959:63;;;::::0;-1:-1:-1;;;42959:63:0;;19610:2:1;42959:63:0::1;::::0;::::1;19592:21:1::0;19649:2;19629:18;;;19622:30;-1:-1:-1;;;19668:18:1;;;19661:43;19721:18;;42959:63:0::1;19408:337:1::0;42959:63:0::1;40582:2;43041:11;:33;;43033:78;;;::::0;-1:-1:-1;;;43033:78:0;;15264:2:1;43033:78:0::1;::::0;::::1;15246:21:1::0;;;15283:18;;;15276:30;15342:34;15322:18;;;15315:62;15394:18;;43033:78:0::1;15062:356:1::0;43033:78:0::1;43182:10;43124:25;43152:41:::0;;;:29:::1;:41;::::0;;;;;40640:2:::1;43212:31;43232:11:::0;43152:41;43212:31:::1;:::i;:::-;:57;;43204:125;;;::::0;-1:-1:-1;;;43204:125:0;;19952:2:1;43204:125:0::1;::::0;::::1;19934:21:1::0;19991:2;19971:18;;;19964:30;20030:34;20010:18;;;20003:62;20101:25;20081:18;;;20074:53;20144:19;;43204:125:0::1;19750:419:1::0;43204:125:0::1;43370:10;43340:41;::::0;;;:29:::1;:41;::::0;;;;:56;;43385:11;;43340:41;:56:::1;::::0;43385:11;;43340:56:::1;:::i;:::-;::::0;;;-1:-1:-1;43417:32:0::1;::::0;-1:-1:-1;43425:10:0::1;43437:11:::0;43417:7:::1;:32::i;:::-;42865:592;41693:289:::0;42755:702;;;;:::o;46075:102::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;46143:17:::1;:26:::0;;-1:-1:-1;;46143:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46075:102::o;22065:229::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22168:22:0;::::1;22146:110;;;::::0;-1:-1:-1;;;22146:110:0;;20376:2:1;22146:110:0::1;::::0;::::1;20358:21:1::0;20415:2;20395:18;;;20388:30;20454:34;20434:18;;;20427:62;-1:-1:-1;;;20505:18:1;;;20498:36;20551:19;;22146:110:0::1;20174:402:1::0;22146:110:0::1;22267:19;22277:8;22267:9;:19::i;:::-;22065:229:::0;:::o;10844:355::-;10991:4;-1:-1:-1;;;;;;11033:40:0;;-1:-1:-1;;;11033:40:0;;:105;;-1:-1:-1;;;;;;;11090:48:0;;-1:-1:-1;;;11090:48:0;11033:105;:158;;;-1:-1:-1;;;;;;;;;;8613:40:0;;;11155:36;8454:207;14890:155;14989:7;:14;14955:4;;14979:24;;:58;;;;;15035:1;-1:-1:-1;;;;;15007:30:0;:7;15015;15007:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;15007:16:0;:30;;14972:65;14890:155;-1:-1:-1;;14890:155:0:o;17104:175::-;17179:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;17179:29:0;-1:-1:-1;;;;;17179:29:0;;;;;;;;:24;;17233;17179;17233:15;:24::i;:::-;-1:-1:-1;;;;;17224:47:0;;;;;;;;;;;17104:175;;:::o;29773:391::-;29902:6;29877:21;:31;;29855:110;;;;-1:-1:-1;;;29855:110:0;;20783:2:1;29855:110:0;;;20765:21:1;20822:2;20802:18;;;20795:30;20861:31;20841:18;;;20834:59;20910:18;;29855:110:0;20581:353:1;29855:110:0;29979:12;29997:9;-1:-1:-1;;;;;29997:14:0;30019:6;29997:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29978:52;;;30063:7;30041:115;;;;-1:-1:-1;;;30041:115:0;;21351:2:1;30041:115:0;;;21333:21:1;21390:2;21370:18;;;21363:30;21429:34;21409:18;;;21402:62;21500:28;21480:18;;;21473:56;21546:19;;30041:115:0;21149:422:1;42462:226:0;42539:14;42556:13;19869:7;:14;;19781:110;42556:13;42539:30;;42585:9;42580:101;42604:11;42600:1;:15;42580:101;;;42637:32;42647:9;42658:10;42667:1;42658:6;:10;:::i;:::-;42637:9;:32::i;:::-;42617:3;;;;:::i;:::-;;;;42580:101;;15053:453;15182:4;15226:16;15234:7;15226;:16::i;:::-;15204:110;;;;-1:-1:-1;;;15204:110:0;;21778:2:1;15204:110:0;;;21760:21:1;21817:2;21797:18;;;21790:30;21856:34;21836:18;;;21829:62;-1:-1:-1;;;21907:18:1;;;21900:42;21959:19;;15204:110:0;21576:408:1;15204:110:0;15325:13;15341:24;15357:7;15341:15;:24::i;:::-;15325:40;;15395:5;-1:-1:-1;;;;;15384:16:0;:7;-1:-1:-1;;;;;15384:16:0;;:64;;;;15441:7;-1:-1:-1;;;;;15417:31:0;:20;15429:7;15417:11;:20::i;:::-;-1:-1:-1;;;;;15417:31:0;;15384:64;:113;;;-1:-1:-1;;;;;;13529:25:0;;;13500:4;13529:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;15465:32;15376:122;15053:453;-1:-1:-1;;;;15053:453:0:o;16594:502::-;16768:4;-1:-1:-1;;;;;16740:32:0;:24;16756:7;16740:15;:24::i;:::-;-1:-1:-1;;;;;16740:32:0;;16718:123;;;;-1:-1:-1;;;16718:123:0;;22191:2:1;16718:123:0;;;22173:21:1;22230:2;22210:18;;;22203:30;22269:34;22249:18;;;22242:62;-1:-1:-1;;;22320:18:1;;;22313:39;22369:19;;16718:123:0;21989:405:1;16718:123:0;-1:-1:-1;;;;;16860:16:0;;16852:65;;;;-1:-1:-1;;;16852:65:0;;22601:2:1;16852:65:0;;;22583:21:1;22640:2;22620:18;;;22613:30;22679:34;22659:18;;;22652:62;-1:-1:-1;;;22730:18:1;;;22723:34;22774:19;;16852:65:0;22399:400:1;16852:65:0;16982:29;16999:1;17003:7;16982:8;:29::i;:::-;17041:2;17022:7;17030;17022:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;17022:21:0;-1:-1:-1;;;;;17022:21:0;;;;;;17061:27;;17080:7;;17061:27;;;;;;;;;;17022:16;17061:27;16594:502;;;:::o;22302:173::-;22377:6;;;-1:-1:-1;;;;;22394:17:0;;;-1:-1:-1;;;;;;22394:17:0;;;;;;;22427:40;;22377:6;;;22394:17;22377:6;;22427:40;;22358:16;;22427:40;22347:128;22302:173;:::o;14530:352::-;14687:28;14697:4;14703:2;14707:7;14687:9;:28::i;:::-;14748:48;14771:4;14777:2;14781:7;14790:5;14748:22;:48::i;:::-;14726:148;;;;-1:-1:-1;;;14726:148:0;;;;;;;:::i;42042:99::-;42093:13;42126:7;42119:14;;;;;:::i;36554:723::-;36610:13;36831:10;36827:53;;-1:-1:-1;;36858:10:0;;;;;;;;;;;;-1:-1:-1;;;36858:10:0;;;;;36554:723::o;36827:53::-;36905:5;36890:12;36946:78;36953:9;;36946:78;;36979:8;;;;:::i;:::-;;-1:-1:-1;37002:10:0;;-1:-1:-1;37010:2:0;37002:10;;:::i;:::-;;;36946:78;;;37034:19;37066:6;37056:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37056:17:0;;37034:39;;37084:154;37091:10;;37084:154;;37118:11;37128:1;37118:11;;:::i;:::-;;-1:-1:-1;37187:10:0;37195:2;37187:5;:10;:::i;:::-;37174:24;;:2;:24;:::i;:::-;37161:39;;37144:6;37151;37144:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;37144:56:0;;;;;;;;-1:-1:-1;37215:11:0;37224:2;37215:11;;:::i;:::-;;;37084:154;;42285:169;42373:4;42397:49;42416:6;42424:10;;42436:9;42397:18;:49::i;15514:110::-;15590:26;15600:2;15604:7;15590:26;;;;;;;;;;;;:9;:26::i;17287:980::-;17442:4;-1:-1:-1;;;;;17463:13:0;;28774:20;28822:8;17459:801;;17516:175;;-1:-1:-1;;;17516:175:0;;-1:-1:-1;;;;;17516:36:0;;;;;:175;;734:10;;17610:4;;17637:7;;17667:5;;17516:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17516:175:0;;;;;;;;-1:-1:-1;;17516:175:0;;;;;;;;;;;;:::i;:::-;;;17495:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17874:13:0;;17870:320;;17917:108;;-1:-1:-1;;;17917:108:0;;;;;;;:::i;17870:320::-;18140:6;18134:13;18125:6;18121:2;18117:15;18110:38;17495:710;-1:-1:-1;;;;;;17755:51:0;-1:-1:-1;;;17755:51:0;;-1:-1:-1;17748:58:0;;17459:801;-1:-1:-1;18244:4:0;17287:980;;;;;;:::o;39107:190::-;39232:4;39285;39256:25;39269:5;39276:4;39256:12;:25::i;:::-;:33;;39107:190;-1:-1:-1;;;;39107:190:0:o;15632:287::-;15728:18;15734:2;15738:7;15728:5;:18::i;:::-;15779:54;15810:1;15814:2;15818:7;15827:5;15779:22;:54::i;:::-;15757:154;;;;-1:-1:-1;;;15757:154:0;;;;;;;:::i;39659:701::-;39742:7;39785:4;39742:7;39800:523;39824:5;:12;39820:1;:16;39800:523;;;39858:20;39881:5;39887:1;39881:8;;;;;;;;:::i;:::-;;;;;;;39858:31;;39924:12;39908;:28;39904:408;;40061:44;;;;;;24479:19:1;;;24514:12;;;24507:28;;;24551:12;;40061:44:0;;;;;;;;;;;;40051:55;;;;;;40036:70;;39904:408;;;40251:44;;;;;;24479:19:1;;;24514:12;;;24507:28;;;24551:12;;40251:44:0;;;;;;;;;;;;40241:55;;;;;;40226:70;;39904:408;-1:-1:-1;39838:3:0;;;;:::i;:::-;;;;39800:523;;15927:346;-1:-1:-1;;;;;16007:16:0;;15999:61;;;;-1:-1:-1;;;15999:61:0;;24776:2:1;15999:61:0;;;24758:21:1;;;24795:18;;;24788:30;24854:34;24834:18;;;24827:62;24906:18;;15999:61:0;24574:356:1;15999:61:0;16080:16;16088:7;16080;:16::i;:::-;16079:17;16071:58;;;;-1:-1:-1;;;16071:58:0;;25137:2:1;16071:58:0;;;25119:21:1;25176:2;25156:18;;;25149:30;25215;25195:18;;;25188:58;25263:18;;16071:58:0;24935:352:1;16071:58:0;16198:7;:16;;;;;;;-1:-1:-1;16198:16:0;;;;;;;-1:-1:-1;;;;;;16198:16:0;-1:-1:-1;;;;;16198:16:0;;;;;;;;16232:33;;16257:7;;-1:-1:-1;16232:33:0;;-1:-1:-1;;16232:33:0;15927:346;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293:131:1;-1:-1:-1;;;;;;367:32:1;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;871:160::-;936:20;;992:13;;985:21;975:32;;965:60;;1021:1;1018;1011:12;965:60;871:160;;;:::o;1036:180::-;1092:6;1145:2;1133:9;1124:7;1120:23;1116:32;1113:52;;;1161:1;1158;1151:12;1113:52;1184:26;1200:9;1184:26;:::i;1221:258::-;1293:1;1303:113;1317:6;1314:1;1311:13;1303:113;;;1393:11;;;1387:18;1374:11;;;1367:39;1339:2;1332:10;1303:113;;;1434:6;1431:1;1428:13;1425:48;;;-1:-1:-1;;1469:1:1;1451:16;;1444:27;1221:258::o;1484:::-;1526:3;1564:5;1558:12;1591:6;1586:3;1579:19;1607:63;1663:6;1656:4;1651:3;1647:14;1640:4;1633:5;1629:16;1607:63;:::i;:::-;1724:2;1703:15;-1:-1:-1;;1699:29:1;1690:39;;;;1731:4;1686:50;;1484:258;-1:-1:-1;;1484:258:1:o;1747:220::-;1896:2;1885:9;1878:21;1859:4;1916:45;1957:2;1946:9;1942:18;1934:6;1916:45;:::i;1972:180::-;2031:6;2084:2;2072:9;2063:7;2059:23;2055:32;2052:52;;;2100:1;2097;2090:12;2052:52;-1:-1:-1;2123:23:1;;1972:180;-1:-1:-1;1972:180:1:o;2365:131::-;-1:-1:-1;;;;;2440:31:1;;2430:42;;2420:70;;2486:1;2483;2476:12;2501:315;2569:6;2577;2630:2;2618:9;2609:7;2605:23;2601:32;2598:52;;;2646:1;2643;2636:12;2598:52;2685:9;2672:23;2704:31;2729:5;2704:31;:::i;:::-;2754:5;2806:2;2791:18;;;;2778:32;;-1:-1:-1;;;2501:315:1:o;3003:255::-;3070:6;3123:2;3111:9;3102:7;3098:23;3094:32;3091:52;;;3139:1;3136;3129:12;3091:52;3178:9;3165:23;3197:31;3222:5;3197:31;:::i;3263:315::-;3331:6;3339;3392:2;3380:9;3371:7;3367:23;3363:32;3360:52;;;3408:1;3405;3398:12;3360:52;3444:9;3431:23;3421:33;;3504:2;3493:9;3489:18;3476:32;3517:31;3542:5;3517:31;:::i;:::-;3567:5;3557:15;;;3263:315;;;;;:::o;3583:456::-;3660:6;3668;3676;3729:2;3717:9;3708:7;3704:23;3700:32;3697:52;;;3745:1;3742;3735:12;3697:52;3784:9;3771:23;3803:31;3828:5;3803:31;:::i;:::-;3853:5;-1:-1:-1;3910:2:1;3895:18;;3882:32;3923:33;3882:32;3923:33;:::i;:::-;3583:456;;3975:7;;-1:-1:-1;;;4029:2:1;4014:18;;;;4001:32;;3583:456::o;4296:632::-;4467:2;4519:21;;;4589:13;;4492:18;;;4611:22;;;4438:4;;4467:2;4690:15;;;;4664:2;4649:18;;;4438:4;4733:169;4747:6;4744:1;4741:13;4733:169;;;4808:13;;4796:26;;4877:15;;;;4842:12;;;;4769:1;4762:9;4733:169;;;-1:-1:-1;4919:3:1;;4296:632;-1:-1:-1;;;;;;4296:632:1:o;4933:127::-;4994:10;4989:3;4985:20;4982:1;4975:31;5025:4;5022:1;5015:15;5049:4;5046:1;5039:15;5065:632;5130:5;5160:18;5201:2;5193:6;5190:14;5187:40;;;5207:18;;:::i;:::-;5282:2;5276:9;5250:2;5336:15;;-1:-1:-1;;5332:24:1;;;5358:2;5328:33;5324:42;5312:55;;;5382:18;;;5402:22;;;5379:46;5376:72;;;5428:18;;:::i;:::-;5468:10;5464:2;5457:22;5497:6;5488:15;;5527:6;5519;5512:22;5567:3;5558:6;5553:3;5549:16;5546:25;5543:45;;;5584:1;5581;5574:12;5543:45;5634:6;5629:3;5622:4;5614:6;5610:17;5597:44;5689:1;5682:4;5673:6;5665;5661:19;5657:30;5650:41;;;;5065:632;;;;;:::o;5702:451::-;5771:6;5824:2;5812:9;5803:7;5799:23;5795:32;5792:52;;;5840:1;5837;5830:12;5792:52;5880:9;5867:23;5913:18;5905:6;5902:30;5899:50;;;5945:1;5942;5935:12;5899:50;5968:22;;6021:4;6013:13;;6009:27;-1:-1:-1;5999:55:1;;6050:1;6047;6040:12;5999:55;6073:74;6139:7;6134:2;6121:16;6116:2;6112;6108:11;6073:74;:::i;6343:315::-;6408:6;6416;6469:2;6457:9;6448:7;6444:23;6440:32;6437:52;;;6485:1;6482;6475:12;6437:52;6524:9;6511:23;6543:31;6568:5;6543:31;:::i;:::-;6593:5;-1:-1:-1;6617:35:1;6648:2;6633:18;;6617:35;:::i;:::-;6607:45;;6343:315;;;;;:::o;6663:795::-;6758:6;6766;6774;6782;6835:3;6823:9;6814:7;6810:23;6806:33;6803:53;;;6852:1;6849;6842:12;6803:53;6891:9;6878:23;6910:31;6935:5;6910:31;:::i;:::-;6960:5;-1:-1:-1;7017:2:1;7002:18;;6989:32;7030:33;6989:32;7030:33;:::i;:::-;7082:7;-1:-1:-1;7136:2:1;7121:18;;7108:32;;-1:-1:-1;7191:2:1;7176:18;;7163:32;7218:18;7207:30;;7204:50;;;7250:1;7247;7240:12;7204:50;7273:22;;7326:4;7318:13;;7314:27;-1:-1:-1;7304:55:1;;7355:1;7352;7345:12;7304:55;7378:74;7444:7;7439:2;7426:16;7421:2;7417;7413:11;7378:74;:::i;:::-;7368:84;;;6663:795;;;;;;;:::o;7463:683::-;7558:6;7566;7574;7627:2;7615:9;7606:7;7602:23;7598:32;7595:52;;;7643:1;7640;7633:12;7595:52;7679:9;7666:23;7656:33;;7740:2;7729:9;7725:18;7712:32;7763:18;7804:2;7796:6;7793:14;7790:34;;;7820:1;7817;7810:12;7790:34;7858:6;7847:9;7843:22;7833:32;;7903:7;7896:4;7892:2;7888:13;7884:27;7874:55;;7925:1;7922;7915:12;7874:55;7965:2;7952:16;7991:2;7983:6;7980:14;7977:34;;;8007:1;8004;7997:12;7977:34;8060:7;8055:2;8045:6;8042:1;8038:14;8034:2;8030:23;8026:32;8023:45;8020:65;;;8081:1;8078;8071:12;8020:65;8112:2;8108;8104:11;8094:21;;8134:6;8124:16;;;;;7463:683;;;;;:::o;8151:388::-;8219:6;8227;8280:2;8268:9;8259:7;8255:23;8251:32;8248:52;;;8296:1;8293;8286:12;8248:52;8335:9;8322:23;8354:31;8379:5;8354:31;:::i;:::-;8404:5;-1:-1:-1;8461:2:1;8446:18;;8433:32;8474:33;8433:32;8474:33;:::i;8544:356::-;8746:2;8728:21;;;8765:18;;;8758:30;8824:34;8819:2;8804:18;;8797:62;8891:2;8876:18;;8544:356::o;8905:380::-;8984:1;8980:12;;;;9027;;;9048:61;;9102:4;9094:6;9090:17;9080:27;;9048:61;9155:2;9147:6;9144:14;9124:18;9121:38;9118:161;;;9201:10;9196:3;9192:20;9189:1;9182:31;9236:4;9233:1;9226:15;9264:4;9261:1;9254:15;9118:161;;8905:380;;;:::o;10937:127::-;10998:10;10993:3;10989:20;10986:1;10979:31;11029:4;11026:1;11019:15;11053:4;11050:1;11043:15;11069:128;11109:3;11140:1;11136:6;11133:1;11130:13;11127:39;;;11146:18;;:::i;:::-;-1:-1:-1;11182:9:1;;11069:128::o;11202:168::-;11242:7;11308:1;11304;11300:6;11296:14;11293:1;11290:21;11285:1;11278:9;11271:17;11267:45;11264:71;;;11315:18;;:::i;:::-;-1:-1:-1;11355:9:1;;11202:168::o;11375:127::-;11436:10;11431:3;11427:20;11424:1;11417:31;11467:4;11464:1;11457:15;11491:4;11488:1;11481:15;11507:120;11547:1;11573;11563:35;;11578:18;;:::i;:::-;-1:-1:-1;11612:9:1;;11507:120::o;11632:125::-;11672:4;11700:1;11697;11694:8;11691:34;;;11705:18;;:::i;:::-;-1:-1:-1;11742:9:1;;11632:125::o;12461:351::-;12663:2;12645:21;;;12702:2;12682:18;;;12675:30;12741:29;12736:2;12721:18;;12714:57;12803:2;12788:18;;12461:351::o;12817:413::-;13019:2;13001:21;;;13058:2;13038:18;;;13031:30;13097:34;13092:2;13077:18;;13070:62;-1:-1:-1;;;13163:2:1;13148:18;;13141:47;13220:3;13205:19;;12817:413::o;15848:346::-;16050:2;16032:21;;;16089:2;16069:18;;;16062:30;-1:-1:-1;;;16123:2:1;16108:18;;16101:52;16185:2;16170:18;;15848:346::o;16199:127::-;16260:10;16255:3;16251:20;16248:1;16241:31;16291:4;16288:1;16281:15;16315:4;16312:1;16305:15;16331:135;16370:3;-1:-1:-1;;16391:17:1;;16388:43;;;16411:18;;:::i;:::-;-1:-1:-1;16458:1:1;16447:13;;16331:135::o;18406:637::-;18686:3;18724:6;18718:13;18740:53;18786:6;18781:3;18774:4;18766:6;18762:17;18740:53;:::i;:::-;18856:13;;18815:16;;;;18878:57;18856:13;18815:16;18912:4;18900:17;;18878:57;:::i;:::-;-1:-1:-1;;;18957:20:1;;18986:22;;;19035:1;19024:13;;18406:637;-1:-1:-1;;;;18406:637:1:o;22804:414::-;23006:2;22988:21;;;23045:2;23025:18;;;23018:30;23084:34;23079:2;23064:18;;23057:62;-1:-1:-1;;;23150:2:1;23135:18;;23128:48;23208:3;23193:19;;22804:414::o;23223:112::-;23255:1;23281;23271:35;;23286:18;;:::i;:::-;-1:-1:-1;23320:9:1;;23223:112::o;23574:489::-;-1:-1:-1;;;;;23843:15:1;;;23825:34;;23895:15;;23890:2;23875:18;;23868:43;23942:2;23927:18;;23920:34;;;23990:3;23985:2;23970:18;;23963:31;;;23768:4;;24011:46;;24037:19;;24029:6;24011:46;:::i;:::-;24003:54;23574:489;-1:-1:-1;;;;;;23574:489:1:o;24068:249::-;24137:6;24190:2;24178:9;24169:7;24165:23;24161:32;24158:52;;;24206:1;24203;24196:12;24158:52;24238:9;24232:16;24257:30;24281:5;24257:30;:::i

Swarm Source

ipfs://09df2ea53569137a7f52cac8f00511ef454ebf080d7a5394c4a8a848efc83270
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.