ETH Price: $2,411.34 (+3.08%)

Token

ReconRamsElites (RRE)
 

Overview

Max Total Supply

150 RRE

Holders

120

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Recon Rams Elite Collection is the 2nd project released by Recon Rams. The Elite Collection consists of 150 1/1 animated Rams and Ewes that all have extra utility in the Recon Rams Project.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ReconRamsElites

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-04-16
*/

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

// 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 ReconRamsElites is ERC721Enum, Ownable {
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 150;
    uint256 public constant MAX_MINT = 1;
    bytes32 private femaleRamMerkleRoot;
    bytes32 private maleRamMerkleRoot;
    bool public femaleOnlyActive = true;
    bool public paused = true;
    bool public revealed = false;
    string baseURI;
    string hiddenURI;
    
    mapping(address => uint256) public femaleRamAddressMintedBalance;
    mapping(address => uint256) public maleRamAddressMintedBalance;

    constructor(string memory _hiddenURI, bytes32 _femaleRamMerkleRoot, bytes32 _maleRamMerkleRoot) ERC721P("ReconRamsElites", "RRE") {
        setHiddenURI(_hiddenURI);
        femaleRamMerkleRoot = _femaleRamMerkleRoot;
        maleRamMerkleRoot = _maleRamMerkleRoot;
    }

    modifier mintCheck(uint256 _mintAmount) {
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "Mint amt must be greater than 0");
        _;
    }

    //---------------- 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 _merkleRoot, 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 femaleWhitelistMint(uint256 _mintAmount, bytes32[] calldata proof) external mintCheck(_mintAmount) {
        require(femaleOnlyActive && !paused, "Female ram claim is currently not active");
        require(_verifyLeaf(_leaf(msg.sender), femaleRamMerkleRoot, proof), "Invalid proof");

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

    function maleWhitelistMint(uint256 _mintAmount, bytes32[] calldata proof) external mintCheck(_mintAmount) {
        require(!femaleOnlyActive && !paused, "Male ram claim is currently not active");
        require(_verifyLeaf(_leaf(msg.sender), maleRamMerkleRoot, proof), "Invalid proof");

        uint256 senderMintedCount = maleRamAddressMintedBalance[msg.sender];
        require(senderMintedCount + _mintAmount <= MAX_MINT, "Total mints after tx exceeds max mints for this address");
        maleRamAddressMintedBalance[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 setHiddenURI(string memory _hiddenURI) public onlyOwner {
        hiddenURI = _hiddenURI;
    }

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

    function reveal(string memory _newBaseURI) public onlyOwner {
        //We set the revealed metadata here so that it can't be sniped pre-reveal
        baseURI = _newBaseURI;
        revealed = true;
    }

    function femaleMintOnly(bool _state) public onlyOwner {
        femaleOnlyActive = _state;
    }

    function setFemaleMerkleRoot(bytes32 _root) public onlyOwner {
        femaleRamMerkleRoot = _root;
    }

    function setMaleMerkleRoot(bytes32 _root) public onlyOwner {
        maleRamMerkleRoot = _root;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_hiddenURI","type":"string"},{"internalType":"bytes32","name":"_femaleRamMerkleRoot","type":"bytes32"},{"internalType":"bytes32","name":"_maleRamMerkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT","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":"bool","name":"_state","type":"bool"}],"name":"femaleMintOnly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"femaleOnlyActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"femaleRamAddressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"femaleWhitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maleRamAddressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"maleWhitelistMint","outputs":[],"stateMutability":"nonpayable","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"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":"bytes32","name":"_root","type":"bytes32"}],"name":"setFemaleMerkleRoot","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":"setMaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":"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"}]

