ETH Price: $3,476.16 (+0.53%)
Gas: 14 Gwei

Token

INSIDE YOUR OPEN HEART (IYOH)
 

Overview

Max Total Supply

72 IYOH

Holders

59

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jasonnaylor.eth
Balance
3 IYOH
0x19dBcF92Ab399C5E05Df253Caf36A8F1aF8902ab
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
IYOH

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 14 of 18: IYOH.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Strings.sol";

import "./ContentMixin.sol";
import "./NativeMetaTransaction.sol";

contract IYOHOwnableDelegateProxy {}

contract IYOHProxyRegistry {
    mapping(address => IYOHOwnableDelegateProxy) public proxies;
}

contract IYOHRandomizer {
    function generateIYOH(uint256 serialId) public view returns (string memory) {}
}

contract IYOH is ERC721Enumerable, Ownable, ContextMixin, NativeMetaTransaction {
    using SafeMath for uint256;
    using Strings for uint256;

    address proxyRegistryAddress;
    IYOHRandomizer private randomizer;

    mapping(uint256 => string) private serialIdToIYOH;
    mapping(string => bool) private existingIYOH;

    ERC721 private whitelistContract;
    mapping(uint256 => bool) private whitelistedTokens;
    mapping(uint256 => bool) private tokensAlreadyUsedToMintIYOH;

    uint256 private mintStartTimestamp;
    uint256 private tokenOwnerMintingFees = 2e17;

    uint256 private currentIndex = 1;
    uint256 private maxMints = 150;

    bool private areMintsOpenForAll = false;
    uint256 private mintingFees = 25e16;

    string private baseURI = "";

    address private dev = 0x7bd8547188e1Dc634D5A340798Ac97581171dC2B;
    address private das = 0x666FDd2160D19dC763DE299dcb657DdEB222Bb36;
    address private art = 0x19dBcF92Ab399C5E05Df253Caf36A8F1aF8902ab;

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress,
        address _whitelistContract,
        address _randomizer,
        uint256 _mintStartTimestamp
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        whitelistContract = ERC721(_whitelistContract);
        randomizer = IYOHRandomizer(_randomizer);
        mintStartTimestamp = _mintStartTimestamp;
        _initializeEIP712(_name);
    }

    function setRandomizer(address _randomizer) public onlyOwner {
        randomizer = IYOHRandomizer(_randomizer);
    }

    function setWhitelistContract(address _whitelistContract) public onlyOwner {
        whitelistContract = ERC721(_whitelistContract);
    }

    function whitelistTokens(uint256[] memory tokenIds) public onlyOwner {
        for (uint256 i = 0; i < tokenIds.length; i++) {
            whitelistedTokens[tokenIds[i]] = true;
        }
    } 

    function setMintStartTimestamp(uint256 timestamp) public onlyOwner {
        mintStartTimestamp = timestamp;
    }

    function setMaxSupply(uint256 maxSupply) public onlyOwner {
        maxMints = maxSupply;
    }

    function setTokenOwnerMintingFees(uint256 fees) public onlyOwner {
        tokenOwnerMintingFees = fees;
    }

    function isTokenOwnerMintEnabled() public view returns (bool) {
        return block.timestamp >= mintStartTimestamp && areMintsOpenForAll == false;
    }

    function isTokenAvailableToMintIYOH(uint256 _tokenId)
        public
        view
        returns (bool)
    {
        return
            areMintsOpenForAll == false &&
            whitelistedTokens[_tokenId] == true && 
            tokensAlreadyUsedToMintIYOH[_tokenId] == false;
    }

    function mintTokenOwner(uint256 _tokenId)
        public
        payable
        returns (uint256)
    {
        require(
            isTokenOwnerMintEnabled(),
            "Token Owner Minting not allowed currently"
        );
        require(
            whitelistContract.ownerOf(_tokenId) == msg.sender,
            "You do not own this token"
        );
        require(
            isTokenAvailableToMintIYOH(_tokenId),
            "Token cannot be used to mint"
        );
        require(msg.value >= tokenOwnerMintingFees, "Incorrect value sent");
        require(
            currentIndex <= maxMints,
            "Sold out"
        );
        tokensAlreadyUsedToMintIYOH[_tokenId] = true;
        return mintNoChecks(msg.sender);
    }

    function isMintEnabledForAll() public view returns (bool) {
        return block.timestamp >= mintStartTimestamp && areMintsOpenForAll == true;
    }

    function setMintingFeesForAll(uint256 fees) public onlyOwner {
        mintingFees = fees;
    }

    function mintForAll() public payable returns (uint256) {
        require(
            isMintEnabledForAll(),
            "Minting not allowed currently"
        );
        require(
            msg.value >= mintingFees,
            "Incorrect value sent"
        );
        require(
            currentIndex <= maxMints,
            "Sold out"
        );
        return mintNoChecks(msg.sender);
    }

    function setMintsForAll(bool open) public onlyOwner {
        areMintsOpenForAll = open;
    }

    function mintNoChecks(address _to) private returns (uint256) {
        uint256 tokenId = currentIndex;
        string memory generatedIYOH = randomizer.generateIYOH(tokenId);
        require(
            !(isExistingIYOH(generatedIYOH)),
            "Unable to mint, please try again."
        );
        serialIdToIYOH[tokenId] = generatedIYOH;
        existingIYOH[generatedIYOH] = true;
        _mint(_to, tokenId);
        currentIndex = currentIndex + 1;
        return tokenId;
    }

    function getIYOHData(uint256 serialId) public view returns (string memory) {
        return serialIdToIYOH[serialId];
    }

    function isExistingIYOH(string memory _IYOH) private view returns (bool) {
        return existingIYOH[_IYOH];
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(dev).transfer(balance.div(4));
        payable(das).transfer(balance.div(4));
        payable(art).transfer(address(this).balance);
    }

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

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

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        return string(abi.encodePacked(baseURI, _tokenId.toString(), ".json"));
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        IYOHProxyRegistry proxyRegistry = IYOHProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender() internal view override returns (address sender) {
        return ContextMixin.msgSender();
    }

    function contractURI() public pure returns (string memory) {
        return "ipfs://Qme24GpTW1QwrpP1RozkwG6b3kueCFgeyT6qXjsV1J8mZ7";
    }
}

File 1 of 18: Address.sol
// SPDX-License-Identifier: MIT

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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 2 of 18: ContentMixin.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

File 3 of 18: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 4 of 18: EIP712Base.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {Initializable} from "./Initializable.sol";

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

File 5 of 18: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 6 of 18: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 7 of 18: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 8 of 18: IERC165.sol
// SPDX-License-Identifier: MIT

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 9 of 18: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 18: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 11 of 18: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 12 of 18: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 13 of 18: Initializable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

File 15 of 18: NativeMetaTransaction.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./SafeMath.sol";
import {EIP712Base} from "./EIP712Base.sol";

contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH =
        keccak256(
            bytes(
                "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
            )
        );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