60806040526008805462ffffff19166101011790553480156200002157600080fd5b50604051620028c5380380620028c583398101604081905262000044916200026e565b604080518082018252600f81526e5265636f6e52616d73456c6974657360881b60208083019182528351808501909452600384526252524560e81b9084015281519192916200009691600091620001b2565b508051620000ac906001906020840190620001b2565b505050620000c9620000c3620000e460201b60201c565b620000e8565b620000d4836200013a565b600691909155600755506200039b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ae90600a906020840190620001b2565b5050565b828054620001c0906200035e565b90600052602060002090601f016020900481019282620001e457600085556200022f565b82601f10620001ff57805160ff19168380011785556200022f565b828001600101855582156200022f579182015b828111156200022f57825182559160200191906001019062000212565b506200023d92915062000241565b5090565b5b808211156200023d576000815560010162000242565b634e487b7160e01b600052604160045260246000fd5b6000806000606084860312156200028457600080fd5b83516001600160401b03808211156200029c57600080fd5b818601915086601f830112620002b157600080fd5b815181811115620002c657620002c662000258565b604051601f8201601f19908116603f01168101908382118183101715620002f157620002f162000258565b816040528281526020935089848487010111156200030e57600080fd5b600091505b8282101562000332578482018401518183018501529083019062000313565b82821115620003445760008484830101525b928801516040909801519299979850919695505050505050565b600181811c908216806200037357607f821691505b602082108114156200039557634e487b7160e01b600052602260045260246000fd5b50919050565b61251a80620003ab6000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c806370a0823111610130578063b25299c0116100b8578063dc9b85401161007c578063dc9b8540146104ac578063de8a33ad146104cc578063e985e9c5146104df578063f0292a031461051b578063f2fde38b1461052357600080fd5b8063b25299c014610440578063b88d4fde14610460578063bbaac02f14610473578063c42881ed14610486578063c87b56dd1461049957600080fd5b80638da5cb5b116100ff5780638da5cb5b146103f4578063908b5ff81461040557806395d89b4114610418578063a22cb46514610420578063a9c2c5881461043357600080fd5b806370a08231146103b3578063710f50dd146103c6578063715018a6146103d95780638462151c146103e157600080fd5b80632f745c59116101b35780634c261247116101825780634c261247146103555780634f6ccce714610368578063518302271461037b5780635c975abb1461038e5780636352211e146103a057600080fd5b80632f745c591461030757806332cb6b0c1461031a57806342842e0e14610322578063438b63001461033557600080fd5b8063095ea7b3116101fa578063095ea7b3146102a95780630d7c260c146102bc57806318160ddd146102cf5780631df656b0146102e157806323b872dd146102f457600080fd5b806301ffc9a71461022c57806302329a291461025457806306fdde0314610269578063081812fc1461027e575b600080fd5b61023f61023a366004611dfa565b610536565b60405190151581526020015b60405180910390f35b610267610262366004611e2c565b610561565b005b6102716105ae565b60405161024b9190611e9f565b61029161028c366004611eb2565b610640565b6040516001600160a01b03909116815260200161024b565b6102676102b7366004611ee2565b6106c8565b6102676102ca366004611eb2565b6107de565b6002545b60405190815260200161024b565b6102676102ef366004611f0c565b61080d565b610267610302366004611f38565b6108a8565b6102d3610315366004611ee2565b6108d9565b6102d3609681565b610267610330366004611f38565b610988565b610348610343366004611f74565b6109a3565b60405161024b9190611f8f565b61026761036336600461205f565b610a83565b6102d3610376366004611eb2565b610ad5565b60085461023f9062010000900460ff1681565b60085461023f90610100900460ff1681565b6102916103ae366004611eb2565b610b32565b6102d36103c1366004611f74565b610bbe565b6102676103d43660046120a8565b610c90565b610267610e5a565b6103486103ef366004611f74565b610e90565b6005546001600160a01b0316610291565b610267610413366004611e2c565b610f5a565b610271610f97565b61026761042e366004612127565b610fa6565b60085461023f9060ff1681565b6102d361044e366004611f74565b600b6020526000908152604090205481565b61026761046e366004612151565b61106b565b61026761048136600461205f565b6110a3565b610267610494366004611eb2565b6110e4565b6102716104a7366004611eb2565b611113565b6102d36104ba366004611f74565b600c6020526000908152604090205481565b6102676104da3660046120a8565b611278565b61023f6104ed3660046121cd565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6102d3600181565b610267610531366004611f74565b611429565b60006001600160e01b0319821663780e9d6360e01b148061055b575061055b826114c4565b92915050565b6005546001600160a01b031633146105945760405162461bcd60e51b815260040161058b906121f7565b60405180910390fd5b600880549115156101000261ff0019909216919091179055565b6060600080546105bd9061222c565b80601f01602080910402602001604051908101604052809291908181526020018280546105e99061222c565b80156106365780601f1061060b57610100808354040283529160200191610636565b820191906000526020600020905b81548152906001019060200180831161061957829003601f168201915b5050505050905090565b600061064b82611514565b6106ac5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161058b565b506000908152600360205260409020546001600160a01b031690565b60006106d382610b32565b9050806001600160a01b0316836001600160a01b031614156107415760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161058b565b336001600160a01b038216148061075d575061075d81336104ed565b6107cf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161058b565b6107d9838361155e565b505050565b6005546001600160a01b031633146108085760405162461bcd60e51b815260040161058b906121f7565b600755565b6005546001600160a01b031633146108375760405162461bcd60e51b815260040161058b906121f7565b600061084260025490565b90506096610850848361227d565b111561089e5760405162461bcd60e51b815260206004820152601b60248201527f4d696e7420616d742065786365656473206d617820737570706c790000000000604482015260640161058b565b6107d982846115cc565b6108b23382611609565b6108ce5760405162461bcd60e51b815260040161058b90612295565b6107d98383836116f3565b60006108e483610bbe565b82106109025760405162461bcd60e51b815260040161058b906122e6565b6000805b60025481101561096f576002818154811061092357610923612316565b6000918252602090912001546001600160a01b038681169116141561095f578382141561095357915061055b9050565b61095c8261232c565b91505b6109688161232c565b9050610906565b5060405162461bcd60e51b815260040161058b906122e6565b6107d98383836040518060200160405280600081525061106b565b606060006109b083610bbe565b905060008167ffffffffffffffff8111156109cd576109cd611fd3565b6040519080825280602002602001820160405280156109f6578160200160208202803683370190505b509050600160005b8381108015610a0e575060968211155b15610a79576000610a1e83610b32565b9050866001600160a01b0316816001600160a01b03161415610a665782848381518110610a4d57610a4d612316565b602090810291909101015281610a628161232c565b9250505b82610a708161232c565b935050506109fe565b5090949350505050565b6005546001600160a01b03163314610aad5760405162461bcd60e51b815260040161058b906121f7565b8051610ac0906009906020840190611d54565b50506008805462ff0000191662010000179055565b6000610ae060025490565b8210610b2e5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604482015260640161058b565b5090565b60008060028381548110610b4857610b48612316565b6000918252602090912001546001600160a01b031690508061055b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161058b565b60006001600160a01b038216610c295760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161058b565b600254600090815b81811015610c875760028181548110610c4c57610c4c612316565b6000918252602090912001546001600160a01b0386811691161415610c7757610c748361232c565b92505b610c808161232c565b9050610c31565b50909392505050565b826000610c9c60025490565b905060008211610cee5760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420616d74206d7573742062652067726561746572207468616e203000604482015260640161058b565b60085460ff168015610d085750600854610100900460ff16155b610d655760405162461bcd60e51b815260206004820152602860248201527f46656d616c652072616d20636c61696d2069732063757272656e746c79206e6f604482015267742061637469766560c01b606482015260840161058b565b610dad610d7133611849565b60065486868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061188892505050565b610de95760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b604482015260640161058b565b336000908152600b60205260409020546001610e05878361227d565b1115610e235760405162461bcd60e51b815260040161058b90612347565b336000908152600b602052604081208054889290610e4290849061227d565b90915550610e52905033876115cc565b505050505050565b6005546001600160a01b03163314610e845760405162461bcd60e51b815260040161058b906121f7565b610e8e6000611895565b565b6060610e9b82610bbe565b600010610eba5760405162461bcd60e51b815260040161058b906122e6565b6000610ec583610bbe565b905060008167ffffffffffffffff811115610ee257610ee2611fd3565b604051908082528060200260200182016040528015610f0b578160200160208202803683370190505b50905060005b82811015610f5257610f2385826108d9565b828281518110610f3557610f35612316565b602090810291909101015280610f4a8161232c565b915050610f11565b509392505050565b6005546001600160a01b03163314610f845760405162461bcd60e51b815260040161058b906121f7565b6008805460ff1916911515919091179055565b6060600180546105bd9061222c565b6001600160a01b038216331415610fff5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161058b565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110753383611609565b6110915760405162461bcd60e51b815260040161058b90612295565b61109d848484846118e7565b50505050565b6005546001600160a01b031633146110cd5760405162461bcd60e51b815260040161058b906121f7565b80516110e090600a906020840190611d54565b5050565b6005546001600160a01b0316331461110e5760405162461bcd60e51b815260040161058b906121f7565b600655565b606061111e82611514565b61117a5760405162461bcd60e51b815260206004820152602760248201527f4552433732314d657461646174613a20546f6b656e494420646f6573206e6f746044820152661032bc34b9ba1760c91b606482015260840161058b565b60085462010000900460ff1661121c57600a80546111979061222c565b80601f01602080910402602001604051908101604052809291908181526020018280546111c39061222c565b80156112105780601f106111e557610100808354040283529160200191611210565b820191906000526020600020905b8154815290600101906020018083116111f357829003601f168201915b50505050509050919050565b600061122661191a565b905060008151116112465760405180602001604052806000815250611271565b8061125084611929565b6040516020016112619291906123a4565b6040516020818303038152906040525b9392505050565b82600061128460025490565b9050600082116112d65760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420616d74206d7573742062652067726561746572207468616e203000604482015260640161058b565b60085460ff161580156112f15750600854610100900460ff16155b61134c5760405162461bcd60e51b815260206004820152602660248201527f4d616c652072616d20636c61696d2069732063757272656e746c79206e6f742060448201526561637469766560d01b606482015260840161058b565b61139461135833611849565b60075486868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061188892505050565b6113d05760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b604482015260640161058b565b336000908152600c602052604090205460016113ec878361227d565b111561140a5760405162461bcd60e51b815260040161058b90612347565b336000908152600c602052604081208054889290610e4290849061227d565b6005546001600160a01b031633146114535760405162461bcd60e51b815260040161058b906121f7565b6001600160a01b0381166114b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161058b565b6114c181611895565b50565b60006001600160e01b031982166380ac58cd60e01b14806114f557506001600160e01b03198216635b5e139f60e01b145b8061055b57506301ffc9a760e01b6001600160e01b031983161461055b565b6002546000908210801561055b575060006001600160a01b03166002838154811061154157611541612316565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061159382610b32565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115d760025490565b905060005b8281101561109d576115f7846115f2838561227d565b611a27565b806116018161232c565b9150506115dc565b600061161482611514565b6116755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161058b565b600061168083610b32565b9050806001600160a01b0316846001600160a01b031614806116bb5750836001600160a01b03166116b084610640565b6001600160a01b0316145b806116eb57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661170682610b32565b6001600160a01b03161461176e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161058b565b6001600160a01b0382166117d05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161058b565b6117db60008261155e565b81600282815481106117ef576117ef612316565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b60006116eb828486611a41565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6118f28484846116f3565b6118fe84848484611a57565b61109d5760405162461bcd60e51b815260040161058b906123e3565b6060600980546105bd9061222c565b60608161194d5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561197757806119618161232c565b91506119709050600a8361244b565b9150611951565b60008167ffffffffffffffff81111561199257611992611fd3565b6040519080825280601f01601f1916602001820160405280156119bc576020820181803683370190505b5090505b84156116eb576119d160018361245f565b91506119de600a86612476565b6119e990603061227d565b60f81b8183815181106119fe576119fe612316565b60200101906001600160f81b031916908160001a905350611a20600a8661244b565b94506119c0565b6110e0828260405180602001604052806000815250611b55565b600082611a4e8584611b88565b14949350505050565b60006001600160a01b0384163b15611b4a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a9b90339089908890889060040161248a565b6020604051808303816000875af1925050508015611ad6575060408051601f3d908101601f19168201909252611ad3918101906124c7565b60015b611b30573d808015611b04576040519150601f19603f3d011682016040523d82523d6000602084013e611b09565b606091505b508051611b285760405162461bcd60e51b815260040161058b906123e3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116eb565b506001949350505050565b611b5f8383611c2c565b611b6c6000848484611a57565b6107d95760405162461bcd60e51b815260040161058b906123e3565b600081815b8451811015610f52576000858281518110611baa57611baa612316565b60200260200101519050808311611bec576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611c19565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611c248161232c565b915050611b8d565b6001600160a01b038216611c825760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161058b565b611c8b81611514565b15611cd85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161058b565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d609061222c565b90600052602060002090601f016020900481019282611d825760008555611dc8565b82601f10611d9b57805160ff1916838001178555611dc8565b82800160010185558215611dc8579182015b82811115611dc8578251825591602001919060010190611dad565b50610b2e9291505b80821115610b2e5760008155600101611dd0565b6001600160e01b0319811681146114c157600080fd5b600060208284031215611e0c57600080fd5b813561127181611de4565b80358015158114611e2757600080fd5b919050565b600060208284031215611e3e57600080fd5b61127182611e17565b60005b83811015611e62578181015183820152602001611e4a565b8381111561109d5750506000910152565b60008151808452611e8b816020860160208601611e47565b601f01601f19169290920160200192915050565b6020815260006112716020830184611e73565b600060208284031215611ec457600080fd5b5035919050565b80356001600160a01b0381168114611e2757600080fd5b60008060408385031215611ef557600080fd5b611efe83611ecb565b946020939093013593505050565b60008060408385031215611f1f57600080fd5b82359150611f2f60208401611ecb565b90509250929050565b600080600060608486031215611f4d57600080fd5b611f5684611ecb565b9250611f6460208501611ecb565b9150604084013590509250925092565b600060208284031215611f8657600080fd5b61127182611ecb565b6020808252825182820181905260009190848201906040850190845b81811015611fc757835183529284019291840191600101611fab565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561200457612004611fd3565b604051601f8501601f19908116603f0116810190828211818310171561202c5761202c611fd3565b8160405280935085815286868601111561204557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561207157600080fd5b813567ffffffffffffffff81111561208857600080fd5b8201601f8101841361209957600080fd5b6116eb84823560208401611fe9565b6000806000604084860312156120bd57600080fd5b83359250602084013567ffffffffffffffff808211156120dc57600080fd5b818601915086601f8301126120f057600080fd5b8135818111156120ff57600080fd5b8760208260051b850101111561211457600080fd5b6020830194508093505050509250925092565b6000806040838503121561213a57600080fd5b61214383611ecb565b9150611f2f60208401611e17565b6000806000806080858703121561216757600080fd5b61217085611ecb565b935061217e60208601611ecb565b925060408501359150606085013567ffffffffffffffff8111156121a157600080fd5b8501601f810187136121b257600080fd5b6121c187823560208401611fe9565b91505092959194509250565b600080604083850312156121e057600080fd5b6121e983611ecb565b9150611f2f60208401611ecb565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061224057607f821691505b6020821081141561226157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561229057612290612267565b500190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561234057612340612267565b5060010190565b60208082526037908201527f546f74616c206d696e74732061667465722074782065786365656473206d617860408201527f206d696e747320666f7220746869732061646472657373000000000000000000606082015260800190565b600083516123b6818460208801611e47565b8351908301906123ca818360208801611e47565b64173539b7b760d91b9101908152600501949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261245a5761245a612435565b500490565b60008282101561247157612471612267565b500390565b60008261248557612485612435565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124bd90830184611e73565b9695505050505050565b6000602082840312156124d957600080fd5b815161127181611de456fea2646970667358221220a81cc96baea1d90b253f3d10eeb18bed52cf1918e3d8fbb62161b3770324d49464736f6c634300080a00330000000000000000000000000000000000000000000000000000000000000060da452e56a904c5041ad2cefd547b689e4a3442cad130a6e83ec8e94ce51c5c3f948ca818bb35b0c83231648264e10da1ee822a908ad20b8780d342812496c1f7000000000000000000000000000000000000000000000000000000000000004a697066733a2f2f516d51324c70615a34675050324c676b33593968506b6658356d774c577355346d5968385a4c4e44456a616155422f68696464656e2d6d657461646174612e6a736f6e00000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102275760003560e01c806370a0823111610130578063b25299c0116100b8578063dc9b85401161007c578063dc9b8540146104ac578063de8a33ad146104cc578063e985e9c5146104df578063f0292a031461051b578063f2fde38b1461052357600080fd5b8063b25299c014610440578063b88d4fde14610460578063bbaac02f14610473578063c42881ed14610486578063c87b56dd1461049957600080fd5b80638da5cb5b116100ff5780638da5cb5b146103f4578063908b5ff81461040557806395d89b4114610418578063a22cb46514610420578063a9c2c5881461043357600080fd5b806370a08231146103b3578063710f50dd146103c6578063715018a6146103d95780638462151c146103e157600080fd5b80632f745c59116101b35780634c261247116101825780634c261247146103555780634f6ccce714610368578063518302271461037b5780635c975abb1461038e5780636352211e146103a057600080fd5b80632f745c591461030757806332cb6b0c1461031a57806342842e0e14610322578063438b63001461033557600080fd5b8063095ea7b3116101fa578063095ea7b3146102a95780630d7c260c146102bc57806318160ddd146102cf5780631df656b0146102e157806323b872dd146102f457600080fd5b806301ffc9a71461022c57806302329a291461025457806306fdde0314610269578063081812fc1461027e575b600080fd5b61023f61023a366004611dfa565b610536565b60405190151581526020015b60405180910390f35b610267610262366004611e2c565b610561565b005b6102716105ae565b60405161024b9190611e9f565b61029161028c366004611eb2565b610640565b6040516001600160a01b03909116815260200161024b565b6102676102b7366004611ee2565b6106c8565b6102676102ca366004611eb2565b6107de565b6002545b60405190815260200161024b565b6102676102ef366004611f0c565b61080d565b610267610302366004611f38565b6108a8565b6102d3610315366004611ee2565b6108d9565b6102d3609681565b610267610330366004611f38565b610988565b610348610343366004611f74565b6109a3565b60405161024b9190611f8f565b61026761036336600461205f565b610a83565b6102d3610376366004611eb2565b610ad5565b60085461023f9062010000900460ff1681565b60085461023f90610100900460ff1681565b6102916103ae366004611eb2565b610b32565b6102d36103c1366004611f74565b610bbe565b6102676103d43660046120a8565b610c90565b610267610e5a565b6103486103ef366004611f74565b610e90565b6005546001600160a01b0316610291565b610267610413366004611e2c565b610f5a565b610271610f97565b61026761042e366004612127565b610fa6565b60085461023f9060ff1681565b6102d361044e366004611f74565b600b6020526000908152604090205481565b61026761046e366004612151565b61106b565b61026761048136600461205f565b6110a3565b610267610494366004611eb2565b6110e4565b6102716104a7366004611eb2565b611113565b6102d36104ba366004611f74565b600c6020526000908152604090205481565b6102676104da3660046120a8565b611278565b61023f6104ed3660046121cd565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6102d3600181565b610267610531366004611f74565b611429565b60006001600160e01b0319821663780e9d6360e01b148061055b575061055b826114c4565b92915050565b6005546001600160a01b031633146105945760405162461bcd60e51b815260040161058b906121f7565b60405180910390fd5b600880549115156101000261ff0019909216919091179055565b6060600080546105bd9061222c565b80601f01602080910402602001604051908101604052809291908181526020018280546105e99061222c565b80156106365780601f1061060b57610100808354040283529160200191610636565b820191906000526020600020905b81548152906001019060200180831161061957829003601f168201915b5050505050905090565b600061064b82611514565b6106ac5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161058b565b506000908152600360205260409020546001600160a01b031690565b60006106d382610b32565b9050806001600160a01b0316836001600160a01b031614156107415760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161058b565b336001600160a01b038216148061075d575061075d81336104ed565b6107cf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161058b565b6107d9838361155e565b505050565b6005546001600160a01b031633146108085760405162461bcd60e51b815260040161058b906121f7565b600755565b6005546001600160a01b031633146108375760405162461bcd60e51b815260040161058b906121f7565b600061084260025490565b90506096610850848361227d565b111561089e5760405162461bcd60e51b815260206004820152601b60248201527f4d696e7420616d742065786365656473206d617820737570706c790000000000604482015260640161058b565b6107d982846115cc565b6108b23382611609565b6108ce5760405162461bcd60e51b815260040161058b90612295565b6107d98383836116f3565b60006108e483610bbe565b82106109025760405162461bcd60e51b815260040161058b906122e6565b6000805b60025481101561096f576002818154811061092357610923612316565b6000918252602090912001546001600160a01b038681169116141561095f578382141561095357915061055b9050565b61095c8261232c565b91505b6109688161232c565b9050610906565b5060405162461bcd60e51b815260040161058b906122e6565b6107d98383836040518060200160405280600081525061106b565b606060006109b083610bbe565b905060008167ffffffffffffffff8111156109cd576109cd611fd3565b6040519080825280602002602001820160405280156109f6578160200160208202803683370190505b509050600160005b8381108015610a0e575060968211155b15610a79576000610a1e83610b32565b9050866001600160a01b0316816001600160a01b03161415610a665782848381518110610a4d57610a4d612316565b602090810291909101015281610a628161232c565b9250505b82610a708161232c565b935050506109fe565b5090949350505050565b6005546001600160a01b03163314610aad5760405162461bcd60e51b815260040161058b906121f7565b8051610ac0906009906020840190611d54565b50506008805462ff0000191662010000179055565b6000610ae060025490565b8210610b2e5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604482015260640161058b565b5090565b60008060028381548110610b4857610b48612316565b6000918252602090912001546001600160a01b031690508061055b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161058b565b60006001600160a01b038216610c295760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161058b565b600254600090815b81811015610c875760028181548110610c4c57610c4c612316565b6000918252602090912001546001600160a01b0386811691161415610c7757610c748361232c565b92505b610c808161232c565b9050610c31565b50909392505050565b826000610c9c60025490565b905060008211610cee5760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420616d74206d7573742062652067726561746572207468616e203000604482015260640161058b565b60085460ff168015610d085750600854610100900460ff16155b610d655760405162461bcd60e51b815260206004820152602860248201527f46656d616c652072616d20636c61696d2069732063757272656e746c79206e6f604482015267742061637469766560c01b606482015260840161058b565b610dad610d7133611849565b60065486868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061188892505050565b610de95760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b604482015260640161058b565b336000908152600b60205260409020546001610e05878361227d565b1115610e235760405162461bcd60e51b815260040161058b90612347565b336000908152600b602052604081208054889290610e4290849061227d565b90915550610e52905033876115cc565b505050505050565b6005546001600160a01b03163314610e845760405162461bcd60e51b815260040161058b906121f7565b610e8e6000611895565b565b6060610e9b82610bbe565b600010610eba5760405162461bcd60e51b815260040161058b906122e6565b6000610ec583610bbe565b905060008167ffffffffffffffff811115610ee257610ee2611fd3565b604051908082528060200260200182016040528015610f0b578160200160208202803683370190505b50905060005b82811015610f5257610f2385826108d9565b828281518110610f3557610f35612316565b602090810291909101015280610f4a8161232c565b915050610f11565b509392505050565b6005546001600160a01b03163314610f845760405162461bcd60e51b815260040161058b906121f7565b6008805460ff1916911515919091179055565b6060600180546105bd9061222c565b6001600160a01b038216331415610fff5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161058b565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110753383611609565b6110915760405162461bcd60e51b815260040161058b90612295565b61109d848484846118e7565b50505050565b6005546001600160a01b031633146110cd5760405162461bcd60e51b815260040161058b906121f7565b80516110e090600a906020840190611d54565b5050565b6005546001600160a01b0316331461110e5760405162461bcd60e51b815260040161058b906121f7565b600655565b606061111e82611514565b61117a5760405162461bcd60e51b815260206004820152602760248201527f4552433732314d657461646174613a20546f6b656e494420646f6573206e6f746044820152661032bc34b9ba1760c91b606482015260840161058b565b60085462010000900460ff1661121c57600a80546111979061222c565b80601f01602080910402602001604051908101604052809291908181526020018280546111c39061222c565b80156112105780601f106111e557610100808354040283529160200191611210565b820191906000526020600020905b8154815290600101906020018083116111f357829003601f168201915b50505050509050919050565b600061122661191a565b905060008151116112465760405180602001604052806000815250611271565b8061125084611929565b6040516020016112619291906123a4565b6040516020818303038152906040525b9392505050565b82600061128460025490565b9050600082116112d65760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420616d74206d7573742062652067726561746572207468616e203000604482015260640161058b565b60085460ff161580156112f15750600854610100900460ff16155b61134c5760405162461bcd60e51b815260206004820152602660248201527f4d616c652072616d20636c61696d2069732063757272656e746c79206e6f742060448201526561637469766560d01b606482015260840161058b565b61139461135833611849565b60075486868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061188892505050565b6113d05760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b604482015260640161058b565b336000908152600c602052604090205460016113ec878361227d565b111561140a5760405162461bcd60e51b815260040161058b90612347565b336000908152600c602052604081208054889290610e4290849061227d565b6005546001600160a01b031633146114535760405162461bcd60e51b815260040161058b906121f7565b6001600160a01b0381166114b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161058b565b6114c181611895565b50565b60006001600160e01b031982166380ac58cd60e01b14806114f557506001600160e01b03198216635b5e139f60e01b145b8061055b57506301ffc9a760e01b6001600160e01b031983161461055b565b6002546000908210801561055b575060006001600160a01b03166002838154811061154157611541612316565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061159382610b32565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115d760025490565b905060005b8281101561109d576115f7846115f2838561227d565b611a27565b806116018161232c565b9150506115dc565b600061161482611514565b6116755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161058b565b600061168083610b32565b9050806001600160a01b0316846001600160a01b031614806116bb5750836001600160a01b03166116b084610640565b6001600160a01b0316145b806116eb57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661170682610b32565b6001600160a01b03161461176e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161058b565b6001600160a01b0382166117d05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161058b565b6117db60008261155e565b81600282815481106117ef576117ef612316565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b60006116eb828486611a41565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6118f28484846116f3565b6118fe84848484611a57565b61109d5760405162461bcd60e51b815260040161058b906123e3565b6060600980546105bd9061222c565b60608161194d5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561197757806119618161232c565b91506119709050600a8361244b565b9150611951565b60008167ffffffffffffffff81111561199257611992611fd3565b6040519080825280601f01601f1916602001820160405280156119bc576020820181803683370190505b5090505b84156116eb576119d160018361245f565b91506119de600a86612476565b6119e990603061227d565b60f81b8183815181106119fe576119fe612316565b60200101906001600160f81b031916908160001a905350611a20600a8661244b565b94506119c0565b6110e0828260405180602001604052806000815250611b55565b600082611a4e8584611b88565b14949350505050565b60006001600160a01b0384163b15611b4a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a9b90339089908890889060040161248a565b6020604051808303816000875af1925050508015611ad6575060408051601f3d908101601f19168201909252611ad3918101906124c7565b60015b611b30573d808015611b04576040519150601f19603f3d011682016040523d82523d6000602084013e611b09565b606091505b508051611b285760405162461bcd60e51b815260040161058b906123e3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116eb565b506001949350505050565b611b5f8383611c2c565b611b6c6000848484611a57565b6107d95760405162461bcd60e51b815260040161058b906123e3565b600081815b8451811015610f52576000858281518110611baa57611baa612316565b60200260200101519050808311611bec576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611c19565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611c248161232c565b915050611b8d565b6001600160a01b038216611c825760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161058b565b611c8b81611514565b15611cd85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161058b565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d609061222c565b90600052602060002090601f016020900481019282611d825760008555611dc8565b82601f10611d9b57805160ff1916838001178555611dc8565b82800160010185558215611dc8579182015b82811115611dc8578251825591602001919060010190611dad565b50610b2e9291505b80821115610b2e5760008155600101611dd0565b6001600160e01b0319811681146114c157600080fd5b600060208284031215611e0c57600080fd5b813561127181611de4565b80358015158114611e2757600080fd5b919050565b600060208284031215611e3e57600080fd5b61127182611e17565b60005b83811015611e62578181015183820152602001611e4a565b8381111561109d5750506000910152565b60008151808452611e8b816020860160208601611e47565b601f01601f19169290920160200192915050565b6020815260006112716020830184611e73565b600060208284031215611ec457600080fd5b5035919050565b80356001600160a01b0381168114611e2757600080fd5b60008060408385031215611ef557600080fd5b611efe83611ecb565b946020939093013593505050565b60008060408385031215611f1f57600080fd5b82359150611f2f60208401611ecb565b90509250929050565b600080600060608486031215611f4d57600080fd5b611f5684611ecb565b9250611f6460208501611ecb565b9150604084013590509250925092565b600060208284031215611f8657600080fd5b61127182611ecb565b6020808252825182820181905260009190848201906040850190845b81811015611fc757835183529284019291840191600101611fab565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561200457612004611fd3565b604051601f8501601f19908116603f0116810190828211818310171561202c5761202c611fd3565b8160405280935085815286868601111561204557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561207157600080fd5b813567ffffffffffffffff81111561208857600080fd5b8201601f8101841361209957600080fd5b6116eb84823560208401611fe9565b6000806000604084860312156120bd57600080fd5b83359250602084013567ffffffffffffffff808211156120dc57600080fd5b818601915086601f8301126120f057600080fd5b8135818111156120ff57600080fd5b8760208260051b850101111561211457600080fd5b6020830194508093505050509250925092565b6000806040838503121561213a57600080fd5b61214383611ecb565b9150611f2f60208401611e17565b6000806000806080858703121561216757600080fd5b61217085611ecb565b935061217e60208601611ecb565b925060408501359150606085013567ffffffffffffffff8111156121a157600080fd5b8501601f810187136121b257600080fd5b6121c187823560208401611fe9565b91505092959194509250565b600080604083850312156121e057600080fd5b6121e983611ecb565b9150611f2f60208401611ecb565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061224057607f821691505b6020821081141561226157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561229057612290612267565b500190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561234057612340612267565b5060010190565b60208082526037908201527f546f74616c206d696e74732061667465722074782065786365656473206d617860408201527f206d696e747320666f7220746869732061646472657373000000000000000000606082015260800190565b600083516123b6818460208801611e47565b8351908301906123ca818360208801611e47565b64173539b7b760d91b9101908152600501949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261245a5761245a612435565b500490565b60008282101561247157612471612267565b500390565b60008261248557612485612435565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124bd90830184611e73565b9695505050505050565b6000602082840312156124d957600080fd5b815161127181611de456fea2646970667358221220a81cc96baea1d90b253f3d10eeb18bed52cf1918e3d8fbb62161b3770324d49464736f6c634300080a0033

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

0000000000000000000000000000000000000000000000000000000000000060da452e56a904c5041ad2cefd547b689e4a3442cad130a6e83ec8e94ce51c5c3f948ca818bb35b0c83231648264e10da1ee822a908ad20b8780d342812496c1f7000000000000000000000000000000000000000000000000000000000000004a697066733a2f2f516d51324c70615a34675050324c676b33593968506b6658356d774c577355346d5968385a4c4e44456a616155422f68696464656e2d6d657461646174612e6a736f6e00000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _hiddenURI (string): ipfs://QmQ2LpaZ4gPP2Lgk3Y9hPkfX5mwLWsU4mYh8ZLNDEjaaUB/hidden-metadata.json
Arg [1] : _femaleRamMerkleRoot (bytes32): 0xda452e56a904c5041ad2cefd547b689e4a3442cad130a6e83ec8e94ce51c5c3f
Arg [2] : _maleRamMerkleRoot (bytes32): 0x948ca818bb35b0c83231648264e10da1ee822a908ad20b8780d342812496c1f7

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : da452e56a904c5041ad2cefd547b689e4a3442cad130a6e83ec8e94ce51c5c3f
Arg [2] : 948ca818bb35b0c83231648264e10da1ee822a908ad20b8780d342812496c1f7
Arg [3] : 000000000000000000000000000000000000000000000000000000000000004a
Arg [4] : 697066733a2f2f516d51324c70615a34675050324c676b33593968506b665835
Arg [5] : 6d774c577355346d5968385a4c4e44456a616155422f68696464656e2d6d6574
Arg [6] : 61646174612e6a736f6e00000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