File 16 of 18: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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 17 of 18: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 18 of 18: Strings.sol
// SPDX-License-Identifier: MIT

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"address","name":"_whitelistContract","type":"address"},{"internalType":"address","name":"_randomizer","type":"address"},{"internalType":"uint256","name":"_mintStartTimestamp","type":"uint256"}],"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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"serialId","type":"uint256"}],"name":"getIYOHData","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintEnabledForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isTokenAvailableToMintIYOH","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTokenOwnerMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintForAll","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mintTokenOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setMintStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fees","type":"uint256"}],"name":"setMintingFeesForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"open","type":"bool"}],"name":"setMintsForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_randomizer","type":"address"}],"name":"setRandomizer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fees","type":"uint256"}],"name":"setTokenOwnerMintingFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelistContract","type":"address"}],"name":"setWhitelistContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"whitelistTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600a805460ff60a01b191690556702c68af0bb140000601555600160165560966017556018805460ff191690556703782dace9d9000060195560a06040819052600060808190526200005491601a9162000370565b50601b80546001600160a01b0319908116737bd8547188e1dc634d5a340798ac97581171dc2b17909155601c8054821673666fdd2160d19dc763de299dcb657ddeb222bb36179055601d80549091167319dbcf92ab399c5e05df253caf36a8f1af8902ab179055348015620000c857600080fd5b506040516200379f3803806200379f833981016040819052620000eb9162000500565b8551869086906200010490600090602085019062000370565b5080516200011a90600190602084019062000370565b50505062000137620001316200019060201b60201c565b620001ac565b600d80546001600160a01b038087166001600160a01b03199283161790925560118054868416908316179055600e80549285169290911691909117905560148190556200018486620001fe565b505050505050620005e7565b6000620001a76200026f60201b62001a5a1760201c565b905090565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a54600160a01b900460ff16156200024e5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b6200025981620002ce565b50600a805460ff60a01b1916600160a01b179055565b600033301415620002c857600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002cb9050565b50335b90565b6040518060800160405280604f815260200162003750604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b8280546200037e90620005aa565b90600052602060002090601f016020900481019282620003a25760008555620003ed565b82601f10620003bd57805160ff1916838001178555620003ed565b82800160010185558215620003ed579182015b82811115620003ed578251825591602001919060010190620003d0565b50620003fb929150620003ff565b5090565b5b80821115620003fb576000815560010162000400565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200043e57600080fd5b81516001600160401b03808211156200045b576200045b62000416565b604051601f8301601f19908116603f0116810190828211818310171562000486576200048662000416565b81604052838152602092508683858801011115620004a357600080fd5b600091505b83821015620004c75785820183015181830184015290820190620004a8565b83821115620004d95760008385830101525b9695505050505050565b80516001600160a01b0381168114620004fb57600080fd5b919050565b60008060008060008060c087890312156200051a57600080fd5b86516001600160401b03808211156200053257600080fd5b620005408a838b016200042c565b975060208901519150808211156200055757600080fd5b506200056689828a016200042c565b9550506200057760408801620004e3565b93506200058760608801620004e3565b92506200059760808801620004e3565b915060a087015190509295509295509295565b600181811c90821680620005bf57607f821691505b60208210811415620005e157634e487b7160e01b600052602260045260246000fd5b50919050565b61315980620005f76000396000f3fe6080604052600436106102465760003560e01c80634f6ccce7116101395780638da5cb5b116100b6578063c87b56dd1161007a578063c87b56dd1461067b578063d66380b01461069b578063dac71706146106bb578063e8a3d485146106db578063e985e9c5146106f0578063f2fde38b1461071057600080fd5b80638da5cb5b146105f357806395d89b4114610611578063a22cb46514610626578063b88d4fde14610646578063b92582671461066657600080fd5b806370a08231116100fd57806370a082311461055e578063715018a61461057e578063767bcab514610593578063804152ed146105b3578063889db81e146105d357600080fd5b80634f6ccce7146104be57806354fee61f146104de57806355f804b3146104fe5780636352211e1461051e5780636f8b44b01461053e57600080fd5b806320379ee5116101c75780633408e4701161018b5780633408e470146104435780633cc74ca0146104565780633ccfd60b1461047657806342842e0e1461048b57806347be1e47146104ab57600080fd5b806320379ee5146103b057806323b872dd146103c55780632d0335ab146103e55780632f745c591461041b578063330438eb1461043b57600080fd5b80630f7e59701161020e5780630f7e59701461030f57806310e064cb1461033c57806312f261401461035c57806312fbb21b1461037c57806318160ddd1461039157600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da5780630c53c51c146102fc575b600080fd5b34801561025757600080fd5b5061026b61026636600461281b565b610730565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b5061029561075b565b6040516102779190612890565b3480156102ae57600080fd5b506102c26102bd3660046128a3565b6107ed565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f53660046128d1565b610887565b005b61029561030a3660046129ca565b6109af565b34801561031b57600080fd5b50610295604051806040016040528060018152602001603160f81b81525081565b34801561034857600080fd5b506102fa6103573660046128a3565b610b99565b34801561036857600080fd5b506102fa610377366004612a48565b610be7565b34801561038857600080fd5b5061026b610c52565b34801561039d57600080fd5b506008545b604051908152602001610277565b3480156103bc57600080fd5b50600b546103a2565b3480156103d157600080fd5b506102fa6103e0366004612a65565b610c72565b3480156103f157600080fd5b506103a2610400366004612a48565b6001600160a01b03166000908152600c602052604090205490565b34801561042757600080fd5b506103a26104363660046128d1565b610caa565b6103a2610d40565b34801561044f57600080fd5b50466103a2565b34801561046257600080fd5b506102956104713660046128a3565b610e27565b34801561048257600080fd5b506102fa610ec9565b34801561049757600080fd5b506102fa6104a6366004612a65565b610fd7565b6103a26104b93660046128a3565b610ff2565b3480156104ca57600080fd5b506103a26104d93660046128a3565b61122b565b3480156104ea57600080fd5b506102fa6104f93660046128a3565b6112be565b34801561050a57600080fd5b506102fa610519366004612aa6565b61130c565b34801561052a57600080fd5b506102c26105393660046128a3565b611368565b34801561054a57600080fd5b506102fa6105593660046128a3565b6113df565b34801561056a57600080fd5b506103a2610579366004612a48565b61142d565b34801561058a57600080fd5b506102fa6114b4565b34801561059f57600080fd5b506102fa6105ae366004612a48565b611509565b3480156105bf57600080fd5b506102fa6105ce3660046128a3565b611574565b3480156105df57600080fd5b5061026b6105ee3660046128a3565b6115c2565b3480156105ff57600080fd5b50600a546001600160a01b03166102c2565b34801561061d57600080fd5b50610295611609565b34801561063257600080fd5b506102fa610641366004612b04565b611618565b34801561065257600080fd5b506102fa610661366004612b39565b61171a565b34801561067257600080fd5b5061026b611759565b34801561068757600080fd5b506102956106963660046128a3565b611773565b3480156106a757600080fd5b506102fa6106b6366004612ba5565b6117a7565b3480156106c757600080fd5b506102fa6106d6366004612c3f565b611854565b3480156106e757600080fd5b506102956118b0565b3480156106fc57600080fd5b5061026b61070b366004612c5a565b6118d0565b34801561071c57600080fd5b506102fa61072b366004612a48565b6119a0565b60006001600160e01b0319821663780e9d6360e01b1480610755575061075582611ab7565b92915050565b60606000805461076a90612c93565b80601f016020809104026020016040519081016040528092919081815260200182805461079690612c93565b80156107e35780601f106107b8576101008083540402835291602001916107e3565b820191906000526020600020905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661086b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061089282611368565b9050806001600160a01b0316836001600160a01b031614156109005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610862565b806001600160a01b0316610912611b07565b6001600160a01b0316148061092e575061092e8161070b611b07565b6109a05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610862565b6109aa8383611b11565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526109ed8782878787611b7f565b610a435760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610862565b6001600160a01b0387166000908152600c6020526040902054610a67906001611c6f565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610ab790899033908a90612cce565b60405180910390a1600080306001600160a01b0316888a604051602001610adf929190612d1f565b60408051601f1981840301815290829052610af991612d56565b6000604051808303816000865af19150503d8060008114610b36576040519150601f19603f3d011682016040523d82523d6000602084013e610b3b565b606091505b509150915081610b8d5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610862565b98975050505050505050565b610ba1611b07565b6001600160a01b0316610bbc600a546001600160a01b031690565b6001600160a01b031614610be25760405162461bcd60e51b815260040161086290612d72565b601955565b610bef611b07565b6001600160a01b0316610c0a600a546001600160a01b031690565b6001600160a01b031614610c305760405162461bcd60e51b815260040161086290612d72565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b60006014544210158015610c6d575060185460ff1615156001145b905090565b610c83610c7d611b07565b82611c82565b610c9f5760405162461bcd60e51b815260040161086290612da7565b6109aa838383611d51565b6000610cb58361142d565b8210610d175760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610862565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000610d4a610c52565b610d965760405162461bcd60e51b815260206004820152601d60248201527f4d696e74696e67206e6f7420616c6c6f7765642063757272656e746c790000006044820152606401610862565b601954341015610ddf5760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd081d985b1d59481cd95b9d60621b6044820152606401610862565b6017546016541115610e1e5760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610862565b610c6d33611efc565b6000818152600f60205260409020805460609190610e4490612c93565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7090612c93565b8015610ebd5780601f10610e9257610100808354040283529160200191610ebd565b820191906000526020600020905b815481529060010190602001808311610ea057829003601f168201915b50505050509050919050565b610ed1611b07565b6001600160a01b0316610eec600a546001600160a01b031690565b6001600160a01b031614610f125760405162461bcd60e51b815260040161086290612d72565b601b5447906001600160a01b03166108fc610f2e83600461205b565b6040518115909202916000818181858888f19350505050158015610f56573d6000803e3d6000fd5b50601c546001600160a01b03166108fc610f7183600461205b565b6040518115909202916000818181858888f19350505050158015610f99573d6000803e3d6000fd5b50601d546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610fd3573d6000803e3d6000fd5b5050565b6109aa8383836040518060200160405280600081525061171a565b6000610ffc611759565b61105a5760405162461bcd60e51b815260206004820152602960248201527f546f6b656e204f776e6572204d696e74696e67206e6f7420616c6c6f7765642060448201526863757272656e746c7960b81b6064820152608401610862565b6011546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561109e57600080fd5b505afa1580156110b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110d69190612df8565b6001600160a01b03161461112c5760405162461bcd60e51b815260206004820152601960248201527f596f7520646f206e6f74206f776e207468697320746f6b656e000000000000006044820152606401610862565b611135826115c2565b6111815760405162461bcd60e51b815260206004820152601c60248201527f546f6b656e2063616e6e6f74206265207573656420746f206d696e74000000006044820152606401610862565b6015543410156111ca5760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd081d985b1d59481cd95b9d60621b6044820152606401610862565b60175460165411156112095760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610862565b6000828152601360205260409020805460ff1916600117905561075533611efc565b600061123660085490565b82106112995760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610862565b600882815481106112ac576112ac612e15565b90600052602060002001549050919050565b6112c6611b07565b6001600160a01b03166112e1600a546001600160a01b031690565b6001600160a01b0316146113075760405162461bcd60e51b815260040161086290612d72565b601455565b611314611b07565b6001600160a01b031661132f600a546001600160a01b031690565b6001600160a01b0316146113555760405162461bcd60e51b815260040161086290612d72565b8051610fd390601a90602084019061276c565b6000818152600260205260408120546001600160a01b0316806107555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610862565b6113e7611b07565b6001600160a01b0316611402600a546001600160a01b031690565b6001600160a01b0316146114285760405162461bcd60e51b815260040161086290612d72565b601755565b60006001600160a01b0382166114985760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610862565b506001600160a01b031660009081526003602052604090205490565b6114bc611b07565b6001600160a01b03166114d7600a546001600160a01b031690565b6001600160a01b0316146114fd5760405162461bcd60e51b815260040161086290612d72565b6115076000612067565b565b611511611b07565b6001600160a01b031661152c600a546001600160a01b031690565b6001600160a01b0316146115525760405162461bcd60e51b815260040161086290612d72565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b61157c611b07565b6001600160a01b0316611597600a546001600160a01b031690565b6001600160a01b0316146115bd5760405162461bcd60e51b815260040161086290612d72565b601555565b60185460009060ff161580156115eb575060008281526012602052604090205460ff1615156001145b801561075557505060009081526013602052604090205460ff161590565b60606001805461076a90612c93565b611620611b07565b6001600160a01b0316826001600160a01b031614156116815760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610862565b806005600061168e611b07565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556116d2611b07565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161170e911515815260200190565b60405180910390a35050565b61172b611725611b07565b83611c82565b6117475760405162461bcd60e51b815260040161086290612da7565b611753848484846120b9565b50505050565b60006014544210158015610c6d57505060185460ff161590565b6060601a611780836120ec565b604051602001611791929190612e2b565b6040516020818303038152906040529050919050565b6117af611b07565b6001600160a01b03166117ca600a546001600160a01b031690565b6001600160a01b0316146117f05760405162461bcd60e51b815260040161086290612d72565b60005b8151811015610fd35760016012600084848151811061181457611814612e15565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550808061184c90612ef3565b9150506117f3565b61185c611b07565b6001600160a01b0316611877600a546001600160a01b031690565b6001600160a01b03161461189d5760405162461bcd60e51b815260040161086290612d72565b6018805460ff1916911515919091179055565b60606040518060600160405280603581526020016130ef60359139905090565b600d5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561191d57600080fd5b505afa158015611931573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119559190612df8565b6001600160a01b0316141561196e576001915050610755565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6119a8611b07565b6001600160a01b03166119c3600a546001600160a01b031690565b6001600160a01b0316146119e95760405162461bcd60e51b815260040161086290612d72565b6001600160a01b038116611a4e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610862565b611a5781612067565b50565b600033301415611ab157600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150611ab49050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b1480611ae857506001600160e01b03198216635b5e139f60e01b145b8061075557506301ffc9a760e01b6001600160e01b0319831614610755565b6000610c6d611a5a565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b4682611368565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611be55760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610862565b6001611bf8611bf3876121ea565b612267565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611c46573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611c7b8284612f0e565b9392505050565b6000818152600260205260408120546001600160a01b0316611cfb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610862565b6000611d0683611368565b9050806001600160a01b0316846001600160a01b03161480611d415750836001600160a01b0316611d36846107ed565b6001600160a01b0316145b80611998575061199881856118d0565b826001600160a01b0316611d6482611368565b6001600160a01b031614611dcc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610862565b6001600160a01b038216611e2e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610862565b611e39838383612297565b611e44600082611b11565b6001600160a01b0383166000908152600360205260408120805460019290611e6d908490612f26565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e9b908490612f0e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b601654600e5460405163784ef27b60e11b8152600481018390526000929183916001600160a01b039091169063f09de4f69060240160006040518083038186803b158015611f4957600080fd5b505afa158015611f5d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611f859190810190612f3d565b9050611f908161234f565b15611fe75760405162461bcd60e51b815260206004820152602160248201527f556e61626c6520746f206d696e742c20706c656173652074727920616761696e6044820152601760f91b6064820152608401610862565b6000828152600f6020908152604090912082516120069284019061276c565b5060016010826040516120199190612d56565b908152604051908190036020019020805491151560ff19909216919091179055612043848361237a565b601654612051906001612f0e565b6016555092915050565b6000611c7b8284612fc1565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6120c4848484611d51565b6120d0848484846124c8565b6117535760405162461bcd60e51b815260040161086290612fd5565b6060816121105750506040805180820190915260018152600360fc1b602082015290565b8160005b811561213a578061212481612ef3565b91506121339050600a83612fc1565b9150612114565b60008167ffffffffffffffff811115612155576121556128fd565b6040519080825280601f01601f19166020018201604052801561217f576020820181803683370190505b5090505b841561199857612194600183612f26565b91506121a1600a86613027565b6121ac906030612f0e565b60f81b8183815181106121c1576121c1612e15565b60200101906001600160f81b031916908160001a9053506121e3600a86612fc1565b9450612183565b60006040518060800160405280604381526020016130ac604391398051602091820120835184830151604080870151805190860120905161224a950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612272600b5490565b60405161190160f01b602082015260228101919091526042810183905260620161224a565b6001600160a01b0383166122f2576122ed81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612315565b816001600160a01b0316836001600160a01b0316146123155761231583826125dc565b6001600160a01b03821661232c576109aa81612679565b826001600160a01b0316826001600160a01b0316146109aa576109aa8282612728565b60006010826040516123619190612d56565b9081526040519081900360200190205460ff1692915050565b6001600160a01b0382166123d05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610862565b6000818152600260205260409020546001600160a01b0316156124355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610862565b61244160008383612297565b6001600160a01b038216600090815260036020526040812080546001929061246a908490612f0e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156125d157836001600160a01b031663150b7a026124f1611b07565b8786866040518563ffffffff1660e01b8152600401612513949392919061303b565b602060405180830381600087803b15801561252d57600080fd5b505af192505050801561255d575060408051601f3d908101601f1916820190925261255a91810190613078565b60015b6125b7573d80801561258b576040519150601f19603f3d011682016040523d82523d6000602084013e612590565b606091505b5080516125af5760405162461bcd60e51b815260040161086290612fd5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611998565b506001949350505050565b600060016125e98461142d565b6125f39190612f26565b600083815260076020526040902054909150808214612646576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061268b90600190612f26565b600083815260096020526040812054600880549394509092849081106126b3576126b3612e15565b9060005260206000200154905080600883815481106126d4576126d4612e15565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061270c5761270c613095565b6001900381819060005260206000200160009055905550505050565b60006127338361142d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461277890612c93565b90600052602060002090601f01602090048101928261279a57600085556127e0565b82601f106127b357805160ff19168380011785556127e0565b828001600101855582156127e0579182015b828111156127e05782518255916020019190600101906127c5565b506127ec9291506127f0565b5090565b5b808211156127ec57600081556001016127f1565b6001600160e01b031981168114611a5757600080fd5b60006020828403121561282d57600080fd5b8135611c7b81612805565b60005b8381101561285357818101518382015260200161283b565b838111156117535750506000910152565b6000815180845261287c816020860160208601612838565b601f01601f19169290920160200192915050565b602081526000611c7b6020830184612864565b6000602082840312156128b557600080fd5b5035919050565b6001600160a01b0381168114611a5757600080fd5b600080604083850312156128e457600080fd5b82356128ef816128bc565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561293c5761293c6128fd565b604052919050565b600067ffffffffffffffff82111561295e5761295e6128fd565b50601f01601f191660200190565b600061297f61297a84612944565b612913565b905082815283838301111561299357600080fd5b828260208301376000602084830101529392505050565b600082601f8301126129bb57600080fd5b611c7b8383356020850161296c565b600080600080600060a086880312156129e257600080fd5b85356129ed816128bc565b9450602086013567ffffffffffffffff811115612a0957600080fd5b612a15888289016129aa565b9450506040860135925060608601359150608086013560ff81168114612a3a57600080fd5b809150509295509295909350565b600060208284031215612a5a57600080fd5b8135611c7b816128bc565b600080600060608486031215612a7a57600080fd5b8335612a85816128bc565b92506020840135612a95816128bc565b929592945050506040919091013590565b600060208284031215612ab857600080fd5b813567ffffffffffffffff811115612acf57600080fd5b8201601f81018413612ae057600080fd5b6119988482356020840161296c565b80358015158114612aff57600080fd5b919050565b60008060408385031215612b1757600080fd5b8235612b22816128bc565b9150612b3060208401612aef565b90509250929050565b60008060008060808587031215612b4f57600080fd5b8435612b5a816128bc565b93506020850135612b6a816128bc565b925060408501359150606085013567ffffffffffffffff811115612b8d57600080fd5b612b99878288016129aa565b91505092959194509250565b60006020808385031215612bb857600080fd5b823567ffffffffffffffff80821115612bd057600080fd5b818501915085601f830112612be457600080fd5b813581811115612bf657612bf66128fd565b8060051b9150612c07848301612913565b8181529183018401918481019088841115612c2157600080fd5b938501935b83851015610b8d57843582529385019390850190612c26565b600060208284031215612c5157600080fd5b611c7b82612aef565b60008060408385031215612c6d57600080fd5b8235612c78816128bc565b91506020830135612c88816128bc565b809150509250929050565b600181811c90821680612ca757607f821691505b60208210811415612cc857634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b03848116825283166020820152606060408201819052600090612cfa90830184612864565b95945050505050565b60008151612d15818560208601612838565b9290920192915050565b60008351612d31818460208801612838565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008251612d68818460208701612838565b9190910192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600060208284031215612e0a57600080fd5b8151611c7b816128bc565b634e487b7160e01b600052603260045260246000fd5b600080845481600182811c915080831680612e4757607f831692505b6020808410821415612e6757634e487b7160e01b86526022600452602486fd5b818015612e7b5760018114612e8c57612eb9565b60ff19861689528489019650612eb9565b60008b81526020902060005b86811015612eb15781548b820152908501908301612e98565b505084890196505b505050505050612cfa612ecc8286612d03565b64173539b7b760d91b815260050190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415612f0757612f07612edd565b5060010190565b60008219821115612f2157612f21612edd565b500190565b600082821015612f3857612f38612edd565b500390565b600060208284031215612f4f57600080fd5b815167ffffffffffffffff811115612f6657600080fd5b8201601f81018413612f7757600080fd5b8051612f8561297a82612944565b818152856020838501011115612f9a57600080fd5b612cfa826020830160208601612838565b634e487b7160e01b600052601260045260246000fd5b600082612fd057612fd0612fab565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261303657613036612fab565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061306e90830184612864565b9695505050505050565b60006020828403121561308a57600080fd5b8151611c7b81612805565b634e487b7160e01b600052603160045260246000fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529697066733a2f2f516d6532344770545731517772705031526f7a6b77473662336b75654346676579543671586a7356314a386d5a37a2646970667358221220bcba175402db62535d08d13ff6ab16dd8277aeb80dbdcca74e6aefcce98db4ad64736f6c63430008090033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742900000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000c22616e971a670e72f35570337e562c3e515fbfe00000000000000000000000046d96e8cbcb375b0ff530d846d6fb3f9495ebb310000000000000000000000000000000000000000000000000000000061802b200000000000000000000000000000000000000000000000000000000000000016494e5349444520594f5552204f50454e20484541525400000000000000000000000000000000000000000000000000000000000000000000000000000000000449594f4800000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c80634f6ccce7116101395780638da5cb5b116100b6578063c87b56dd1161007a578063c87b56dd1461067b578063d66380b01461069b578063dac71706146106bb578063e8a3d485146106db578063e985e9c5146106f0578063f2fde38b1461071057600080fd5b80638da5cb5b146105f357806395d89b4114610611578063a22cb46514610626578063b88d4fde14610646578063b92582671461066657600080fd5b806370a08231116100fd57806370a082311461055e578063715018a61461057e578063767bcab514610593578063804152ed146105b3578063889db81e146105d357600080fd5b80634f6ccce7146104be57806354fee61f146104de57806355f804b3146104fe5780636352211e1461051e5780636f8b44b01461053e57600080fd5b806320379ee5116101c75780633408e4701161018b5780633408e470146104435780633cc74ca0146104565780633ccfd60b1461047657806342842e0e1461048b57806347be1e47146104ab57600080fd5b806320379ee5146103b057806323b872dd146103c55780632d0335ab146103e55780632f745c591461041b578063330438eb1461043b57600080fd5b80630f7e59701161020e5780630f7e59701461030f57806310e064cb1461033c57806312f261401461035c57806312fbb21b1461037c57806318160ddd1461039157600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da5780630c53c51c146102fc575b600080fd5b34801561025757600080fd5b5061026b61026636600461281b565b610730565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b5061029561075b565b6040516102779190612890565b3480156102ae57600080fd5b506102c26102bd3660046128a3565b6107ed565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f53660046128d1565b610887565b005b61029561030a3660046129ca565b6109af565b34801561031b57600080fd5b50610295604051806040016040528060018152602001603160f81b81525081565b34801561034857600080fd5b506102fa6103573660046128a3565b610b99565b34801561036857600080fd5b506102fa610377366004612a48565b610be7565b34801561038857600080fd5b5061026b610c52565b34801561039d57600080fd5b506008545b604051908152602001610277565b3480156103bc57600080fd5b50600b546103a2565b3480156103d157600080fd5b506102fa6103e0366004612a65565b610c72565b3480156103f157600080fd5b506103a2610400366004612a48565b6001600160a01b03166000908152600c602052604090205490565b34801561042757600080fd5b506103a26104363660046128d1565b610caa565b6103a2610d40565b34801561044f57600080fd5b50466103a2565b34801561046257600080fd5b506102956104713660046128a3565b610e27565b34801561048257600080fd5b506102fa610ec9565b34801561049757600080fd5b506102fa6104a6366004612a65565b610fd7565b6103a26104b93660046128a3565b610ff2565b3480156104ca57600080fd5b506103a26104d93660046128a3565b61122b565b3480156104ea57600080fd5b506102fa6104f93660046128a3565b6112be565b34801561050a57600080fd5b506102fa610519366004612aa6565b61130c565b34801561052a57600080fd5b506102c26105393660046128a3565b611368565b34801561054a57600080fd5b506102fa6105593660046128a3565b6113df565b34801561056a57600080fd5b506103a2610579366004612a48565b61142d565b34801561058a57600080fd5b506102fa6114b4565b34801561059f57600080fd5b506102fa6105ae366004612a48565b611509565b3480156105bf57600080fd5b506102fa6105ce3660046128a3565b611574565b3480156105df57600080fd5b5061026b6105ee3660046128a3565b6115c2565b3480156105ff57600080fd5b50600a546001600160a01b03166102c2565b34801561061d57600080fd5b50610295611609565b34801561063257600080fd5b506102fa610641366004612b04565b611618565b34801561065257600080fd5b506102fa610661366004612b39565b61171a565b34801561067257600080fd5b5061026b611759565b34801561068757600080fd5b506102956106963660046128a3565b611773565b3480156106a757600080fd5b506102fa6106b6366004612ba5565b6117a7565b3480156106c757600080fd5b506102fa6106d6366004612c3f565b611854565b3480156106e757600080fd5b506102956118b0565b3480156106fc57600080fd5b5061026b61070b366004612c5a565b6118d0565b34801561071c57600080fd5b506102fa61072b366004612a48565b6119a0565b60006001600160e01b0319821663780e9d6360e01b1480610755575061075582611ab7565b92915050565b60606000805461076a90612c93565b80601f016020809104026020016040519081016040528092919081815260200182805461079690612c93565b80156107e35780601f106107b8576101008083540402835291602001916107e3565b820191906000526020600020905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661086b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061089282611368565b9050806001600160a01b0316836001600160a01b031614156109005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610862565b806001600160a01b0316610912611b07565b6001600160a01b0316148061092e575061092e8161070b611b07565b6109a05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610862565b6109aa8383611b11565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526109ed8782878787611b7f565b610a435760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610862565b6001600160a01b0387166000908152600c6020526040902054610a67906001611c6f565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610ab790899033908a90612cce565b60405180910390a1600080306001600160a01b0316888a604051602001610adf929190612d1f565b60408051601f1981840301815290829052610af991612d56565b6000604051808303816000865af19150503d8060008114610b36576040519150601f19603f3d011682016040523d82523d6000602084013e610b3b565b606091505b509150915081610b8d5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610862565b98975050505050505050565b610ba1611b07565b6001600160a01b0316610bbc600a546001600160a01b031690565b6001600160a01b031614610be25760405162461bcd60e51b815260040161086290612d72565b601955565b610bef611b07565b6001600160a01b0316610c0a600a546001600160a01b031690565b6001600160a01b031614610c305760405162461bcd60e51b815260040161086290612d72565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b60006014544210158015610c6d575060185460ff1615156001145b905090565b610c83610c7d611b07565b82611c82565b610c9f5760405162461bcd60e51b815260040161086290612da7565b6109aa838383611d51565b6000610cb58361142d565b8210610d175760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610862565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000610d4a610c52565b610d965760405162461bcd60e51b815260206004820152601d60248201527f4d696e74696e67206e6f7420616c6c6f7765642063757272656e746c790000006044820152606401610862565b601954341015610ddf5760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd081d985b1d59481cd95b9d60621b6044820152606401610862565b6017546016541115610e1e5760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610862565b610c6d33611efc565b6000818152600f60205260409020805460609190610e4490612c93565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7090612c93565b8015610ebd5780601f10610e9257610100808354040283529160200191610ebd565b820191906000526020600020905b815481529060010190602001808311610ea057829003601f168201915b50505050509050919050565b610ed1611b07565b6001600160a01b0316610eec600a546001600160a01b031690565b6001600160a01b031614610f125760405162461bcd60e51b815260040161086290612d72565b601b5447906001600160a01b03166108fc610f2e83600461205b565b6040518115909202916000818181858888f19350505050158015610f56573d6000803e3d6000fd5b50601c546001600160a01b03166108fc610f7183600461205b565b6040518115909202916000818181858888f19350505050158015610f99573d6000803e3d6000fd5b50601d546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610fd3573d6000803e3d6000fd5b5050565b6109aa8383836040518060200160405280600081525061171a565b6000610ffc611759565b61105a5760405162461bcd60e51b815260206004820152602960248201527f546f6b656e204f776e6572204d696e74696e67206e6f7420616c6c6f7765642060448201526863757272656e746c7960b81b6064820152608401610862565b6011546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561109e57600080fd5b505afa1580156110b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110d69190612df8565b6001600160a01b03161461112c5760405162461bcd60e51b815260206004820152601960248201527f596f7520646f206e6f74206f776e207468697320746f6b656e000000000000006044820152606401610862565b611135826115c2565b6111815760405162461bcd60e51b815260206004820152601c60248201527f546f6b656e2063616e6e6f74206265207573656420746f206d696e74000000006044820152606401610862565b6015543410156111ca5760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd081d985b1d59481cd95b9d60621b6044820152606401610862565b60175460165411156112095760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610862565b6000828152601360205260409020805460ff1916600117905561075533611efc565b600061123660085490565b82106112995760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610862565b600882815481106112ac576112ac612e15565b90600052602060002001549050919050565b6112c6611b07565b6001600160a01b03166112e1600a546001600160a01b031690565b6001600160a01b0316146113075760405162461bcd60e51b815260040161086290612d72565b601455565b611314611b07565b6001600160a01b031661132f600a546001600160a01b031690565b6001600160a01b0316146113555760405162461bcd60e51b815260040161086290612d72565b8051610fd390601a90602084019061276c565b6000818152600260205260408120546001600160a01b0316806107555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610862565b6113e7611b07565b6001600160a01b0316611402600a546001600160a01b031690565b6001600160a01b0316146114285760405162461bcd60e51b815260040161086290612d72565b601755565b60006001600160a01b0382166114985760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610862565b506001600160a01b031660009081526003602052604090205490565b6114bc611b07565b6001600160a01b03166114d7600a546001600160a01b031690565b6001600160a01b0316146114fd5760405162461bcd60e51b815260040161086290612d72565b6115076000612067565b565b611511611b07565b6001600160a01b031661152c600a546001600160a01b031690565b6001600160a01b0316146115525760405162461bcd60e51b815260040161086290612d72565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b61157c611b07565b6001600160a01b0316611597600a546001600160a01b031690565b6001600160a01b0316146115bd5760405162461bcd60e51b815260040161086290612d72565b601555565b60185460009060ff161580156115eb575060008281526012602052604090205460ff1615156001145b801561075557505060009081526013602052604090205460ff161590565b60606001805461076a90612c93565b611620611b07565b6001600160a01b0316826001600160a01b031614156116815760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610862565b806005600061168e611b07565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556116d2611b07565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161170e911515815260200190565b60405180910390a35050565b61172b611725611b07565b83611c82565b6117475760405162461bcd60e51b815260040161086290612da7565b611753848484846120b9565b50505050565b60006014544210158015610c6d57505060185460ff161590565b6060601a611780836120ec565b604051602001611791929190612e2b565b6040516020818303038152906040529050919050565b6117af611b07565b6001600160a01b03166117ca600a546001600160a01b031690565b6001600160a01b0316146117f05760405162461bcd60e51b815260040161086290612d72565b60005b8151811015610fd35760016012600084848151811061181457611814612e15565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550808061184c90612ef3565b9150506117f3565b61185c611b07565b6001600160a01b0316611877600a546001600160a01b031690565b6001600160a01b03161461189d5760405162461bcd60e51b815260040161086290612d72565b6018805460ff1916911515919091179055565b60606040518060600160405280603581526020016130ef60359139905090565b600d5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561191d57600080fd5b505afa158015611931573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119559190612df8565b6001600160a01b0316141561196e576001915050610755565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6119a8611b07565b6001600160a01b03166119c3600a546001600160a01b031690565b6001600160a01b0316146119e95760405162461bcd60e51b815260040161086290612d72565b6001600160a01b038116611a4e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610862565b611a5781612067565b50565b600033301415611ab157600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150611ab49050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b1480611ae857506001600160e01b03198216635b5e139f60e01b145b8061075557506301ffc9a760e01b6001600160e01b0319831614610755565b6000610c6d611a5a565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b4682611368565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611be55760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610862565b6001611bf8611bf3876121ea565b612267565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611c46573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611c7b8284612f0e565b9392505050565b6000818152600260205260408120546001600160a01b0316611cfb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610862565b6000611d0683611368565b9050806001600160a01b0316846001600160a01b03161480611d415750836001600160a01b0316611d36846107ed565b6001600160a01b0316145b80611998575061199881856118d0565b826001600160a01b0316611d6482611368565b6001600160a01b031614611dcc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610862565b6001600160a01b038216611e2e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610862565b611e39838383612297565b611e44600082611b11565b6001600160a01b0383166000908152600360205260408120805460019290611e6d908490612f26565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e9b908490612f0e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b601654600e5460405163784ef27b60e11b8152600481018390526000929183916001600160a01b039091169063f09de4f69060240160006040518083038186803b158015611f4957600080fd5b505afa158015611f5d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611f859190810190612f3d565b9050611f908161234f565b15611fe75760405162461bcd60e51b815260206004820152602160248201527f556e61626c6520746f206d696e742c20706c656173652074727920616761696e6044820152601760f91b6064820152608401610862565b6000828152600f6020908152604090912082516120069284019061276c565b5060016010826040516120199190612d56565b908152604051908190036020019020805491151560ff19909216919091179055612043848361237a565b601654612051906001612f0e565b6016555092915050565b6000611c7b8284612fc1565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6120c4848484611d51565b6120d0848484846124c8565b6117535760405162461bcd60e51b815260040161086290612fd5565b6060816121105750506040805180820190915260018152600360fc1b602082015290565b8160005b811561213a578061212481612ef3565b91506121339050600a83612fc1565b9150612114565b60008167ffffffffffffffff811115612155576121556128fd565b6040519080825280601f01601f19166020018201604052801561217f576020820181803683370190505b5090505b841561199857612194600183612f26565b91506121a1600a86613027565b6121ac906030612f0e565b60f81b8183815181106121c1576121c1612e15565b60200101906001600160f81b031916908160001a9053506121e3600a86612fc1565b9450612183565b60006040518060800160405280604381526020016130ac604391398051602091820120835184830151604080870151805190860120905161224a950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612272600b5490565b60405161190160f01b602082015260228101919091526042810183905260620161224a565b6001600160a01b0383166122f2576122ed81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612315565b816001600160a01b0316836001600160a01b0316146123155761231583826125dc565b6001600160a01b03821661232c576109aa81612679565b826001600160a01b0316826001600160a01b0316146109aa576109aa8282612728565b60006010826040516123619190612d56565b9081526040519081900360200190205460ff1692915050565b6001600160a01b0382166123d05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610862565b6000818152600260205260409020546001600160a01b0316156124355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610862565b61244160008383612297565b6001600160a01b038216600090815260036020526040812080546001929061246a908490612f0e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156125d157836001600160a01b031663150b7a026124f1611b07565b8786866040518563ffffffff1660e01b8152600401612513949392919061303b565b602060405180830381600087803b15801561252d57600080fd5b505af192505050801561255d575060408051601f3d908101601f1916820190925261255a91810190613078565b60015b6125b7573d80801561258b576040519150601f19603f3d011682016040523d82523d6000602084013e612590565b606091505b5080516125af5760405162461bcd60e51b815260040161086290612fd5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611998565b506001949350505050565b600060016125e98461142d565b6125f39190612f26565b600083815260076020526040902054909150808214612646576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061268b90600190612f26565b600083815260096020526040812054600880549394509092849081106126b3576126b3612e15565b9060005260206000200154905080600883815481106126d4576126d4612e15565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061270c5761270c613095565b6001900381819060005260206000200160009055905550505050565b60006127338361142d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461277890612c93565b90600052602060002090601f01602090048101928261279a57600085556127e0565b82601f106127b357805160ff19168380011785556127e0565b828001600101855582156127e0579182015b828111156127e05782518255916020019190600101906127c5565b506127ec9291506127f0565b5090565b5b808211156127ec57600081556001016127f1565b6001600160e01b031981168114611a5757600080fd5b60006020828403121561282d57600080fd5b8135611c7b81612805565b60005b8381101561285357818101518382015260200161283b565b838111156117535750506000910152565b6000815180845261287c816020860160208601612838565b601f01601f19169290920160200192915050565b602081526000611c7b6020830184612864565b6000602082840312156128b557600080fd5b5035919050565b6001600160a01b0381168114611a5757600080fd5b600080604083850312156128e457600080fd5b82356128ef816128bc565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561293c5761293c6128fd565b604052919050565b600067ffffffffffffffff82111561295e5761295e6128fd565b50601f01601f191660200190565b600061297f61297a84612944565b612913565b905082815283838301111561299357600080fd5b828260208301376000602084830101529392505050565b600082601f8301126129bb57600080fd5b611c7b8383356020850161296c565b600080600080600060a086880312156129e257600080fd5b85356129ed816128bc565b9450602086013567ffffffffffffffff811115612a0957600080fd5b612a15888289016129aa565b9450506040860135925060608601359150608086013560ff81168114612a3a57600080fd5b809150509295509295909350565b600060208284031215612a5a57600080fd5b8135611c7b816128bc565b600080600060608486031215612a7a57600080fd5b8335612a85816128bc565b92506020840135612a95816128bc565b929592945050506040919091013590565b600060208284031215612ab857600080fd5b813567ffffffffffffffff811115612acf57600080fd5b8201601f81018413612ae057600080fd5b6119988482356020840161296c565b80358015158114612aff57600080fd5b919050565b60008060408385031215612b1757600080fd5b8235612b22816128bc565b9150612b3060208401612aef565b90509250929050565b60008060008060808587031215612b4f57600080fd5b8435612b5a816128bc565b93506020850135612b6a816128bc565b925060408501359150606085013567ffffffffffffffff811115612b8d57600080fd5b612b99878288016129aa565b91505092959194509250565b60006020808385031215612bb857600080fd5b823567ffffffffffffffff80821115612bd057600080fd5b818501915085601f830112612be457600080fd5b813581811115612bf657612bf66128fd565b8060051b9150612c07848301612913565b8181529183018401918481019088841115612c2157600080fd5b938501935b83851015610b8d57843582529385019390850190612c26565b600060208284031215612c5157600080fd5b611c7b82612aef565b60008060408385031215612c6d57600080fd5b8235612c78816128bc565b91506020830135612c88816128bc565b809150509250929050565b600181811c90821680612ca757607f821691505b60208210811415612cc857634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b03848116825283166020820152606060408201819052600090612cfa90830184612864565b95945050505050565b60008151612d15818560208601612838565b9290920192915050565b60008351612d31818460208801612838565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008251612d68818460208701612838565b9190910192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600060208284031215612e0a57600080fd5b8151611c7b816128bc565b634e487b7160e01b600052603260045260246000fd5b600080845481600182811c915080831680612e4757607f831692505b6020808410821415612e6757634e487b7160e01b86526022600452602486fd5b818015612e7b5760018114612e8c57612eb9565b60ff19861689528489019650612eb9565b60008b81526020902060005b86811015612eb15781548b820152908501908301612e98565b505084890196505b505050505050612cfa612ecc8286612d03565b64173539b7b760d91b815260050190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415612f0757612f07612edd565b5060010190565b60008219821115612f2157612f21612edd565b500190565b600082821015612f3857612f38612edd565b500390565b600060208284031215612f4f57600080fd5b815167ffffffffffffffff811115612f6657600080fd5b8201601f81018413612f7757600080fd5b8051612f8561297a82612944565b818152856020838501011115612f9a57600080fd5b612cfa826020830160208601612838565b634e487b7160e01b600052601260045260246000fd5b600082612fd057612fd0612fab565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261303657613036612fab565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061306e90830184612864565b9695505050505050565b60006020828403121561308a57600080fd5b8151611c7b81612805565b634e487b7160e01b600052603160045260246000fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529697066733a2f2f516d6532344770545731517772705031526f7a6b77473662336b75654346676579543671586a7356314a386d5a37a2646970667358221220bcba175402db62535d08d13ff6ab16dd8277aeb80dbdcca74e6aefcce98db4ad64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000c22616e971a670e72f35570337e562c3e515fbfe00000000000000000000000046d96e8cbcb375b0ff530d846d6fb3f9495ebb310000000000000000000000000000000000000000000000000000000061802b200000000000000000000000000000000000000000000000000000000000000016494e5349444520594f5552204f50454e20484541525400000000000000000000000000000000000000000000000000000000000000000000000000000000000449594f4800000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): INSIDE YOUR OPEN HEART
Arg [1] : _symbol (string): IYOH
Arg [2] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [3] : _whitelistContract (address): 0xC22616E971a670E72F35570337e562c3E515FBFE
Arg [4] : _randomizer (address): 0x46D96E8cbCb375B0FF530D846d6fb3F9495EbB31
Arg [5] : _mintStartTimestamp (uint256): 1635789600

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [3] : 000000000000000000000000c22616e971a670e72f35570337e562c3e515fbfe
Arg [4] : 00000000000000000000000046d96e8cbcb375b0ff530d846d6fb3f9495ebb31
Arg [5] : 0000000000000000000000000000000000000000000000000000000061802b20
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [7] : 494e5349444520594f5552204f50454e20484541525400000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 49594f4800000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