35186:5262:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18502:301;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;18502:301:0;;;;;;;;39817:79;;;;;;:::i;:::-;;:::i;:::-;;12067:100;;;:::i;:::-;;;;;;;:::i;12707:308::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;12707:308:0;1878:203:1;12287:412:0;;;;;;:::i;:::-;;:::i;40342:103::-;;;;;;:::i;:::-;;:::i;19781:110::-;19869:7;:14;19781:110;;;2854:25:1;;;2842:2;2827:18;19781:110:0;2708:177:1;39437:258:0;;;;;;:::i;:::-;;:::i;13580:376::-;;;;;;:::i;:::-;;:::i;18811:504::-;;;;;;:::i;:::-;;:::i;35275:40::-;;35312:3;35275:40;;13964:185;;;;;;:::i;:::-;;:::i;38256:680::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39904:209::-;;;;;;:::i;:::-;;:::i;19899:244::-;;;;;;:::i;:::-;;:::i;35521:28::-;;;;;;;;;;;;35489:25;;;;;;;;;;;;11733:326;;;;;;:::i;:::-;;:::i;11207:518::-;;;;;;:::i;:::-;;:::i;36997:626::-;;;;;;:::i;:::-;;:::i;21816:94::-;;;:::i;19323:450::-;;;;;;:::i;:::-;;:::i;21165:87::-;21238:6;;-1:-1:-1;;;;;21238:6:0;21165:87;;40121:98;;;;;;:::i;:::-;;:::i;12175:104::-;;;:::i;13023:327::-;;;;;;:::i;:::-;;:::i;35447:35::-;;;;;;;;;35606:64;;;;;;:::i;:::-;;;;;;;;;;;;;;14157:365;;;;;;:::i;:::-;;:::i;39703:106::-;;;;;;:::i;:::-;;:::i;40227:107::-;;;;;;:::i;:::-;;:::i;38944:433::-;;;;;;:::i;:::-;;:::i;35677:62::-;;;;;;:::i;:::-;;;;;;;;;;;;;;37631:617;;;;;;:::i;:::-;;:::i;13358:214::-;;;;;;:::i;:::-;-1:-1:-1;;;;;13529:25:0;;;13500:4;13529:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;13358:214;35322:36;;35357:1;35322:36;;22065:229;;;;;;:::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;39817:79::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;;;;;;;;;39873:6:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;39873:15:0;;::::1;::::0;;;::::1;::::0;;39817: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;;8367:2:1;12853:110:0;;;8349:21:1;8406:2;8386:18;;;8379:30;8445:34;8425:18;;;8418:62;-1:-1:-1;;;8496:18:1;;;8489:42;8548:19;;12853:110:0;8165: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;;8780:2:1;12419:57:0;;;8762:21:1;8819:2;8799:18;;;8792:30;8858:34;8838:18;;;8831:62;-1:-1:-1;;;8909:18:1;;;8902:31;8950:19;;12419:57:0;8578: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;;9182:2:1;12489:168:0;;;9164:21:1;9221:2;9201:18;;;9194:30;9260:34;9240:18;;;9233:62;9331:26;9311:18;;;9304:54;9375:19;;12489:168:0;8980:420:1;12489:168:0;12670:21;12679:2;12683:7;12670:8;:21::i;:::-;12357:342;12287:412;;:::o;40342:103::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;40412:17:::1;:25:::0;40342:103::o;39437:258::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;39530:14:::1;39547:13;19869:7:::0;:14;;19781:110;39547:13:::1;39530:30:::0;-1:-1:-1;35312:3:0::1;39579:20;39588:11:::0;39530:30;39579:20:::1;:::i;:::-;:34;;39571:74;;;::::0;-1:-1:-1;;;39571:74:0;;9872:2:1;39571:74:0::1;::::0;::::1;9854:21:1::0;9911:2;9891:18;;;9884:30;9950:29;9930:18;;;9923:57;9997:18;;39571:74:0::1;9670:351:1::0;39571:74:0::1;39656:31;39664:9;39675:11;39656: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;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;38256:680::-;38316:16;38345:23;38371:17;38381:6;38371:9;:17::i;:::-;38345:43;;38399:30;38446:15;38432:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38432:30:0;-1:-1:-1;38399:63:0;-1:-1:-1;38498:1:0;38473:22;38550:348;38575:15;38557;:33;:65;;;;;35312:3;38594:14;:28;;38557:65;38550:348;;;38639:25;38667:23;38675:14;38667:7;:23::i;:::-;38639:51;;38730:6;-1:-1:-1;;;;;38709:27:0;:17;-1:-1:-1;;;;;38709:27:0;;38705:151;;;38790:14;38757:13;38771:15;38757:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;38823:17;;;;:::i;:::-;;;;38705:151;38870:16;;;;:::i;:::-;;;;38624:274;38550:348;;;-1:-1:-1;38915:13:0;;38256:680;-1:-1:-1;;;;38256:680:0:o;39904:209::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;40058:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;40090:8:0::1;:15:::0;;-1:-1:-1;;40090:15:0::1;::::0;::::1;::::0;;39904:209::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;;11269:2:1;20044:68:0;;;11251:21:1;11308:2;11288:18;;;11281:30;11347:25;11327:18;;;11320:53;11390:18;;20044:68:0;11067:347:1;20044:68:0;-1:-1:-1;20130:5:0;19899:244::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;;11621:2:1;11918:110:0;;;11603:21:1;11660:2;11640:18;;;11633:30;11699:34;11679:18;;;11672:62;-1:-1:-1;;;11750:18:1;;;11743:39;11799:19;;11918:110:0;11419:405:1;11207:518:0;11324:7;-1:-1:-1;;;;;11371:19:0;;11349:111;;;;-1:-1:-1;;;11349:111:0;;12031:2:1;11349:111:0;;;12013:21:1;12070:2;12050:18;;;12043:30;12109:34;12089:18;;;12082:62;-1:-1:-1;;;12160:18:1;;;12153:40;12210:19;;11349:111:0;11829: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;36997:626::-;37092:11;36082:14;36099:13;19869:7;:14;;19781:110;36099:13;36082:30;;36145:1;36131:11;:15;36123:59;;;;-1:-1:-1;;;36123:59:0;;12442:2:1;36123:59:0;;;12424:21:1;12481:2;12461:18;;;12454:30;12520:33;12500:18;;;12493:61;12571:18;;36123:59:0;12240:355:1;36123:59:0;37124:16:::1;::::0;::::1;;:27:::0;::::1;;;-1:-1:-1::0;37145:6:0::1;::::0;::::1;::::0;::::1;;;37144:7;37124:27;37116:80;;;::::0;-1:-1:-1;;;37116:80:0;;12802:2:1;37116:80:0::1;::::0;::::1;12784:21:1::0;12841:2;12821:18;;;12814:30;12880:34;12860:18;;;12853:62;-1:-1:-1;;;12931:18:1;;;12924:38;12979:19;;37116:80:0::1;12600:404:1::0;37116:80:0::1;37215:58;37227:17;37233:10;37227:5;:17::i;:::-;37246:19;;37267:5;;37215:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;37215:11:0::1;::::0;-1:-1:-1;;;37215:58:0:i:1;:::-;37207:84;;;::::0;-1:-1:-1;;;37207:84:0;;13211:2:1;37207:84:0::1;::::0;::::1;13193:21:1::0;13250:2;13230:18;;;13223:30;-1:-1:-1;;;13269:18:1;;;13262:43;13322:18;;37207:84:0::1;13009:337:1::0;37207:84:0::1;37362:10;37304:25;37332:41:::0;;;:29:::1;:41;::::0;;;;;35357:1:::1;37392:31;37412:11:::0;37332:41;37392:31:::1;:::i;:::-;:43;;37384:111;;;;-1:-1:-1::0;;;37384:111:0::1;;;;;;;:::i;:::-;37536:10;37506:41;::::0;;;:29:::1;:41;::::0;;;;:56;;37551:11;;37506:41;:56:::1;::::0;37551:11;;37506:56:::1;:::i;:::-;::::0;;;-1:-1:-1;37583:32:0::1;::::0;-1:-1:-1;37591:10:0::1;37603:11:::0;37583:7:::1;:32::i;:::-;37105:518;36071:131:::0;36997:626;;;;:::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;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;40121:98::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;40186:16:::1;:25:::0;;-1:-1:-1;;40186:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40121:98::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;;13977:2:1;13150:62:0;;;13959:21:1;14016:2;13996:18;;;13989:30;14055:27;14035:18;;;14028:55;14100:18;;13150:62:0;13775: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;;540:41:1;;;13225:42:0;;734:10;13294:48;;513:18:1;13294:48:0;;;;;;;13023:327;;:::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;:::-;14157:365;;;;:::o;39703:106::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;39779:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;39703:106:::0;:::o;40227:107::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;40299:19:::1;:27:::0;40227:107::o;38944:433::-;39018:13;39052:17;39060:8;39052:7;:17::i;:::-;39044:69;;;;-1:-1:-1;;;39044:69:0;;14331:2:1;39044:69:0;;;14313:21:1;14370:2;14350:18;;;14343:30;14409:34;14389:18;;;14382:62;-1:-1:-1;;;14460:18:1;;;14453:37;14507:19;;39044:69:0;14129:403:1;39044:69:0;39128:8;;;;;;;39124:66;;39169:9;39162:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38944:433;;;:::o;39124:66::-;39200:28;39231:10;:8;:10::i;:::-;39200:41;;39290:1;39265:14;39259:28;:32;:110;;;;;;;;;;;;;;;;;39318:14;39334:19;:8;:17;:19::i;:::-;39301:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39259:110;39252:117;38944:433;-1:-1:-1;;;38944:433:0:o;37631:617::-;37724:11;36082:14;36099:13;19869:7;:14;;19781:110;36099:13;36082:30;;36145:1;36131:11;:15;36123:59;;;;-1:-1:-1;;;36123:59:0;;12442:2:1;36123:59:0;;;12424:21:1;12481:2;12461:18;;;12454:30;12520:33;12500:18;;;12493:61;12571:18;;36123:59:0;12240:355:1;36123:59:0;37757:16:::1;::::0;::::1;;37756:17;:28:::0;::::1;;;-1:-1:-1::0;37778:6:0::1;::::0;::::1;::::0;::::1;;;37777:7;37756:28;37748:79;;;::::0;-1:-1:-1;;;37748:79:0;;15381:2:1;37748:79:0::1;::::0;::::1;15363:21:1::0;15420:2;15400:18;;;15393:30;15459:34;15439:18;;;15432:62;-1:-1:-1;;;15510:18:1;;;15503:36;15556:19;;37748:79:0::1;15179:402:1::0;37748:79:0::1;37846:56;37858:17;37864:10;37858:5;:17::i;:::-;37877;;37896:5;;37846:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;37846:11:0::1;::::0;-1:-1:-1;;;37846:56:0:i:1;:::-;37838:82;;;::::0;-1:-1:-1;;;37838:82:0;;13211:2:1;37838:82:0::1;::::0;::::1;13193:21:1::0;13250:2;13230:18;;;13223:30;-1:-1:-1;;;13269:18:1;;;13262:43;13322:18;;37838:82:0::1;13009:337:1::0;37838:82:0::1;37989:10;37933:25;37961:39:::0;;;:27:::1;:39;::::0;;;;;35357:1:::1;38019:31;38039:11:::0;37961:39;38019:31:::1;:::i;:::-;:43;;38011:111;;;;-1:-1:-1::0;;;38011:111:0::1;;;;;;;:::i;:::-;38161:10;38133:39;::::0;;;:27:::1;:39;::::0;;;;:54;;38176:11;;38133:39;:54:::1;::::0;38176:11;;38133:54:::1;:::i;22065:229::-:0;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;;15788:2:1;22146:110:0::1;::::0;::::1;15770:21:1::0;15827:2;15807:18;;;15800:30;15866:34;15846:18;;;15839:62;-1:-1:-1;;;15917:18:1;;;15910:36;15963:19;;22146:110:0::1;15586: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;36704:226::-;36781:14;36798:13;19869:7;:14;;19781:110;36798:13;36781:30;;36827:9;36822:101;36846:11;36842:1;:15;36822:101;;;36879:32;36889:9;36900:10;36909:1;36900:6;:10;:::i;:::-;36879:9;:32::i;:::-;36859:3;;;;:::i;:::-;;;;36822:101;;15053:453;15182:4;15226:16;15234:7;15226;:16::i;:::-;15204:110;;;;-1:-1:-1;;;15204:110:0;;16195:2:1;15204:110:0;;;16177:21:1;16234:2;16214:18;;;16207:30;16273:34;16253:18;;;16246:62;-1:-1:-1;;;16324:18:1;;;16317:42;16376:19;;15204:110:0;15993: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;;16608:2:1;16718:123:0;;;16590:21:1;16647:2;16627:18;;;16620:30;16686:34;16666:18;;;16659:62;-1:-1:-1;;;16737:18:1;;;16730:39;16786:19;;16718:123:0;16406:405:1;16718:123:0;-1:-1:-1;;;;;16860:16:0;;16852:65;;;;-1:-1:-1;;;16852:65:0;;17018:2:1;16852:65:0;;;17000:21:1;17057:2;17037:18;;;17030:30;17096:34;17076:18;;;17069:62;-1:-1:-1;;;17147:18:1;;;17140:34;17191:19;;16852:65:0;16816: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;36369:128::-;36462:26;;-1:-1:-1;;17370:2:1;17366:15;;;17362:53;36462:26:0;;;17350:66:1;36425:7:0;;17432:12:1;;36462:26:0;;;;;;;;;;;;36452:37;;;;;;36445:44;;36369:128;;;:::o;36505:191::-;36614:4;36638:50;36657:6;36665:11;36678:9;36638:18;:50::i;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;36262:99::-;36313:13;36346:7;36339:14;;;;;:::i;31345:723::-;31401:13;31622:10;31618:53;;-1:-1:-1;;31649:10:0;;;;;;;;;;;;-1:-1:-1;;;31649:10:0;;;;;31345:723::o;31618:53::-;31696:5;31681:12;31737:78;31744:9;;31737:78;;31770:8;;;;:::i;:::-;;-1:-1:-1;31793:10:0;;-1:-1:-1;31801:2:0;31793:10;;:::i;:::-;;;31737:78;;;31825:19;31857:6;31847:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31847:17:0;;31825:39;;31875:154;31882:10;;31875:154;;31909:11;31919:1;31909:11;;:::i;:::-;;-1:-1:-1;31978:10:0;31986:2;31978:5;:10;:::i;:::-;31965:24;;:2;:24;:::i;:::-;31952:39;;31935:6;31942;31935:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;31935:56:0;;;;;;;;-1:-1:-1;32006:11:0;32015:2;32006:11;;:::i;:::-;;;31875:154;;15514:110;15590:26;15600:2;15604:7;15590:26;;;;;;;;;;;;:9;:26::i;33898:190::-;34023:4;34076;34047:25;34060:5;34067:4;34047:12;:25::i;:::-;:33;;33898:190;-1:-1:-1;;;;33898:190:0:o;17287:980::-;17442:4;-1:-1:-1;;;;;17463:13:0;;23565:20;23613: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;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;34450:701::-;34533:7;34576:4;34533:7;34591:523;34615:5;:12;34611:1;:16;34591:523;;;34649:20;34672:5;34678:1;34672:8;;;;;;;;:::i;:::-;;;;;;;34649:31;;34715:12;34699;:28;34695:408;;34852:44;;;;;;19283:19:1;;;19318:12;;;19311:28;;;19355:12;;34852:44:0;;;;;;;;;;;;34842:55;;;;;;34827:70;;34695:408;;;35042:44;;;;;;19283:19:1;;;19318:12;;;19311:28;;;19355:12;;35042:44:0;;;;;;;;;;;;35032:55;;;;;;35017:70;;34695:408;-1:-1:-1;34629:3:0;;;;:::i;:::-;;;;34591:523;;15927:346;-1:-1:-1;;;;;16007:16:0;;15999:61;;;;-1:-1:-1;;;15999:61:0;;19580:2:1;15999:61:0;;;19562:21:1;;;19599:18;;;19592:30;19658:34;19638:18;;;19631:62;19710:18;;15999:61:0;19378:356:1;15999:61:0;16080:16;16088:7;16080;:16::i;:::-;16079:17;16071:58;;;;-1:-1:-1;;;16071:58:0;;19941:2:1;16071:58:0;;;19923:21:1;19980:2;19960:18;;;19953:30;20019;19999:18;;;19992:58;20067:18;;16071:58:0;19739: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;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2890:::-;2958:6;2966;3019:2;3007:9;2998:7;2994:23;2990:32;2987:52;;;3035:1;3032;3025:12;2987:52;3071:9;3058:23;3048:33;;3100:38;3134:2;3123:9;3119:18;3100:38;:::i;:::-;3090:48;;2890:254;;;;;:::o;3149:328::-;3226:6;3234;3242;3295:2;3283:9;3274:7;3270:23;3266:32;3263:52;;;3311:1;3308;3301:12;3263:52;3334:29;3353:9;3334:29;:::i;:::-;3324:39;;3382:38;3416:2;3405:9;3401:18;3382:38;:::i;:::-;3372:48;;3467:2;3456:9;3452:18;3439:32;3429:42;;3149:328;;;;;:::o;3482:186::-;3541:6;3594:2;3582:9;3573:7;3569:23;3565:32;3562:52;;;3610:1;3607;3600:12;3562:52;3633:29;3652:9;3633:29;:::i;3673:632::-;3844:2;3896:21;;;3966:13;;3869:18;;;3988:22;;;3815:4;;3844:2;4067:15;;;;4041:2;4026:18;;;3815:4;4110:169;4124:6;4121:1;4118:13;4110:169;;;4185:13;;4173:26;;4254:15;;;;4219:12;;;;4146:1;4139:9;4110:169;;;-1:-1:-1;4296:3:1;;3673:632;-1:-1:-1;;;;;;3673:632:1:o;4310:127::-;4371:10;4366:3;4362:20;4359:1;4352:31;4402:4;4399:1;4392:15;4426:4;4423:1;4416:15;4442:632;4507:5;4537:18;4578:2;4570:6;4567:14;4564:40;;;4584:18;;:::i;:::-;4659:2;4653:9;4627:2;4713:15;;-1:-1:-1;;4709:24:1;;;4735:2;4705:33;4701:42;4689:55;;;4759:18;;;4779:22;;;4756:46;4753:72;;;4805:18;;:::i;:::-;4845:10;4841:2;4834:22;4874:6;4865:15;;4904:6;4896;4889:22;4944:3;4935:6;4930:3;4926:16;4923:25;4920:45;;;4961:1;4958;4951:12;4920:45;5011:6;5006:3;4999:4;4991:6;4987:17;4974:44;5066:1;5059:4;5050:6;5042;5038:19;5034:30;5027:41;;;;4442:632;;;;;:::o;5079:451::-;5148:6;5201:2;5189:9;5180:7;5176:23;5172:32;5169:52;;;5217:1;5214;5207:12;5169:52;5257:9;5244:23;5290:18;5282:6;5279:30;5276:50;;;5322:1;5319;5312:12;5276:50;5345:22;;5398:4;5390:13;;5386:27;-1:-1:-1;5376:55:1;;5427:1;5424;5417:12;5376:55;5450:74;5516:7;5511:2;5498:16;5493:2;5489;5485:11;5450:74;:::i;5535:683::-;5630:6;5638;5646;5699:2;5687:9;5678:7;5674:23;5670:32;5667:52;;;5715:1;5712;5705:12;5667:52;5751:9;5738:23;5728:33;;5812:2;5801:9;5797:18;5784:32;5835:18;5876:2;5868:6;5865:14;5862:34;;;5892:1;5889;5882:12;5862:34;5930:6;5919:9;5915:22;5905:32;;5975:7;5968:4;5964:2;5960:13;5956:27;5946:55;;5997:1;5994;5987:12;5946:55;6037:2;6024:16;6063:2;6055:6;6052:14;6049:34;;;6079:1;6076;6069:12;6049:34;6132:7;6127:2;6117:6;6114:1;6110:14;6106:2;6102:23;6098:32;6095:45;6092:65;;;6153:1;6150;6143:12;6092:65;6184:2;6180;6176:11;6166:21;;6206:6;6196:16;;;;;5535:683;;;;;:::o;6223:254::-;6288:6;6296;6349:2;6337:9;6328:7;6324:23;6320:32;6317:52;;;6365:1;6362;6355:12;6317:52;6388:29;6407:9;6388:29;:::i;:::-;6378:39;;6436:35;6467:2;6456:9;6452:18;6436:35;:::i;6482:667::-;6577:6;6585;6593;6601;6654:3;6642:9;6633:7;6629:23;6625:33;6622:53;;;6671:1;6668;6661:12;6622:53;6694:29;6713:9;6694:29;:::i;:::-;6684:39;;6742:38;6776:2;6765:9;6761:18;6742:38;:::i;:::-;6732:48;;6827:2;6816:9;6812:18;6799:32;6789:42;;6882:2;6871:9;6867:18;6854:32;6909:18;6901:6;6898:30;6895:50;;;6941:1;6938;6931:12;6895:50;6964:22;;7017:4;7009:13;;7005:27;-1:-1:-1;6995:55:1;;7046:1;7043;7036:12;6995:55;7069:74;7135:7;7130:2;7117:16;7112:2;7108;7104:11;7069:74;:::i;:::-;7059:84;;;6482:667;;;;;;;:::o;7154:260::-;7222:6;7230;7283:2;7271:9;7262:7;7258:23;7254:32;7251:52;;;7299:1;7296;7289:12;7251:52;7322:29;7341:9;7322:29;:::i;:::-;7312:39;;7370:38;7404:2;7393:9;7389:18;7370:38;:::i;7419:356::-;7621:2;7603:21;;;7640:18;;;7633:30;7699:34;7694:2;7679:18;;7672:62;7766:2;7751:18;;7419:356::o;7780:380::-;7859:1;7855:12;;;;7902;;;7923:61;;7977:4;7969:6;7965:17;7955:27;;7923:61;8030:2;8022:6;8019:14;7999:18;7996:38;7993:161;;;8076:10;8071:3;8067:20;8064:1;8057:31;8111:4;8108:1;8101:15;8139:4;8136:1;8129:15;7993:161;;7780:380;;;:::o;9405:127::-;9466:10;9461:3;9457:20;9454:1;9447:31;9497:4;9494:1;9487:15;9521:4;9518:1;9511:15;9537:128;9577:3;9608:1;9604:6;9601:1;9598:13;9595:39;;;9614:18;;:::i;:::-;-1:-1:-1;9650:9:1;;9537:128::o;10026:413::-;10228:2;10210:21;;;10267:2;10247:18;;;10240:30;10306:34;10301:2;10286:18;;10279:62;-1:-1:-1;;;10372:2:1;10357:18;;10350:47;10429:3;10414:19;;10026:413::o;10444:346::-;10646:2;10628:21;;;10685:2;10665:18;;;10658:30;-1:-1:-1;;;10719:2:1;10704:18;;10697:52;10781:2;10766:18;;10444:346::o;10795:127::-;10856:10;10851:3;10847:20;10844:1;10837:31;10887:4;10884:1;10877:15;10911:4;10908:1;10901:15;10927:135;10966:3;-1:-1:-1;;10987:17:1;;10984:43;;;11007:18;;:::i;:::-;-1:-1:-1;11054:1:1;11043:13;;10927:135::o;13351:419::-;13553:2;13535:21;;;13592:2;13572:18;;;13565:30;13631:34;13626:2;13611:18;;13604:62;13702:25;13697:2;13682:18;;13675:53;13760:3;13745:19;;13351:419::o;14537:637::-;14817:3;14855:6;14849:13;14871:53;14917:6;14912:3;14905:4;14897:6;14893:17;14871:53;:::i;:::-;14987:13;;14946:16;;;;15009:57;14987:13;14946:16;15043:4;15031:17;;15009:57;:::i;:::-;-1:-1:-1;;;15088:20:1;;15117:22;;;15166:1;15155:13;;14537:637;-1:-1:-1;;;;14537:637:1:o;17455:414::-;17657:2;17639:21;;;17696:2;17676:18;;;17669:30;17735:34;17730:2;17715:18;;17708:62;-1:-1:-1;;;17801:2:1;17786:18;;17779:48;17859:3;17844:19;;17455:414::o;17874:127::-;17935:10;17930:3;17926:20;17923:1;17916:31;17966:4;17963:1;17956:15;17990:4;17987:1;17980:15;18006:120;18046:1;18072;18062:35;;18077:18;;:::i;:::-;-1:-1:-1;18111:9:1;;18006:120::o;18131:125::-;18171:4;18199:1;18196;18193:8;18190:34;;;18204:18;;:::i;:::-;-1:-1:-1;18241:9:1;;18131:125::o;18261:112::-;18293:1;18319;18309:35;;18324:18;;:::i;:::-;-1:-1:-1;18358:9:1;;18261:112::o;18378:489::-;-1:-1:-1;;;;;18647:15:1;;;18629:34;;18699:15;;18694:2;18679:18;;18672:43;18746:2;18731:18;;18724:34;;;18794:3;18789:2;18774:18;;18767:31;;;18572:4;;18815:46;;18841:19;;18833:6;18815:46;:::i;:::-;18807:54;18378:489;-1:-1:-1;;;;;;18378:489:1:o;18872:249::-;18941:6;18994:2;18982:9;18973:7;18969:23;18965:32;18962:52;;;19010:1;19007;19000:12;18962:52;19042:9;19036:16;19061:30;19085:5;19061:30;:::i

Swarm Source

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