480:6625:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:222:6;;;;;;;;;;-1:-1:-1;909:222:6;;;;;:::i;:::-;;:::i;:::-;;;565:14:18;;558:22;540:41;;528:2;513:18;909:222:6;;;;;;;;2349:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3860:217::-;;;;;;;;;;-1:-1:-1;3860:217:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:18;;;1674:51;;1662:2;1647:18;3860:217:5;1528:203:18;3398:401:5;;;;;;;;;;-1:-1:-1;3398:401:5;;;;;:::i;:::-;;:::i;:::-;;950:1117:14;;;;;;:::i;:::-;;:::i;288:43:3:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;288:43:3;;;;;4132:96:12;;;;;;;;;;-1:-1:-1;4132:96:12;;;;;:::i;:::-;;:::i;2092:138::-;;;;;;;;;;-1:-1:-1;2092:138:12;;;;;:::i;:::-;;:::i;3977:149::-;;;;;;;;;;;;;:::i;1534:111:6:-;;;;;;;;;;-1:-1:-1;1621:10:6;:17;1534:111;;;4745:25:18;;;4733:2;4718:18;1534:111:6;4599:177:18;1264:99:3;;;;;;;;;;-1:-1:-1;1341:15:3;;1264:99;;4724:330:5;;;;;;;;;;-1:-1:-1;4724:330:5;;;;;:::i;:::-;;:::i;2475:105:14:-;;;;;;;;;;-1:-1:-1;2475:105:14;;;;;:::i;:::-;-1:-1:-1;;;;;2561:12:14;2528:13;2561:12;;;:6;:12;;;;;;;2475:105;1210:253:6;;;;;;;;;;-1:-1:-1;1210:253:6;;;;;:::i;:::-;;:::i;4234:400:12:-;;;:::i;1369:155:3:-;;;;;;;;;;-1:-1:-1;1480:9:3;1369:155;;5235:123:12;;;;;;;;;;-1:-1:-1;5235:123:12;;;;;:::i;:::-;;:::i;5486:241::-;;;;;;;;;;;;;:::i;5120:179:5:-;;;;;;;;;;-1:-1:-1;5120:179:5;;;;;:::i;:::-;;:::i;3225:746:12:-;;;;;;:::i;:::-;;:::i;1717:230:6:-;;;;;;;;;;-1:-1:-1;1717:230:6;;;;;:::i;:::-;;:::i;2436:114:12:-;;;;;;;;;;-1:-1:-1;2436:114:12;;;;;:::i;:::-;;:::i;5733:88::-;;;;;;;;;;-1:-1:-1;5733:88:12;;;;;:::i;:::-;;:::i;2052:235:5:-;;;;;;;;;;-1:-1:-1;2052:235:5;;;;;:::i;:::-;;:::i;2556:95:12:-;;;;;;;;;;-1:-1:-1;2556:95:12;;;;;:::i;:::-;;:::i;1790:205:5:-;;;;;;;;;;-1:-1:-1;1790:205:5;;;;;:::i;:::-;;:::i;1598:92:15:-;;;;;;;;;;;;;:::i;1968:118:12:-;;;;;;;;;;-1:-1:-1;1968:118:12;;;;;:::i;:::-;;:::i;2657:110::-;;;;;;;;;;-1:-1:-1;2657:110:12;;;;;:::i;:::-;;:::i;2933:286::-;;;;;;;;;;-1:-1:-1;2933:286:12;;;;;:::i;:::-;;:::i;966:85:15:-;;;;;;;;;;-1:-1:-1;1038:6:15;;-1:-1:-1;;;;;1038:6:15;966:85;;2511:102:5;;;;;;;;;;;;;:::i;4144:290::-;;;;;;;;;;-1:-1:-1;4144:290:5;;;;;:::i;:::-;;:::i;5365:320::-;;;;;;;;;;-1:-1:-1;5365:320:5;;;;;:::i;:::-;;:::i;2773:154:12:-;;;;;;;;;;;;;:::i;5931:204::-;;;;;;;;;;-1:-1:-1;5931:204:12;;;;;:::i;:::-;;:::i;2236:193::-;;;;;;;;;;-1:-1:-1;2236:193:12;;;;;:::i;:::-;;:::i;4640:94::-;;;;;;;;;;-1:-1:-1;4640:94:12;;;;;:::i;:::-;;:::i;6965:138::-;;;;;;;;;;;;;:::i;6262:440::-;;;;;;;;;;-1:-1:-1;6262:440:12;;;;;:::i;:::-;;:::i;1839:189:15:-;;;;;;;;;;-1:-1:-1;1839:189:15;;;;;:::i;:::-;;:::i;909:222:6:-;1011:4;-1:-1:-1;;;;;;1034:50:6;;-1:-1:-1;;;1034:50:6;;:90;;;1088:36;1112:11;1088:23;:36::i;:::-;1027:97;909:222;-1:-1:-1;;909:222:6:o;2349:98:5:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:5;3955:73;;;;-1:-1:-1;;;3955:73:5;;9150:2:18;3955:73:5;;;9132:21:18;9189:2;9169:18;;;9162:30;9228:34;9208:18;;;9201:62;-1:-1:-1;;;9279:18:18;;;9272:42;9331:19;;3955:73:5;;;;;;;;;-1:-1:-1;4046:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;4046:24:5;;3860:217::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;-1:-1:-1;;;;;3535:11:5;:2;-1:-1:-1;;;;;3535:11:5;;;3527:57;;;;-1:-1:-1;;;3527:57:5;;9563:2:18;3527:57:5;;;9545:21:18;9602:2;9582:18;;;9575:30;9641:34;9621:18;;;9614:62;-1:-1:-1;;;9692:18:18;;;9685:31;9733:19;;3527:57:5;9361:397:18;3527:57:5;3632:5;-1:-1:-1;;;;;3616:21:5;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3616:21:5;;:62;;;;3641:37;3658:5;3665:12;:10;:12::i;3641:37::-;3595:165;;;;-1:-1:-1;;;3595:165:5;;9965:2:18;3595:165:5;;;9947:21:18;10004:2;9984:18;;;9977:30;10043:34;10023:18;;;10016:62;10114:26;10094:18;;;10087:54;10158:19;;3595:165:5;9763:420:18;3595:165:5;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3468:331;3398:401;;:::o;950:1117:14:-;1201:148;;;1145:12;1201:148;;;;;-1:-1:-1;;;;;1238:19:14;;1169:29;1238:19;;;:6;:19;;;;;;;;;1201:148;;;;;;;;;;;1381:45;1245:11;1201:148;1409:4;1415;1421;1381:6;:45::i;:::-;1360:125;;;;-1:-1:-1;;;1360:125:14;;10390:2:18;1360:125:14;;;10372:21:18;10429:2;10409:18;;;10402:30;10468:34;10448:18;;;10441:62;-1:-1:-1;;;10519:18:18;;;10512:31;10560:19;;1360:125:14;10188:397:18;1360:125:14;-1:-1:-1;;;;;1571:19:14;;;;;;:6;:19;;;;;;:26;;1595:1;1571:23;:26::i;:::-;-1:-1:-1;;;;;1549:19:14;;;;;;:6;:19;;;;;;;:48;;;;1613:122;;;;;1556:11;;1683:10;;1708:17;;1613:122;:::i;:::-;;;;;;;;1843:12;1857:23;1892:4;-1:-1:-1;;;;;1884:18:14;1933:17;1952:11;1916:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;1916:48:14;;;;;;;;;;1884:90;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1842:132;;;;1992:7;1984:48;;;;-1:-1:-1;;;1984:48:14;;12117:2:18;1984:48:14;;;12099:21:18;12156:2;12136:18;;;12129:30;12195;12175:18;;;12168:58;12243:18;;1984:48:14;11915:352:18;1984:48:14;2050:10;950:1117;-1:-1:-1;;;;;;;;950:1117:14:o;4132:96:12:-;1189:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;4203:11:12::1;:18:::0;4132:96::o;2092:138::-;1189:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;2177:17:12::1;:46:::0;;-1:-1:-1;;;;;;2177:46:12::1;-1:-1:-1::0;;;;;2177:46:12;;;::::1;::::0;;;::::1;::::0;;2092:138::o;3977:149::-;4029:4;4071:18;;4052:15;:37;;:67;;;;-1:-1:-1;4093:18:12;;;;:26;;:18;:26;4052:67;4045:74;;3977:149;:::o;4724:330:5:-;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;-1:-1:-1;;;4905:103:5;;;;;;;:::i;:::-;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;1210:253:6:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;-1:-1:-1;;;1326:87:6;;13253:2:18;1326:87:6;;;13235:21:18;13292:2;13272:18;;;13265:30;13331:34;13311:18;;;13304:62;-1:-1:-1;;;13382:18:18;;;13375:41;13433:19;;1326:87:6;13051:407:18;1326:87:6;-1:-1:-1;;;;;;1430:19:6;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1210:253::o;4234:400:12:-;4280:7;4320:21;:19;:21::i;:::-;4299:97;;;;-1:-1:-1;;;4299:97:12;;13665:2:18;4299:97:12;;;13647:21:18;13704:2;13684:18;;;13677:30;13743:31;13723:18;;;13716:59;13792:18;;4299:97:12;13463:353:18;4299:97:12;4440:11;;4427:9;:24;;4406:91;;;;-1:-1:-1;;;4406:91:12;;14023:2:18;4406:91:12;;;14005:21:18;14062:2;14042:18;;;14035:30;-1:-1:-1;;;14081:18:18;;;14074:50;14141:18;;4406:91:12;13821:344:18;4406:91:12;4544:8;;4528:12;;:24;;4507:79;;;;-1:-1:-1;;;4507:79:12;;14372:2:18;4507:79:12;;;14354:21:18;14411:1;14391:18;;;14384:29;-1:-1:-1;;;14429:18:18;;;14422:38;14477:18;;4507:79:12;14170:331:18;4507:79:12;4603:24;4616:10;4603:12;:24::i;5235:123::-;5327:24;;;;:14;:24;;;;;5320:31;;5295:13;;5327:24;5320:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5235:123;;;:::o;5486:241::-;1189:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;5590:3:12::1;::::0;5551:21:::1;::::0;-1:-1:-1;;;;;5590:3:12::1;5582:37;5604:14;5551:21:::0;5616:1:::1;5604:11;:14::i;:::-;5582:37;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;5637:3:12::1;::::0;-1:-1:-1;;;;;5637:3:12::1;5629:37;5651:14;:7:::0;5663:1:::1;5651:11;:14::i;:::-;5629:37;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;5684:3:12::1;::::0;5676:44:::1;::::0;-1:-1:-1;;;;;5684:3:12;;::::1;::::0;5698:21:::1;5676:44:::0;::::1;;;::::0;5684:3:::1;5676:44:::0;5684:3;5676:44;5698:21;5684:3;5676:44;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;5523:204;5486:241::o:0;5120:179:5:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;3225:746:12:-;3315:7;3359:25;:23;:25::i;:::-;3338:113;;;;-1:-1:-1;;;3338:113:12;;14708:2:18;3338:113:12;;;14690:21:18;14747:2;14727:18;;;14720:30;14786:34;14766:18;;;14759:62;-1:-1:-1;;;14837:18:18;;;14830:39;14886:19;;3338:113:12;14506:405:18;3338:113:12;3482:17;;:35;;-1:-1:-1;;;3482:35:12;;;;;4745:25:18;;;3521:10:12;;-1:-1:-1;;;;;3482:17:12;;:25;;4718:18:18;;3482:35:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3482:49:12;;3461:121;;;;-1:-1:-1;;;3461:121:12;;15374:2:18;3461:121:12;;;15356:21:18;15413:2;15393:18;;;15386:30;15452:27;15432:18;;;15425:55;15497:18;;3461:121:12;15172:349:18;3461:121:12;3613:36;3640:8;3613:26;:36::i;:::-;3592:111;;;;-1:-1:-1;;;3592:111:12;;15728:2:18;3592:111:12;;;15710:21:18;15767:2;15747:18;;;15740:30;15806;15786:18;;;15779:58;15854:18;;3592:111:12;15526:352:18;3592:111:12;3734:21;;3721:9;:34;;3713:67;;;;-1:-1:-1;;;3713:67:12;;14023:2:18;3713:67:12;;;14005:21:18;14062:2;14042:18;;;14035:30;-1:-1:-1;;;14081:18:18;;;14074:50;14141:18;;3713:67:12;13821:344:18;3713:67:12;3827:8;;3811:12;;:24;;3790:79;;;;-1:-1:-1;;;3790:79:12;;14372:2:18;3790:79:12;;;14354:21:18;14411:1;14391:18;;;14384:29;-1:-1:-1;;;14429:18:18;;;14422:38;14477:18;;3790:79:12;14170:331:18;3790:79:12;3879:37;;;;:27;:37;;;;;:44;;-1:-1:-1;;3879:44:12;3919:4;3879:44;;;3940:24;3953:10;3940:12;:24::i;1717:230:6:-;1792:7;1827:30;1621:10;:17;;1534:111;1827:30;1819:5;:38;1811:95;;;;-1:-1:-1;;;1811:95:6;;16085:2:18;1811:95:6;;;16067:21:18;16124:2;16104:18;;;16097:30;16163:34;16143:18;;;16136:62;-1:-1:-1;;;16214:18:18;;;16207:42;16266:19;;1811:95:6;15883:408:18;1811:95:6;1923:10;1934:5;1923:17;;;;;;;;:::i;:::-;;;;;;;;;1916:24;;1717:230;;;:::o;2436:114:12:-;1189:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;2513:18:12::1;:30:::0;2436:114::o;5733:88::-;1189:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;5800:14:12;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;2052:235:5:-:0;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:5;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:5;;16630:2:18;2185:73:5;;;16612:21:18;16669:2;16649:18;;;16642:30;16708:34;16688:18;;;16681:62;-1:-1:-1;;;16759:18:18;;;16752:39;16808:19;;2185:73:5;16428:405:18;2556:95:12;1189:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;2624:8:12::1;:20:::0;2556:95::o;1790:205:5:-;1862:7;-1:-1:-1;;;;;1889:19:5;;1881:74;;;;-1:-1:-1;;;1881:74:5;;17040:2:18;1881:74:5;;;17022:21:18;17079:2;17059:18;;;17052:30;17118:34;17098:18;;;17091:62;-1:-1:-1;;;17169:18:18;;;17162:40;17219:19;;1881:74:5;16838:406:18;1881:74:5;-1:-1:-1;;;;;;1972:16:5;;;;;:9;:16;;;;;;;1790:205::o;1598:92:15:-;1189:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;1968:118:12:-;1189:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;2039:10:12::1;:40:::0;;-1:-1:-1;;;;;;2039:40:12::1;-1:-1:-1::0;;;;;2039:40:12;;;::::1;::::0;;;::::1;::::0;;1968:118::o;2657:110::-;1189:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;2732:21:12::1;:28:::0;2657:110::o;2933:286::-;3071:18;;3032:4;;3071:18;;:27;;;:78;;-1:-1:-1;3114:27:12;;;;:17;:27;;;;;;;;:35;;:27;:35;3071:78;:141;;;;-1:-1:-1;;3166:37:12;;;;:27;:37;;;;;;;;:46;;2933:286::o;2511:102:5:-;2567:13;2599:7;2592:14;;;;;:::i;4144:290::-;4258:12;:10;:12::i;:::-;-1:-1:-1;;;;;4246:24:5;:8;-1:-1:-1;;;;;4246:24:5;;;4238:62;;;;-1:-1:-1;;;4238:62:5;;17451:2:18;4238:62:5;;;17433:21:18;17490:2;17470:18;;;17463:30;17529:27;17509:18;;;17502:55;17574:18;;4238:62:5;17249:349:18;4238:62:5;4356:8;4311:18;:32;4330:12;:10;:12::i;:::-;-1:-1:-1;;;;;4311:32:5;;;;;;;;;;;;;;;;;-1:-1:-1;4311:32:5;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4311:53:5;;;;;;;;;;;4394:12;:10;:12::i;:::-;-1:-1:-1;;;;;4379:48:5;;4418:8;4379:48;;;;565:14:18;558:22;540:41;;528:2;513:18;;400:187;4379:48:5;;;;;;;;4144:290;;:::o;5365:320::-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;-1:-1:-1;;;5526:103:5;;;;;;;:::i;:::-;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;2773:154:12:-;2829:4;2871:18;;2852:15;:37;;:68;;;;-1:-1:-1;;2893:18:12;;;;:27;;2773:154::o;5931:204::-;6029:13;6089:7;6098:19;:8;:17;:19::i;:::-;6072:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6058:70;;5931:204;;;:::o;2236:193::-;1189:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;2320:9:12::1;2315:108;2339:8;:15;2335:1;:19;2315:108;;;2408:4;2375:17;:30;2393:8;2402:1;2393:11;;;;;;;;:::i;:::-;;;;;;;2375:30;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;2356:3;;;;;:::i;:::-;;;;2315:108;;4640:94:::0;1189:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;4702:18:12::1;:25:::0;;-1:-1:-1;;4702:25:12::1;::::0;::::1;;::::0;;;::::1;::::0;;4640:94::o;6965:138::-;7009:13;7034:62;;;;;;;;;;;;;;;;;;;6965:138;:::o;6262:440::-;6517:20;;6560:28;;-1:-1:-1;;;6560:28:12;;-1:-1:-1;;;;;1692:32:18;;;6560:28:12;;;1674:51:18;6383:4:12;;6517:20;;;6552:49;;;;6517:20;;6560:21;;1647:18:18;;6560:28:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;6552:49:12;;6548:91;;;6624:4;6617:11;;;;;6548:91;-1:-1:-1;;;;;4620:25:5;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;6656:39:12;6649:46;6262:440;-1:-1:-1;;;;6262:440:12:o;1839:189:15:-;1189:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:15;:7;1038:6;;-1:-1:-1;;;;;1038:6:15;;966:85;1178:7;-1:-1:-1;;;;;1178:23:15;;1170:68;;;;-1:-1:-1;;;1170:68:15;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:15;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:15;;19915:2:18;1919:73:15::1;::::0;::::1;19897:21:18::0;19954:2;19934:18;;;19927:30;19993:34;19973:18;;;19966:62;-1:-1:-1;;;20044:18:18;;;20037:36;20090:19;;1919:73:15::1;19713:402:18::0;1919:73:15::1;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;95:631:1:-;163:22;205:10;227:4;205:27;201:496;;;248:18;269:8;;248:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;307:8:1;514:17;508:24;-1:-1:-1;;;;;483:131:1;;-1:-1:-1;201:496:1;;-1:-1:-1;201:496:1;;-1:-1:-1;675:10:1;201:496;95:631;:::o;1431:300:5:-;1533:4;-1:-1:-1;;;;;;1568:40:5;;-1:-1:-1;;;1568:40:5;;:104;;-1:-1:-1;;;;;;;1624:48:5;;-1:-1:-1;;;1624:48:5;1568:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:4;;;1688:36:5;763:155:4;6841:118:12;6895:14;6928:24;:22;:24::i;11008:171:5:-;11082:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11082:29:5;-1:-1:-1;;;;;11082:29:5;;;;;;;;:24;;11135:23;11082:24;11135:14;:23::i;:::-;-1:-1:-1;;;;;11126:46:5;;;;;;;;;;;11008:171;;:::o;2586:470:14:-;2758:4;-1:-1:-1;;;;;2782:20:14;;2774:70;;;;-1:-1:-1;;;2774:70:14;;20322:2:18;2774:70:14;;;20304:21:18;20361:2;20341:18;;;20334:30;20400:34;20380:18;;;20373:62;-1:-1:-1;;;20451:18:18;;;20444:35;20496:19;;2774:70:14;20120:401:18;2774:70:14;2895:154;2922:47;2941:27;2961:6;2941:19;:27::i;:::-;2922:18;:47::i;:::-;2895:154;;;;;;;;;;;;20753:25:18;;;;20826:4;20814:17;;20794:18;;;20787:45;20848:18;;;20841:34;;;20891:18;;;20884:34;;;20725:19;;2895:154:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2873:176:14;:6;-1:-1:-1;;;;;2873:176:14;;2854:195;;2586:470;;;;;;;:::o;2672:96:16:-;2730:7;2756:5;2760:1;2756;:5;:::i;:::-;2749:12;2672:96;-1:-1:-1;;;2672:96:16:o;7440:344:5:-;7533:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:5;7549:73;;;;-1:-1:-1;;;7549:73:5;;21264:2:18;7549:73:5;;;21246:21:18;21303:2;21283:18;;;21276:30;21342:34;21322:18;;;21315:62;-1:-1:-1;;;21393:18:18;;;21386:42;21445:19;;7549:73:5;21062:408:18;7549:73:5;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;-1:-1:-1;;;;;7689:16:5;:7;-1:-1:-1;;;;;7689:16:5;;:51;;;;7733:7;-1:-1:-1;;;;;7709:31:5;:20;7721:7;7709:11;:20::i;:::-;-1:-1:-1;;;;;7709:31:5;;7689:51;:87;;;;7744:32;7761:5;7768:7;7744:16;:32::i;10337:560::-;10491:4;-1:-1:-1;;;;;10464:31:5;:23;10479:7;10464:14;:23::i;:::-;-1:-1:-1;;;;;10464:31:5;;10456:85;;;;-1:-1:-1;;;10456:85:5;;21677:2:18;10456:85:5;;;21659:21:18;21716:2;21696:18;;;21689:30;21755:34;21735:18;;;21728:62;-1:-1:-1;;;21806:18:18;;;21799:39;21855:19;;10456:85:5;21475:405:18;10456:85:5;-1:-1:-1;;;;;10559:16:5;;10551:65;;;;-1:-1:-1;;;10551:65:5;;22087:2:18;10551:65:5;;;22069:21:18;22126:2;22106:18;;;22099:30;22165:34;22145:18;;;22138:62;-1:-1:-1;;;22216:18:18;;;22209:34;22260:19;;10551:65:5;21885:400:18;10551:65:5;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;-1:-1:-1;;;;;10768:15:5;;;;;;:9;:15;;;;;:20;;10787:1;;10768:15;:20;;10787:1;;10768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10798:13:5;;;;;;:9;:13;;;;;:18;;10815:1;;10798:13;:18;;10815:1;;10798:18;:::i;:::-;;;;-1:-1:-1;;10826:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10826:21:5;-1:-1:-1;;;;;10826:21:5;;;;;;;;;10863:27;;10826:16;;10863:27;;;;;;;10337:560;;;:::o;4740:489:12:-;4829:12;;4881:10;;:32;;-1:-1:-1;;;4881:32:12;;;;;4745:25:18;;;4792:7:12;;4829:12;4792:7;;-1:-1:-1;;;;;4881:10:12;;;;:23;;4718:18:18;;4881:32:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4881:32:12;;;;;;;;;;;;:::i;:::-;4851:62;;4946:29;4961:13;4946:14;:29::i;:::-;4944:32;4923:112;;;;-1:-1:-1;;;4923:112:12;;23262:2:18;4923:112:12;;;23244:21:18;23301:2;23281:18;;;23274:30;23340:34;23320:18;;;23313:62;-1:-1:-1;;;23391:18:18;;;23384:31;23432:19;;4923:112:12;23060:397:18;4923:112:12;5045:23;;;;:14;:23;;;;;;;;:39;;;;;;;;:::i;:::-;;5124:4;5094:12;5107:13;5094:27;;;;;;:::i;:::-;;;;;;;;;;;;;;:34;;;;;-1:-1:-1;;5094:34:12;;;;;;;;;5138:19;5144:3;5149:7;5138:5;:19::i;:::-;5182:12;;:16;;5197:1;5182:16;:::i;:::-;5167:12;:31;-1:-1:-1;5215:7:12;4740:489;-1:-1:-1;;4740:489:12:o;3767:96:16:-;3825:7;3851:5;3855:1;3851;:5;:::i;2034:169:15:-;2108:6;;;-1:-1:-1;;;;;2124:17:15;;;-1:-1:-1;;;;;;2124:17:15;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2079:124;2034:169;:::o;6547:307:5:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;-1:-1:-1;;;6736:111:5;;;;;;;:::i;275:703:17:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:17;;;;;;;;;;;;-1:-1:-1;;;574:10:17;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:17;;-1:-1:-1;720:2:17;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:17;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:17;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:17;;;;;;;;-1:-1:-1;919:11:17;928:2;919:11;;:::i;:::-;;;791:150;;2073:396:14;2180:7;296:106;;;;;;;;;;;;;;;;;273:139;;;;;;;2328:12;;2362:11;;;;2405:24;;;;;2395:35;;;;;;2249:199;;;;;24767:25:18;;;24823:2;24808:18;;24801:34;;;;-1:-1:-1;;;;;24871:32:18;24866:2;24851:18;;24844:60;24935:2;24920:18;;24913:34;24754:3;24739:19;;24536:417;2249:199:14;;;;;;;;;;;;;2222:240;;;;;;2203:259;;2073:396;;;:::o;1884:249:3:-;1980:7;2078:20;1341:15;;;1264:99;2078:20;2049:63;;-1:-1:-1;;;2049:63:3;;;25216:27:18;25259:11;;;25252:27;;;;25295:12;;;25288:28;;;25332:12;;2049:63:3;24958:392:18;2543:572:6;-1:-1:-1;;;;;2742:18:6;;2738:183;;2776:40;2808:7;3924:10;:17;;3897:24;;;;:15;:24;;;;;:44;;;3951:24;;;;;;;;;;;;3821:161;2776:40;2738:183;;;2845:2;-1:-1:-1;;;;;2837:10:6;:4;-1:-1:-1;;;;;2837:10:6;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;-1:-1:-1;;;;;2934:16:6;;2930:179;;2966:45;3003:7;2966:36;:45::i;2930:179::-;3038:4;-1:-1:-1;;;;;3032:10:6;:2;-1:-1:-1;;;;;3032:10:6;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;5364:116:12:-;5431:4;5454:12;5467:5;5454:19;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5364:116;-1:-1:-1;;5364:116:12:o;9076:372:5:-;-1:-1:-1;;;;;9155:16:5;;9147:61;;;;-1:-1:-1;;;9147:61:5;;25557:2:18;9147:61:5;;;25539:21:18;;;25576:18;;;25569:30;25635:34;25615:18;;;25608:62;25687:18;;9147:61:5;25355:356:18;9147:61:5;7222:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:5;:30;9218:58;;;;-1:-1:-1;;;9218:58:5;;25918:2:18;9218:58:5;;;25900:21:18;25957:2;25937:18;;;25930:30;25996;25976:18;;;25969:58;26044:18;;9218:58:5;25716:352:18;9218:58:5;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;-1:-1:-1;;;;;9343:13:5;;;;;;:9;:13;;;;;:18;;9360:1;;9343:13;:18;;9360:1;;9343:18;:::i;:::-;;;;-1:-1:-1;;9371:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9371:21:5;-1:-1:-1;;;;;9371:21:5;;;;;;;;9408:33;;9371:16;;;9408:33;;9371:16;;9408:33;9076:372;;:::o;11732:782::-;11882:4;-1:-1:-1;;;;;11902:13:5;;1034:20:0;1080:8;11898:610:5;;11953:2;-1:-1:-1;;;;;11937:36:5;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11937:72:5;;;;;;;;-1:-1:-1;;11937:72:5;;;;;;;;;;;;:::i;:::-;;;11933:523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12180:13:5;;12176:266;;12222:60;;-1:-1:-1;;;12222:60:5;;;;;;;:::i;12176:266::-;12394:6;12388:13;12379:6;12375:2;12371:15;12364:38;11933:523;-1:-1:-1;;;;;;12059:55:5;-1:-1:-1;;;12059:55:5;;-1:-1:-1;12052:62:5;;11898:610;-1:-1:-1;12493:4:5;11732:782;;;;;;:::o;4599:970:6:-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4922:18;4943:26;;;:17;:26;;;;;;4861:51;;-1:-1:-1;5073:28:6;;;5069:323;;-1:-1:-1;;;;;5139:18:6;;5117:19;5139:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5188:30;;;;;;:44;;;5304:30;;:17;:30;;;;;:43;;;5069:323;-1:-1:-1;5485:26:6;;;;:17;:26;;;;;;;;5478:33;;;-1:-1:-1;;;;;5528:18:6;;;;;:12;:18;;;;;:34;;;;;;;5521:41;4599:970::o;5857:1061::-;6131:10;:17;6106:22;;6131:21;;6151:1;;6131:21;:::i;:::-;6162:18;6183:24;;;:15;:24;;;;;;6551:10;:26;;6106:46;;-1:-1:-1;6183:24:6;;6106:46;;6551:26;;;;;;:::i;:::-;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6692:28;;;:15;:28;;;;;;;:41;;;6861:24;;;;;6854:31;6895:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5928:990;;;5857:1061;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;-1:-1:-1;;;;;3540:16:6;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3584:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3409:217:6:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:18;-1:-1:-1;;;;;;88:32:18;;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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:18;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:18;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:18:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:18;;1343:180;-1:-1:-1;1343:180:18:o;1736:131::-;-1:-1:-1;;;;;1811:31:18;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:18:o;2192:127::-;2253:10;2248:3;2244:20;2241:1;2234:31;2284:4;2281:1;2274:15;2308:4;2305:1;2298:15;2324:275;2395:2;2389:9;2460:2;2441:13;;-1:-1:-1;;2437:27:18;2425:40;;2495:18;2480:34;;2516:22;;;2477:62;2474:88;;;2542:18;;:::i;:::-;2578:2;2571:22;2324:275;;-1:-1:-1;2324:275:18:o;2604:186::-;2652:4;2685:18;2677:6;2674:30;2671:56;;;2707:18;;:::i;:::-;-1:-1:-1;2773:2:18;2752:15;-1:-1:-1;;2748:29:18;2779:4;2744:40;;2604:186::o;2795:336::-;2859:5;2888:52;2904:35;2932:6;2904:35;:::i;:::-;2888:52;:::i;:::-;2879:61;;2963:6;2956:5;2949:21;3003:3;2994:6;2989:3;2985:16;2982:25;2979:45;;;3020:1;3017;3010:12;2979:45;3069:6;3064:3;3057:4;3050:5;3046:16;3033:43;3123:1;3116:4;3107:6;3100:5;3096:18;3092:29;3085:40;2795:336;;;;;:::o;3136:220::-;3178:5;3231:3;3224:4;3216:6;3212:17;3208:27;3198:55;;3249:1;3246;3239:12;3198:55;3271:79;3346:3;3337:6;3324:20;3317:4;3309:6;3305:17;3271:79;:::i;3361:758::-;3463:6;3471;3479;3487;3495;3548:3;3536:9;3527:7;3523:23;3519:33;3516:53;;;3565:1;3562;3555:12;3516:53;3604:9;3591:23;3623:31;3648:5;3623:31;:::i;:::-;3673:5;-1:-1:-1;3729:2:18;3714:18;;3701:32;3756:18;3745:30;;3742:50;;;3788:1;3785;3778:12;3742:50;3811:49;3852:7;3843:6;3832:9;3828:22;3811:49;:::i;:::-;3801:59;;;3907:2;3896:9;3892:18;3879:32;3869:42;;3958:2;3947:9;3943:18;3930:32;3920:42;;4014:3;4003:9;3999:19;3986:33;4063:4;4054:7;4050:18;4041:7;4038:31;4028:59;;4083:1;4080;4073:12;4028:59;4106:7;4096:17;;;3361:758;;;;;;;;:::o;4347:247::-;4406:6;4459:2;4447:9;4438:7;4434:23;4430:32;4427:52;;;4475:1;4472;4465:12;4427:52;4514:9;4501:23;4533:31;4558:5;4533:31;:::i;4963:456::-;5040:6;5048;5056;5109:2;5097:9;5088:7;5084:23;5080:32;5077:52;;;5125:1;5122;5115:12;5077:52;5164:9;5151:23;5183:31;5208:5;5183:31;:::i;:::-;5233:5;-1:-1:-1;5290:2:18;5275:18;;5262:32;5303:33;5262:32;5303:33;:::i;:::-;4963:456;;5355:7;;-1:-1:-1;;;5409:2:18;5394:18;;;;5381:32;;4963:456::o;5424:450::-;5493:6;5546:2;5534:9;5525:7;5521:23;5517:32;5514:52;;;5562:1;5559;5552:12;5514:52;5602:9;5589:23;5635:18;5627:6;5624:30;5621:50;;;5667:1;5664;5657:12;5621:50;5690:22;;5743:4;5735:13;;5731:27;-1:-1:-1;5721:55:18;;5772:1;5769;5762:12;5721:55;5795:73;5860:7;5855:2;5842:16;5837:2;5833;5829:11;5795:73;:::i;5879:160::-;5944:20;;6000:13;;5993:21;5983:32;;5973:60;;6029:1;6026;6019:12;5973:60;5879:160;;;:::o;6044:315::-;6109:6;6117;6170:2;6158:9;6149:7;6145:23;6141:32;6138:52;;;6186:1;6183;6176:12;6138:52;6225:9;6212:23;6244:31;6269:5;6244:31;:::i;:::-;6294:5;-1:-1:-1;6318:35:18;6349:2;6334:18;;6318:35;:::i;:::-;6308:45;;6044:315;;;;;:::o;6364:665::-;6459:6;6467;6475;6483;6536:3;6524:9;6515:7;6511:23;6507:33;6504:53;;;6553:1;6550;6543:12;6504:53;6592:9;6579:23;6611:31;6636:5;6611:31;:::i;:::-;6661:5;-1:-1:-1;6718:2:18;6703:18;;6690:32;6731:33;6690:32;6731:33;:::i;:::-;6783:7;-1:-1:-1;6837:2:18;6822:18;;6809:32;;-1:-1:-1;6892:2:18;6877:18;;6864:32;6919:18;6908:30;;6905:50;;;6951:1;6948;6941:12;6905:50;6974:49;7015:7;7006:6;6995:9;6991:22;6974:49;:::i;:::-;6964:59;;;6364:665;;;;;;;:::o;7034:946::-;7118:6;7149:2;7192;7180:9;7171:7;7167:23;7163:32;7160:52;;;7208:1;7205;7198:12;7160:52;7248:9;7235:23;7277:18;7318:2;7310:6;7307:14;7304:34;;;7334:1;7331;7324:12;7304:34;7372:6;7361:9;7357:22;7347:32;;7417:7;7410:4;7406:2;7402:13;7398:27;7388:55;;7439:1;7436;7429:12;7388:55;7475:2;7462:16;7497:2;7493;7490:10;7487:36;;;7503:18;;:::i;:::-;7549:2;7546:1;7542:10;7532:20;;7572:28;7596:2;7592;7588:11;7572:28;:::i;:::-;7634:15;;;7704:11;;;7700:20;;;7665:12;;;;7732:19;;;7729:39;;;7764:1;7761;7754:12;7729:39;7788:11;;;;7808:142;7824:6;7819:3;7816:15;7808:142;;;7890:17;;7878:30;;7841:12;;;;7928;;;;7808:142;;7985:180;8041:6;8094:2;8082:9;8073:7;8069:23;8065:32;8062:52;;;8110:1;8107;8100:12;8062:52;8133:26;8149:9;8133:26;:::i;8170:388::-;8238:6;8246;8299:2;8287:9;8278:7;8274:23;8270:32;8267:52;;;8315:1;8312;8305:12;8267:52;8354:9;8341:23;8373:31;8398:5;8373:31;:::i;:::-;8423:5;-1:-1:-1;8480:2:18;8465:18;;8452:32;8493:33;8452:32;8493:33;:::i;:::-;8545:7;8535:17;;;8170:388;;;;;:::o;8563:380::-;8642:1;8638:12;;;;8685;;;8706:61;;8760:4;8752:6;8748:17;8738:27;;8706:61;8813:2;8805:6;8802:14;8782:18;8779:38;8776:161;;;8859:10;8854:3;8850:20;8847:1;8840:31;8894:4;8891:1;8884:15;8922:4;8919:1;8912:15;8776:161;;8563:380;;;:::o;10590:432::-;-1:-1:-1;;;;;10847:15:18;;;10829:34;;10899:15;;10894:2;10879:18;;10872:43;10951:2;10946;10931:18;;10924:30;;;10772:4;;10971:45;;10997:18;;10989:6;10971:45;:::i;:::-;10963:53;10590:432;-1:-1:-1;;;;;10590:432:18:o;11027:184::-;11068:3;11106:5;11100:12;11121:52;11166:6;11161:3;11154:4;11147:5;11143:16;11121:52;:::i;:::-;11189:16;;;;;11027:184;-1:-1:-1;;11027:184:18:o;11216:415::-;11373:3;11411:6;11405:13;11427:53;11473:6;11468:3;11461:4;11453:6;11449:17;11427:53;:::i;:::-;11549:2;11545:15;;;;-1:-1:-1;;11541:53:18;11502:16;;;;11527:68;;;11622:2;11611:14;;11216:415;-1:-1:-1;;11216:415:18:o;11636:274::-;11765:3;11803:6;11797:13;11819:53;11865:6;11860:3;11853:4;11845:6;11841:17;11819:53;:::i;:::-;11888:16;;;;;11636:274;-1:-1:-1;;11636:274:18:o;12272:356::-;12474:2;12456:21;;;12493:18;;;12486:30;12552:34;12547:2;12532:18;;12525:62;12619:2;12604:18;;12272:356::o;12633:413::-;12835:2;12817:21;;;12874:2;12854:18;;;12847:30;12913:34;12908:2;12893:18;;12886:62;-1:-1:-1;;;12979:2:18;12964:18;;12957:47;13036:3;13021:19;;12633:413::o;14916:251::-;14986:6;15039:2;15027:9;15018:7;15014:23;15010:32;15007:52;;;15055:1;15052;15045:12;15007:52;15087:9;15081:16;15106:31;15131:5;15106:31;:::i;16296:127::-;16357:10;16352:3;16348:20;16345:1;16338:31;16388:4;16385:1;16378:15;16412:4;16409:1;16402:15;17847:1300;18124:3;18153:1;18186:6;18180:13;18216:3;18238:1;18266:9;18262:2;18258:18;18248:28;;18326:2;18315:9;18311:18;18348;18338:61;;18392:4;18384:6;18380:17;18370:27;;18338:61;18418:2;18466;18458:6;18455:14;18435:18;18432:38;18429:165;;;-1:-1:-1;;;18493:33:18;;18549:4;18546:1;18539:15;18579:4;18500:3;18567:17;18429:165;18610:18;18637:104;;;;18755:1;18750:320;;;;18603:467;;18637:104;-1:-1:-1;;18670:24:18;;18658:37;;18715:16;;;;-1:-1:-1;18637:104:18;;18750:320;17676:1;17669:14;;;17713:4;17700:18;;18845:1;18859:165;18873:6;18870:1;18867:13;18859:165;;;18951:14;;18938:11;;;18931:35;18994:16;;;;18888:10;;18859:165;;;18863:3;;19053:6;19048:3;19044:16;19037:23;;18603:467;;;;;;;19086:55;19111:29;19136:3;19128:6;19111:29;:::i;:::-;-1:-1:-1;;;17789:20:18;;17834:1;17825:11;;17729:113;19152:127;19213:10;19208:3;19204:20;19201:1;19194:31;19244:4;19241:1;19234:15;19268:4;19265:1;19258:15;19284:135;19323:3;-1:-1:-1;;19344:17:18;;19341:43;;;19364:18;;:::i;:::-;-1:-1:-1;19411:1:18;19400:13;;19284:135::o;20929:128::-;20969:3;21000:1;20996:6;20993:1;20990:13;20987:39;;;21006:18;;:::i;:::-;-1:-1:-1;21042:9:18;;20929:128::o;22290:125::-;22330:4;22358:1;22355;22352:8;22349:34;;;22363:18;;:::i;:::-;-1:-1:-1;22400:9:18;;22290:125::o;22420:635::-;22500:6;22553:2;22541:9;22532:7;22528:23;22524:32;22521:52;;;22569:1;22566;22559:12;22521:52;22602:9;22596:16;22635:18;22627:6;22624:30;22621:50;;;22667:1;22664;22657:12;22621:50;22690:22;;22743:4;22735:13;;22731:27;-1:-1:-1;22721:55:18;;22772:1;22769;22762:12;22721:55;22801:2;22795:9;22826:48;22842:31;22870:2;22842:31;:::i;22826:48::-;22897:2;22890:5;22883:17;22937:7;22932:2;22927;22923;22919:11;22915:20;22912:33;22909:53;;;22958:1;22955;22948:12;22909:53;22971:54;23022:2;23017;23010:5;23006:14;23001:2;22997;22993:11;22971:54;:::i;23743:127::-;23804:10;23799:3;23795:20;23792:1;23785:31;23835:4;23832:1;23825:15;23859:4;23856:1;23849:15;23875:120;23915:1;23941;23931:35;;23946:18;;:::i;:::-;-1:-1:-1;23980:9:18;;23875:120::o;24000:414::-;24202:2;24184:21;;;24241:2;24221:18;;;24214:30;24280:34;24275:2;24260:18;;24253:62;-1:-1:-1;;;24346:2:18;24331:18;;24324:48;24404:3;24389:19;;24000:414::o;24419:112::-;24451:1;24477;24467:35;;24482:18;;:::i;:::-;-1:-1:-1;24516:9:18;;24419:112::o;26073:489::-;-1:-1:-1;;;;;26342:15:18;;;26324:34;;26394:15;;26389:2;26374:18;;26367:43;26441:2;26426:18;;26419:34;;;26489:3;26484:2;26469:18;;26462:31;;;26267:4;;26510:46;;26536:19;;26528:6;26510:46;:::i;:::-;26502:54;26073:489;-1:-1:-1;;;;;;26073:489:18:o;26567:249::-;26636:6;26689:2;26677:9;26668:7;26664:23;26660:32;26657:52;;;26705:1;26702;26695:12;26657:52;26737:9;26731:16;26756:30;26780:5;26756:30;:::i;26821:127::-;26882:10;26877:3;26873:20;26870:1;26863:31;26913:4;26910:1;26903:15;26937:4;26934:1;26927:15

Swarm Source

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