ETH Price: $3,112.59 (+1.44%)
Gas: 6 Gwei

Token

TwoPlusTwoGen4 (TPT4)
 

Overview

Max Total Supply

441 TPT4

Holders

373

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TPT4
0x2330d11161711097a51c6810724868013901013f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Generation 4 of the 2+2 Collection.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TwoPlusTwoGen4

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-09
*/

/****************************************************************************
 $$$$$$\             $$$$$$\         $$$$$$\                      $$\   $$\
$$  __$$\    $$\    $$  __$$\       $$  __$$\                     $$ |  $$ |
\__/  $$ |   $$ |   \__/  $$ |      $$ /  \__| $$$$$$\  $$$$$$$\  $$ |  $$ |
 $$$$$$  |$$$$$$$$\  $$$$$$  |      $$ |$$$$\ $$  __$$\ $$  __$$\ $$$$$$$$ |
$$  ____/ \__$$  __|$$  ____/       $$ |\_$$ |$$$$$$$$ |$$ |  $$ |\_____$$ |
$$ |         $$ |   $$ |            $$ |  $$ |$$   ____|$$ |  $$ |      $$ |
$$$$$$$$\    \__|   $$$$$$$$\       \$$$$$$  |\$$$$$$$\ $$ |  $$ |      $$ |
\________|          \________|       \______/  \_______|\__|  \__|      \__|
****************************************************************************/

// Powered by NFT Artisans (nftartisans.io) - [email protected]
// Sources flattened with hardhat v2.6.8 https://hardhat.org
// SPDX-License-Identifier: MIT

// File @openzeppelin/contracts/utils/introspection/[email protected]

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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 @openzeppelin/contracts/utils/[email protected]


pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```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 @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity ^0.8.0;


/**
 * @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.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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;


/**
 * @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 @openzeppelin/contracts/access/[email protected]


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File contracts/TwoPlusTwoGen4.sol

pragma solidity ^0.8.4;


interface TPT {
    function balanceOf(address owner) external view returns (uint256);
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
}

interface PENCIL {
    function balanceOf(address owner) external view returns (uint256);
    function burn(address user, uint256 amount) external;
}

contract TwoPlusTwoGen4 is ERC721Enumerable, Ownable {

    TPT public TPTGen1; // Addition
    TPT public TPTGen2; // Subtraction
    PENCIL public PENCILToken; // Utility Token

    bool public isActive = false;

    uint256 public burnCost = 500 * 10 ** 18;
    uint256 public maxSupply = 1953;
    string private _baseURIPath;

    bool[1953] private _gen1Claimed;
    bool[1953] private _gen2Claimed;

    event Minted(uint256 gen1TokenId, uint256 gen2TokenId, uint256 burnCost, uint256 tokenId);
    event RolledOver(bool status);

    constructor(address gen1, address gen2, address pencil) ERC721("TwoPlusTwoGen4", "TPT4") {
        TPTGen1 = TPT(gen1);
        TPTGen2 = TPT(gen2);
        PENCILToken = PENCIL(pencil);
    }

    // Override the base URI path with our variable
    function _baseURI() internal view override returns (string memory) {
        return _baseURIPath;
    }

    function checkClaim(address recipient) external view returns (uint256) {
        require(isActive, "Minting not active");

        uint256 gen1Count = TPTGen1.balanceOf(recipient);
        require(gen1Count > 0, "Wallet must own a Genesis NFT");

        uint256 gen2Count = TPTGen2.balanceOf(recipient);
        require(gen2Count > 0, "Wallet must own a Gen2 NFT");

        uint256 pencilBalance = PENCILToken.balanceOf(recipient);
        require(pencilBalance >= burnCost, "Wallet must have sufficient $PENCIL to burn for minting");

        uint256 gen1Claimed;
        uint256 gen2Claimed;

        for (uint256 i; i < gen1Count; i++) {
            uint256 tokenId = TPTGen1.tokenOfOwnerByIndex(recipient, i);
            if (_gen1Claimed[tokenId] == true) {
                gen1Claimed++;
            }
        }

        if (gen1Count - gen1Claimed == 0) {
            return 0;
        }

        for (uint256 i; i < gen2Count; i++) {
            uint256 tokenId = TPTGen2.tokenOfOwnerByIndex(recipient, i);
            if (_gen2Claimed[tokenId] == true) {
                gen2Claimed++;
            }
        }

        if (gen2Count - gen2Claimed == 0) {
            return 0;
        }

        uint256 max = (gen1Count - gen1Claimed) < (gen2Count - gen2Claimed) ? gen1Count - gen1Claimed : gen2Count - gen2Claimed;

        if (max * burnCost > pencilBalance) {
            uint256 remainder = pencilBalance % burnCost;
            max = (pencilBalance - remainder) / burnCost;
        }

        return max;
    }

    function checkClaimByTokenId(uint256 nftId, uint8 gen) external view returns (bool) {
        require(nftId < 1953, "Invalid Token ID");

        if (gen == 1) {
            return _gen1Claimed[nftId];
        }
        return _gen2Claimed[nftId];
    }

    function claimForOwner(address recipient) external onlyOwner {

        uint256 gen1Count = TPTGen1.balanceOf(recipient);
        uint256 gen2Count = TPTGen2.balanceOf(recipient);
        require(gen1Count > 0 && gen2Count > 0, "Recipient has no unclaimed NFTs available");

        uint256[] memory gen2TokenIds = new uint256[](gen2Count);
        uint256 gen2TokenIdsLength;

        for (uint256 i; i < gen2Count; i++) {
            uint256 gen2TokenId = TPTGen2.tokenOfOwnerByIndex(recipient, i);

            if (_gen2Claimed[gen2TokenId] == false) {
                gen2TokenIds[gen2TokenIdsLength] = gen2TokenId;
                gen2TokenIdsLength++;
            }
        }

        require(gen2TokenIdsLength > 0, "No unclaimed Gen2 NFTs available");
        uint256 mintIndex;

        for (uint256 i; i < gen1Count; i++) {
            uint256 gen1TokenId = TPTGen1.tokenOfOwnerByIndex(recipient, i);

            if (_gen1Claimed[gen1TokenId] == false && gen2TokenIdsLength > 0) {
                gen2TokenIdsLength--;
                mintIndex = totalSupply();
                _mint(recipient, mintIndex);
                _gen1Claimed[gen1TokenId] = true;
                _gen2Claimed[gen2TokenIds[gen2TokenIdsLength]] = true;
                emit Minted(gen1TokenId, gen2TokenIds[gen2TokenIdsLength], 0, mintIndex);
            }

            if (gen2TokenIdsLength == 0) {
                break;
            }
        }
    }

    function flipState() public onlyOwner {
        isActive = !isActive;
        emit RolledOver(isActive);
    }

    function mintTokens(uint256 limit) public {
        require(isActive, "Minting not active");

        uint256 gen1Count = TPTGen1.balanceOf(msg.sender);
        require(gen1Count > 0, "Wallet must own a Genesis NFT");

        uint256 gen2Count = TPTGen2.balanceOf(msg.sender);
        require(gen2Count > 0, "Wallet must own a Gen2 NFT");

        uint256 pencilBalance = PENCILToken.balanceOf(msg.sender);
        require(pencilBalance >= burnCost, "Wallet must have sufficient $PENCIL to burn for minting");

        if (limit < 1) {
            limit = 1;
        }

        uint256[] memory gen2TokenIds = new uint256[](gen2Count);
        uint256 gen2TokenIdsLength;

        for (uint256 i; i < gen2Count; i++) {

            uint256 gen2TokenId = TPTGen2.tokenOfOwnerByIndex(msg.sender, i);

            if (_gen2Claimed[gen2TokenId] == false) {
                gen2TokenIds[gen2TokenIdsLength] = gen2TokenId;
                gen2TokenIdsLength++;
            }
        }

        require(gen2TokenIdsLength > 0, "No unclaimed Gen2 NFTs available");

        uint256 minted;
        uint256 mintIndex;

        for (uint256 i; i < gen1Count; i++) {

            if (pencilBalance < burnCost) {
                break;
            }

            uint256 gen1TokenId = TPTGen1.tokenOfOwnerByIndex(msg.sender, i);

            if (_gen1Claimed[gen1TokenId] == false && gen2TokenIdsLength > 0) {
                gen2TokenIdsLength--;
                mintIndex = totalSupply();
                PENCILToken.burn(msg.sender, burnCost);
                _mint(_msgSender(), mintIndex);
                _gen1Claimed[gen1TokenId] = true;
                _gen2Claimed[gen2TokenIds[gen2TokenIdsLength]] = true;
                pencilBalance -= burnCost;
                minted++;

                emit Minted(gen1TokenId, gen2TokenIds[gen2TokenIdsLength], burnCost, mintIndex);
            }

            if (minted == limit || gen2TokenIdsLength == 0) {
                break;
            }
        }

        require(minted > 0, "No unclaimed Gen1 NFTs available");
    }

    // Set the IPFS base URI
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseURIPath = baseURI;
    }

    // There should not be anything to withdraw, but just in case
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(_msgSender()), balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"gen1","type":"address"},{"internalType":"address","name":"gen2","type":"address"},{"internalType":"address","name":"pencil","type":"address"}],"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":"uint256","name":"gen1TokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"gen2TokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"burnCost","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"RolledOver","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":"PENCILToken","outputs":[{"internalType":"contract PENCIL","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TPTGen1","outputs":[{"internalType":"contract TPT","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TPTGen2","outputs":[{"internalType":"contract TPT","name":"","type":"address"}],"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":"burnCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"checkClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nftId","type":"uint256"},{"internalType":"uint8","name":"gen","type":"uint8"}],"name":"checkClaimByTokenId","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"claimForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"baseURI","type":"string"}],"name":"setBaseURI","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600d805460ff60a01b19169055681b1ae4d6e2ef500000600e556107a1600f553480156200003157600080fd5b506040516200351038038062003510833981016040819052620000549162000235565b604080518082018252600e81526d151ddbd41b1d5cd51ddbd1d95b8d60921b6020808301918252835180850190945260048452631514150d60e21b908401528151919291620000a69160009162000172565b508051620000bc90600190602084019062000172565b505050620000d9620000d36200011c60201b60201c565b62000120565b600b80546001600160a01b039485166001600160a01b031991821617909155600c805493851693821693909317909255600d8054919093169116179055620002bb565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000180906200027e565b90600052602060002090601f016020900481019282620001a45760008555620001ef565b82601f10620001bf57805160ff1916838001178555620001ef565b82800160010185558215620001ef579182015b82811115620001ef578251825591602001919060010190620001d2565b50620001fd92915062000201565b5090565b5b80821115620001fd576000815560010162000202565b80516001600160a01b03811681146200023057600080fd5b919050565b6000806000606084860312156200024a578283fd5b620002558462000218565b9250620002656020850162000218565b9150620002756040850162000218565b90509250925092565b600181811c908216806200029357607f821691505b60208210811415620002b557634e487b7160e01b600052602260045260246000fd5b50919050565b61324580620002cb6000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80637e27ee181161010f578063c87b56dd116100a2578063f2fde38b11610071578063f2fde38b1461042f578063f876e18214610442578063fc0b23021461044b578063ff7f6c701461045e57600080fd5b8063c87b56dd146103c4578063ce9e0c4d146103d7578063d5abeb01146103ea578063e985e9c5146103f357600080fd5b806397304ced116100de57806397304ced14610378578063a22cb4651461038b578063ae6d90061461039e578063b88d4fde146103b157600080fd5b80637e27ee18146103445780638da5cb5b146103575780638e9203511461036857806395d89b411461037057600080fd5b80632f745c591161018757806355f804b31161015657806355f804b3146103035780636352211e1461031657806370a0823114610329578063715018a61461033c57600080fd5b80632f745c59146102c25780633ccfd60b146102d557806342842e0e146102dd5780634f6ccce7146102f057600080fd5b8063095ea7b3116101c3578063095ea7b31461027e57806318160ddd1461029357806322f3e2d41461029b57806323b872dd146102af57600080fd5b806301ffc9a7146101f55780630426212c1461021d57806306fdde031461023e578063081812fc14610253575b600080fd5b610208610203366004612df1565b610471565b60405190151581526020015b60405180910390f35b61023061022b366004612c8e565b61049c565b604051908152602001610214565b6102466109e1565b6040516102149190612f60565b610266610261366004612e6f565b610a73565b6040516001600160a01b039091168152602001610214565b61029161028c366004612dc8565b610b08565b005b600854610230565b600d5461020890600160a01b900460ff1681565b6102916102bd366004612cda565b610c1e565b6102306102d0366004612dc8565b610c4f565b610291610ce5565b6102916102eb366004612cda565b610d1d565b6102306102fe366004612e6f565b610d38565b610291610311366004612e29565b610dd9565b610266610324366004612e6f565b610e1a565b610230610337366004612c8e565b610e91565b610291610f18565b610291610352366004612c8e565b610f4e565b600a546001600160a01b0316610266565b6102916114f0565b610246611580565b610291610386366004612e6f565b61158f565b610291610399366004612d8e565b611d2e565b6102086103ac366004612e9f565b611df3565b6102916103bf366004612d15565b611ec4565b6102466103d2366004612e6f565b611efc565b600d54610266906001600160a01b031681565b610230600f5481565b610208610401366004612ca8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61029161043d366004612c8e565b611fd7565b610230600e5481565b600c54610266906001600160a01b031681565b600b54610266906001600160a01b031681565b60006001600160e01b0319821663780e9d6360e01b148061049657506104968261206f565b92915050565b600d54600090600160a01b900460ff166104f25760405162461bcd60e51b81526020600482015260126024820152714d696e74696e67206e6f742061637469766560701b60448201526064015b60405180910390fd5b600b546040516370a0823160e01b81526001600160a01b03848116600483015260009216906370a082319060240160206040518083038186803b15801561053857600080fd5b505afa15801561054c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105709190612e87565b9050600081116105c25760405162461bcd60e51b815260206004820152601d60248201527f57616c6c6574206d757374206f776e20612047656e65736973204e465400000060448201526064016104e9565b600c546040516370a0823160e01b81526001600160a01b03858116600483015260009216906370a082319060240160206040518083038186803b15801561060857600080fd5b505afa15801561061c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106409190612e87565b9050600081116106925760405162461bcd60e51b815260206004820152601a60248201527f57616c6c6574206d757374206f776e20612047656e32204e465400000000000060448201526064016104e9565b600d546040516370a0823160e01b81526001600160a01b03868116600483015260009216906370a082319060240160206040518083038186803b1580156106d857600080fd5b505afa1580156106ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107109190612e87565b9050600e548110156107345760405162461bcd60e51b81526004016104e990612ffa565b60008060005b8581101561082e57600b54604051632f745c5960e01b81526001600160a01b038a81166004830152602482018490526000921690632f745c599060440160206040518083038186803b15801561078f57600080fd5b505afa1580156107a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c79190612e87565b90506011816107a181106107eb57634e487b7160e01b600052603260045260246000fd5b602091828204019190069054906101000a900460ff16151560011515141561081b578361081781613188565b9450505b508061082681613188565b91505061073a565b5061083982866130f3565b61084a575060009695505050505050565b60005b8481101561094157600c54604051632f745c5960e01b81526001600160a01b038a81166004830152602482018490526000921690632f745c599060440160206040518083038186803b1580156108a257600080fd5b505afa1580156108b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108da9190612e87565b9050604f816107a181106108fe57634e487b7160e01b600052603260045260246000fd5b602091828204019190069054906101000a900460ff16151560011515141561092e578261092a81613188565b9350505b508061093981613188565b91505061084d565b5061094c81856130f3565b61095d575060009695505050505050565b600061096982866130f3565b61097384886130f3565b106109875761098282866130f3565b610991565b61099183876130f3565b905083600e54826109a291906130d4565b11156109d6576000600e54856109b891906131a3565b600e549091506109c882876130f3565b6109d291906130c0565b9150505b979650505050505050565b6060600080546109f09061314d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1c9061314d565b8015610a695780601f10610a3e57610100808354040283529160200191610a69565b820191906000526020600020905b815481529060010190602001808311610a4c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610aec5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104e9565b506000908152600460205260409020546001600160a01b031690565b6000610b1382610e1a565b9050806001600160a01b0316836001600160a01b03161415610b815760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104e9565b336001600160a01b0382161480610b9d5750610b9d8133610401565b610c0f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104e9565b610c1983836120bf565b505050565b610c28338261212d565b610c445760405162461bcd60e51b81526004016104e990613057565b610c19838383612224565b6000610c5a83610e91565b8210610cbc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104e9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d0f5760405162461bcd60e51b81526004016104e990612fc5565b47610d1a33826123cf565b50565b610c1983838360405180602001604052806000815250611ec4565b6000610d4360085490565b8210610da65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104e9565b60088281548110610dc757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610e035760405162461bcd60e51b81526004016104e990612fc5565b8051610e16906010906020840190612b63565b5050565b6000818152600260205260408120546001600160a01b0316806104965760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104e9565b60006001600160a01b038216610efc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104e9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f425760405162461bcd60e51b81526004016104e990612fc5565b610f4c60006124e8565b565b600a546001600160a01b03163314610f785760405162461bcd60e51b81526004016104e990612fc5565b600b546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b158015610fbe57600080fd5b505afa158015610fd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff69190612e87565b600c546040516370a0823160e01b81526001600160a01b038581166004830152929350600092909116906370a082319060240160206040518083038186803b15801561104157600080fd5b505afa158015611055573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110799190612e87565b905060008211801561108b5750600081115b6110e95760405162461bcd60e51b815260206004820152602960248201527f526563697069656e7420686173206e6f20756e636c61696d6564204e46547320604482015268617661696c61626c6560b81b60648201526084016104e9565b60008167ffffffffffffffff81111561111257634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561113b578160200160208202803683370190505b5090506000805b8381101561125a57600c54604051632f745c5960e01b81526001600160a01b038881166004830152602482018490526000921690632f745c599060440160206040518083038186803b15801561119757600080fd5b505afa1580156111ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111cf9190612e87565b9050604f816107a181106111f357634e487b7160e01b600052603260045260246000fd5b602081049091015460ff601f9092166101000a900416611247578084848151811061122e57634e487b7160e01b600052603260045260246000fd5b60209081029190910101528261124381613188565b9350505b508061125281613188565b915050611142565b50600081116112ab5760405162461bcd60e51b815260206004820181905260248201527f4e6f20756e636c61696d65642047656e32204e46547320617661696c61626c6560448201526064016104e9565b6000805b858110156114e757600b54604051632f745c5960e01b81526001600160a01b038981166004830152602482018490526000921690632f745c599060440160206040518083038186803b15801561130457600080fd5b505afa158015611318573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133c9190612e87565b90506011816107a1811061136057634e487b7160e01b600052603260045260246000fd5b602081049091015460ff601f9092166101000a9004161580156113835750600084115b156114c9578361139281613136565b94505061139e60085490565b92506113aa888461253a565b60016011826107a181106113ce57634e487b7160e01b600052603260045260246000fd5b602091828204019190066101000a81548160ff0219169083151502179055506001604f86868151811061141157634e487b7160e01b600052603260045260246000fd5b60200260200101516107a1811061143857634e487b7160e01b600052603260045260246000fd5b602091828204019190066101000a81548160ff0219169083151502179055507fffcef012c57aebe5ac5892b7a52a23e54435ab8349cfbaa6620d7f3b0da0a0018186868151811061149957634e487b7160e01b600052603260045260246000fd5b60209081029190910181015160408051938452918301526000908201526060810185905260800160405180910390a15b836114d457506114e7565b50806114df81613188565b9150506112af565b50505050505050565b600a546001600160a01b0316331461151a5760405162461bcd60e51b81526004016104e990612fc5565b600d805460ff600160a01b808304821615810260ff60a01b1990931692909217928390556040517fd2bce5b0f3cb0c9c70f1761d4ddcaf6236907e4b29bb4a7546b6a0c64be90cf8936115769390049091161515815260200190565b60405180910390a1565b6060600180546109f09061314d565b600d54600160a01b900460ff166115dd5760405162461bcd60e51b81526020600482015260126024820152714d696e74696e67206e6f742061637469766560701b60448201526064016104e9565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561162157600080fd5b505afa158015611635573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116599190612e87565b9050600081116116ab5760405162461bcd60e51b815260206004820152601d60248201527f57616c6c6574206d757374206f776e20612047656e65736973204e465400000060448201526064016104e9565b600c546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156116ef57600080fd5b505afa158015611703573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117279190612e87565b9050600081116117795760405162461bcd60e51b815260206004820152601a60248201527f57616c6c6574206d757374206f776e20612047656e32204e465400000000000060448201526064016104e9565b600d546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156117bd57600080fd5b505afa1580156117d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f59190612e87565b9050600e548110156118195760405162461bcd60e51b81526004016104e990612ffa565b600184101561182757600193505b60008267ffffffffffffffff81111561185057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611879578160200160208202803683370190505b5090506000805b8481101561199657600c54604051632f745c5960e01b8152336004820152602481018390526000916001600160a01b031690632f745c599060440160206040518083038186803b1580156118d357600080fd5b505afa1580156118e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061190b9190612e87565b9050604f816107a1811061192f57634e487b7160e01b600052603260045260246000fd5b602081049091015460ff601f9092166101000a900416611983578084848151811061196a57634e487b7160e01b600052603260045260246000fd5b60209081029190910101528261197f81613188565b9350505b508061198e81613188565b915050611880565b50600081116119e75760405162461bcd60e51b815260206004820181905260248201527f4e6f20756e636c61696d65642047656e32204e46547320617661696c61626c6560448201526064016104e9565b60008060005b87811015611cd357600e54861015611a0457611cd3565b600b54604051632f745c5960e01b8152336004820152602481018390526000916001600160a01b031690632f745c599060440160206040518083038186803b158015611a4f57600080fd5b505afa158015611a63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a879190612e87565b90506011816107a18110611aab57634e487b7160e01b600052603260045260246000fd5b602081049091015460ff601f9092166101000a900416158015611ace5750600085115b15611ca95784611add81613136565b955050611ae960085490565b600d54600e54604051632770a7eb60e21b815233600482015260248101919091529194506001600160a01b031690639dc29fac90604401600060405180830381600087803b158015611b3a57600080fd5b505af1158015611b4e573d6000803e3d6000fd5b50505050611b62611b5c3390565b8461253a565b60016011826107a18110611b8657634e487b7160e01b600052603260045260246000fd5b602091828204019190066101000a81548160ff0219169083151502179055506001604f878781518110611bc957634e487b7160e01b600052603260045260246000fd5b60200260200101516107a18110611bf057634e487b7160e01b600052603260045260246000fd5b602091828204019190066101000a81548160ff021916908315150217905550600e5487611c1d91906130f3565b965083611c2981613188565b9450507fffcef012c57aebe5ac5892b7a52a23e54435ab8349cfbaa6620d7f3b0da0a00181878781518110611c6e57634e487b7160e01b600052603260045260246000fd5b6020026020010151600e5486604051611ca0949392919093845260208401929092526040830152606082015260800190565b60405180910390a15b89841480611cb5575084155b15611cc05750611cd3565b5080611ccb81613188565b9150506119ed565b5060008211611d245760405162461bcd60e51b815260206004820181905260248201527f4e6f20756e636c61696d65642047656e31204e46547320617661696c61626c6560448201526064016104e9565b5050505050505050565b6001600160a01b038216331415611d875760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104e9565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006107a18310611e395760405162461bcd60e51b815260206004820152601060248201526f125b9d985b1a5908151bdad95b88125160821b60448201526064016104e9565b8160ff1660011415611e84576011836107a18110611e6757634e487b7160e01b600052603260045260246000fd5b602081049091015460ff601f9092166101000a9004169050610496565b604f836107a18110611ea657634e487b7160e01b600052603260045260246000fd5b602081049091015460ff601f9092166101000a900416905092915050565b611ece338361212d565b611eea5760405162461bcd60e51b81526004016104e990613057565b611ef684848484612688565b50505050565b6000818152600260205260409020546060906001600160a01b0316611f7b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104e9565b6000611f856126bb565b90506000815111611fa55760405180602001604052806000815250611fd0565b80611faf846126ca565b604051602001611fc0929190612ef4565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146120015760405162461bcd60e51b81526004016104e990612fc5565b6001600160a01b0381166120665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e9565b610d1a816124e8565b60006001600160e01b031982166380ac58cd60e01b14806120a057506001600160e01b03198216635b5e139f60e01b145b8061049657506301ffc9a760e01b6001600160e01b0319831614610496565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906120f482610e1a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166121a65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104e9565b60006121b183610e1a565b9050806001600160a01b0316846001600160a01b031614806121ec5750836001600160a01b03166121e184610a73565b6001600160a01b0316145b8061221c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661223782610e1a565b6001600160a01b03161461229f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016104e9565b6001600160a01b0382166123015760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104e9565b61230c8383836127e4565b6123176000826120bf565b6001600160a01b03831660009081526003602052604081208054600192906123409084906130f3565b90915550506001600160a01b038216600090815260036020526040812080546001929061236e9084906130a8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8047101561241f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016104e9565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461246c576040519150601f19603f3d011682016040523d82523d6000602084013e612471565b606091505b5050905080610c195760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016104e9565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166125905760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104e9565b6000818152600260205260409020546001600160a01b0316156125f55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104e9565b612601600083836127e4565b6001600160a01b038216600090815260036020526040812080546001929061262a9084906130a8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b612693848484612224565b61269f8484848461289c565b611ef65760405162461bcd60e51b81526004016104e990612f73565b6060601080546109f09061314d565b6060816126ee5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612718578061270281613188565b91506127119050600a836130c0565b91506126f2565b60008167ffffffffffffffff81111561274157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561276b576020820181803683370190505b5090505b841561221c576127806001836130f3565b915061278d600a866131a3565b6127989060306130a8565b60f81b8183815181106127bb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506127dd600a866130c0565b945061276f565b6001600160a01b03831661283f5761283a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612862565b816001600160a01b0316836001600160a01b0316146128625761286283826129a9565b6001600160a01b03821661287957610c1981612a46565b826001600160a01b0316826001600160a01b031614610c1957610c198282612b1f565b60006001600160a01b0384163b1561299e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906128e0903390899088908890600401612f23565b602060405180830381600087803b1580156128fa57600080fd5b505af192505050801561292a575060408051601f3d908101601f1916820190925261292791810190612e0d565b60015b612984573d808015612958576040519150601f19603f3d011682016040523d82523d6000602084013e61295d565b606091505b50805161297c5760405162461bcd60e51b81526004016104e990612f73565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061221c565b506001949350505050565b600060016129b684610e91565b6129c091906130f3565b600083815260076020526040902054909150808214612a13576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612a58906001906130f3565b60008381526009602052604081205460088054939450909284908110612a8e57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612abd57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612b0357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612b2a83610e91565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612b6f9061314d565b90600052602060002090601f016020900481019282612b915760008555612bd7565b82601f10612baa57805160ff1916838001178555612bd7565b82800160010185558215612bd7579182015b82811115612bd7578251825591602001919060010190612bbc565b50612be3929150612be7565b5090565b5b80821115612be35760008155600101612be8565b600067ffffffffffffffff80841115612c1757612c176131e3565b604051601f8501601f19908116603f01168101908282118183101715612c3f57612c3f6131e3565b81604052809350858152868686011115612c5857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612c8957600080fd5b919050565b600060208284031215612c9f578081fd5b611fd082612c72565b60008060408385031215612cba578081fd5b612cc383612c72565b9150612cd160208401612c72565b90509250929050565b600080600060608486031215612cee578081fd5b612cf784612c72565b9250612d0560208501612c72565b9150604084013590509250925092565b60008060008060808587031215612d2a578081fd5b612d3385612c72565b9350612d4160208601612c72565b925060408501359150606085013567ffffffffffffffff811115612d63578182fd5b8501601f81018713612d73578182fd5b612d8287823560208401612bfc565b91505092959194509250565b60008060408385031215612da0578182fd5b612da983612c72565b915060208301358015158114612dbd578182fd5b809150509250929050565b60008060408385031215612dda578182fd5b612de383612c72565b946020939093013593505050565b600060208284031215612e02578081fd5b8135611fd0816131f9565b600060208284031215612e1e578081fd5b8151611fd0816131f9565b600060208284031215612e3a578081fd5b813567ffffffffffffffff811115612e50578182fd5b8201601f81018413612e60578182fd5b61221c84823560208401612bfc565b600060208284031215612e80578081fd5b5035919050565b600060208284031215612e98578081fd5b5051919050565b60008060408385031215612eb1578182fd5b82359150602083013560ff81168114612dbd578182fd5b60008151808452612ee081602086016020860161310a565b601f01601f19169290920160200192915050565b60008351612f0681846020880161310a565b835190830190612f1a81836020880161310a565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f5690830184612ec8565b9695505050505050565b602081526000611fd06020830184612ec8565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526037908201527f57616c6c6574206d75737420686176652073756666696369656e74202450454e60408201527f43494c20746f206275726e20666f72206d696e74696e67000000000000000000606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156130bb576130bb6131b7565b500190565b6000826130cf576130cf6131cd565b500490565b60008160001904831182151516156130ee576130ee6131b7565b500290565b600082821015613105576131056131b7565b500390565b60005b8381101561312557818101518382015260200161310d565b83811115611ef65750506000910152565b600081613145576131456131b7565b506000190190565b600181811c9082168061316157607f821691505b6020821081141561318257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561319c5761319c6131b7565b5060010190565b6000826131b2576131b26131cd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d1a57600080fdfea264697066735822122079992bdfa7fb22f2c891a4d86f2ac859cc6c9c9a49461b318173a841af08c0ef64736f6c63430008040033000000000000000000000000ed6c62794e4ed3dec82d00c7ca58ae9512b13eb1000000000000000000000000a844b918f0c362068e3894c68af5b2adbd37ed2c000000000000000000000000607df06d771bd72c14a4031d1647cad8ca1af268

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c80637e27ee181161010f578063c87b56dd116100a2578063f2fde38b11610071578063f2fde38b1461042f578063f876e18214610442578063fc0b23021461044b578063ff7f6c701461045e57600080fd5b8063c87b56dd146103c4578063ce9e0c4d146103d7578063d5abeb01146103ea578063e985e9c5146103f357600080fd5b806397304ced116100de57806397304ced14610378578063a22cb4651461038b578063ae6d90061461039e578063b88d4fde146103b157600080fd5b80637e27ee18146103445780638da5cb5b146103575780638e9203511461036857806395d89b411461037057600080fd5b80632f745c591161018757806355f804b31161015657806355f804b3146103035780636352211e1461031657806370a0823114610329578063715018a61461033c57600080fd5b80632f745c59146102c25780633ccfd60b146102d557806342842e0e146102dd5780634f6ccce7146102f057600080fd5b8063095ea7b3116101c3578063095ea7b31461027e57806318160ddd1461029357806322f3e2d41461029b57806323b872dd146102af57600080fd5b806301ffc9a7146101f55780630426212c1461021d57806306fdde031461023e578063081812fc14610253575b600080fd5b610208610203366004612df1565b610471565b60405190151581526020015b60405180910390f35b61023061022b366004612c8e565b61049c565b604051908152602001610214565b6102466109e1565b6040516102149190612f60565b610266610261366004612e6f565b610a73565b6040516001600160a01b039091168152602001610214565b61029161028c366004612dc8565b610b08565b005b600854610230565b600d5461020890600160a01b900460ff1681565b6102916102bd366004612cda565b610c1e565b6102306102d0366004612dc8565b610c4f565b610291610ce5565b6102916102eb366004612cda565b610d1d565b6102306102fe366004612e6f565b610d38565b610291610311366004612e29565b610dd9565b610266610324366004612e6f565b610e1a565b610230610337366004612c8e565b610e91565b610291610f18565b610291610352366004612c8e565b610f4e565b600a546001600160a01b0316610266565b6102916114f0565b610246611580565b610291610386366004612e6f565b61158f565b610291610399366004612d8e565b611d2e565b6102086103ac366004612e9f565b611df3565b6102916103bf366004612d15565b611ec4565b6102466103d2366004612e6f565b611efc565b600d54610266906001600160a01b031681565b610230600f5481565b610208610401366004612ca8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61029161043d366004612c8e565b611fd7565b610230600e5481565b600c54610266906001600160a01b031681565b600b54610266906001600160a01b031681565b60006001600160e01b0319821663780e9d6360e01b148061049657506104968261206f565b92915050565b600d54600090600160a01b900460ff166104f25760405162461bcd60e51b81526020600482015260126024820152714d696e74696e67206e6f742061637469766560701b60448201526064015b60405180910390fd5b600b546040516370a0823160e01b81526001600160a01b03848116600483015260009216906370a082319060240160206040518083038186803b15801561053857600080fd5b505afa15801561054c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105709190612e87565b9050600081116105c25760405162461bcd60e51b815260206004820152601d60248201527f57616c6c6574206d757374206f776e20612047656e65736973204e465400000060448201526064016104e9565b600c546040516370a0823160e01b81526001600160a01b03858116600483015260009216906370a082319060240160206040518083038186803b15801561060857600080fd5b505afa15801561061c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106409190612e87565b9050600081116106925760405162461bcd60e51b815260206004820152601a60248201527f57616c6c6574206d757374206f776e20612047656e32204e465400000000000060448201526064016104e9565b600d546040516370a0823160e01b81526001600160a01b03868116600483015260009216906370a082319060240160206040518083038186803b1580156106d857600080fd5b505afa1580156106ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107109190612e87565b9050600e548110156107345760405162461bcd60e51b81526004016104e990612ffa565b60008060005b8581101561082e57600b54604051632f745c5960e01b81526001600160a01b038a81166004830152602482018490526000921690632f745c599060440160206040518083038186803b15801561078f57600080fd5b505afa1580156107a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c79190612e87565b90506011816107a181106107eb57634e487b7160e01b600052603260045260246000fd5b602091828204019190069054906101000a900460ff16151560011515141561081b578361081781613188565b9450505b508061082681613188565b91505061073a565b5061083982866130f3565b61084a575060009695505050505050565b60005b8481101561094157600c54604051632f745c5960e01b81526001600160a01b038a81166004830152602482018490526000921690632f745c599060440160206040518083038186803b1580156108a257600080fd5b505afa1580156108b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108da9190612e87565b9050604f816107a181106108fe57634e487b7160e01b600052603260045260246000fd5b602091828204019190069054906101000a900460ff16151560011515141561092e578261092a81613188565b9350505b508061093981613188565b91505061084d565b5061094c81856130f3565b61095d575060009695505050505050565b600061096982866130f3565b61097384886130f3565b106109875761098282866130f3565b610991565b61099183876130f3565b905083600e54826109a291906130d4565b11156109d6576000600e54856109b891906131a3565b600e549091506109c882876130f3565b6109d291906130c0565b9150505b979650505050505050565b6060600080546109f09061314d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1c9061314d565b8015610a695780601f10610a3e57610100808354040283529160200191610a69565b820191906000526020600020905b815481529060010190602001808311610a4c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610aec5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104e9565b506000908152600460205260409020546001600160a01b031690565b6000610b1382610e1a565b9050806001600160a01b0316836001600160a01b03161415610b815760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104e9565b336001600160a01b0382161480610b9d5750610b9d8133610401565b610c0f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104e9565b610c1983836120bf565b505050565b610c28338261212d565b610c445760405162461bcd60e51b81526004016104e990613057565b610c19838383612224565b6000610c5a83610e91565b8210610cbc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104e9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d0f5760405162461bcd60e51b81526004016104e990612fc5565b47610d1a33826123cf565b50565b610c1983838360405180602001604052806000815250611ec4565b6000610d4360085490565b8210610da65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104e9565b60088281548110610dc757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610e035760405162461bcd60e51b81526004016104e990612fc5565b8051610e16906010906020840190612b63565b5050565b6000818152600260205260408120546001600160a01b0316806104965760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104e9565b60006001600160a01b038216610efc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104e9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f425760405162461bcd60e51b81526004016104e990612fc5565b610f4c60006124e8565b565b600a546001600160a01b03163314610f785760405162461bcd60e51b81526004016104e990612fc5565b600b546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b158015610fbe57600080fd5b505afa158015610fd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff69190612e87565b600c546040516370a0823160e01b81526001600160a01b038581166004830152929350600092909116906370a082319060240160206040518083038186803b15801561104157600080fd5b505afa158015611055573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110799190612e87565b905060008211801561108b5750600081115b6110e95760405162461bcd60e51b815260206004820152602960248201527f526563697069656e7420686173206e6f20756e636c61696d6564204e46547320604482015268617661696c61626c6560b81b60648201526084016104e9565b60008167ffffffffffffffff81111561111257634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561113b578160200160208202803683370190505b5090506000805b8381101561125a57600c54604051632f745c5960e01b81526001600160a01b038881166004830152602482018490526000921690632f745c599060440160206040518083038186803b15801561119757600080fd5b505afa1580156111ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111cf9190612e87565b9050604f816107a181106111f357634e487b7160e01b600052603260045260246000fd5b602081049091015460ff601f9092166101000a900416611247578084848151811061122e57634e487b7160e01b600052603260045260246000fd5b60209081029190910101528261124381613188565b9350505b508061125281613188565b915050611142565b50600081116112ab5760405162461bcd60e51b815260206004820181905260248201527f4e6f20756e636c61696d65642047656e32204e46547320617661696c61626c6560448201526064016104e9565b6000805b858110156114e757600b54604051632f745c5960e01b81526001600160a01b038981166004830152602482018490526000921690632f745c599060440160206040518083038186803b15801561130457600080fd5b505afa158015611318573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133c9190612e87565b90506011816107a1811061136057634e487b7160e01b600052603260045260246000fd5b602081049091015460ff601f9092166101000a9004161580156113835750600084115b156114c9578361139281613136565b94505061139e60085490565b92506113aa888461253a565b60016011826107a181106113ce57634e487b7160e01b600052603260045260246000fd5b602091828204019190066101000a81548160ff0219169083151502179055506001604f86868151811061141157634e487b7160e01b600052603260045260246000fd5b60200260200101516107a1811061143857634e487b7160e01b600052603260045260246000fd5b602091828204019190066101000a81548160ff0219169083151502179055507fffcef012c57aebe5ac5892b7a52a23e54435ab8349cfbaa6620d7f3b0da0a0018186868151811061149957634e487b7160e01b600052603260045260246000fd5b60209081029190910181015160408051938452918301526000908201526060810185905260800160405180910390a15b836114d457506114e7565b50806114df81613188565b9150506112af565b50505050505050565b600a546001600160a01b0316331461151a5760405162461bcd60e51b81526004016104e990612fc5565b600d805460ff600160a01b808304821615810260ff60a01b1990931692909217928390556040517fd2bce5b0f3cb0c9c70f1761d4ddcaf6236907e4b29bb4a7546b6a0c64be90cf8936115769390049091161515815260200190565b60405180910390a1565b6060600180546109f09061314d565b600d54600160a01b900460ff166115dd5760405162461bcd60e51b81526020600482015260126024820152714d696e74696e67206e6f742061637469766560701b60448201526064016104e9565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561162157600080fd5b505afa158015611635573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116599190612e87565b9050600081116116ab5760405162461bcd60e51b815260206004820152601d60248201527f57616c6c6574206d757374206f776e20612047656e65736973204e465400000060448201526064016104e9565b600c546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156116ef57600080fd5b505afa158015611703573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117279190612e87565b9050600081116117795760405162461bcd60e51b815260206004820152601a60248201527f57616c6c6574206d757374206f776e20612047656e32204e465400000000000060448201526064016104e9565b600d546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156117bd57600080fd5b505afa1580156117d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f59190612e87565b9050600e548110156118195760405162461bcd60e51b81526004016104e990612ffa565b600184101561182757600193505b60008267ffffffffffffffff81111561185057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611879578160200160208202803683370190505b5090506000805b8481101561199657600c54604051632f745c5960e01b8152336004820152602481018390526000916001600160a01b031690632f745c599060440160206040518083038186803b1580156118d357600080fd5b505afa1580156118e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061190b9190612e87565b9050604f816107a1811061192f57634e487b7160e01b600052603260045260246000fd5b602081049091015460ff601f9092166101000a900416611983578084848151811061196a57634e487b7160e01b600052603260045260246000fd5b60209081029190910101528261197f81613188565b9350505b508061198e81613188565b915050611880565b50600081116119e75760405162461bcd60e51b815260206004820181905260248201527f4e6f20756e636c61696d65642047656e32204e46547320617661696c61626c6560448201526064016104e9565b60008060005b87811015611cd357600e54861015611a0457611cd3565b600b54604051632f745c5960e01b8152336004820152602481018390526000916001600160a01b031690632f745c599060440160206040518083038186803b158015611a4f57600080fd5b505afa158015611a63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a879190612e87565b90506011816107a18110611aab57634e487b7160e01b600052603260045260246000fd5b602081049091015460ff601f9092166101000a900416158015611ace5750600085115b15611ca95784611add81613136565b955050611ae960085490565b600d54600e54604051632770a7eb60e21b815233600482015260248101919091529194506001600160a01b031690639dc29fac90604401600060405180830381600087803b158015611b3a57600080fd5b505af1158015611b4e573d6000803e3d6000fd5b50505050611b62611b5c3390565b8461253a565b60016011826107a18110611b8657634e487b7160e01b600052603260045260246000fd5b602091828204019190066101000a81548160ff0219169083151502179055506001604f878781518110611bc957634e487b7160e01b600052603260045260246000fd5b60200260200101516107a18110611bf057634e487b7160e01b600052603260045260246000fd5b602091828204019190066101000a81548160ff021916908315150217905550600e5487611c1d91906130f3565b965083611c2981613188565b9450507fffcef012c57aebe5ac5892b7a52a23e54435ab8349cfbaa6620d7f3b0da0a00181878781518110611c6e57634e487b7160e01b600052603260045260246000fd5b6020026020010151600e5486604051611ca0949392919093845260208401929092526040830152606082015260800190565b60405180910390a15b89841480611cb5575084155b15611cc05750611cd3565b5080611ccb81613188565b9150506119ed565b5060008211611d245760405162461bcd60e51b815260206004820181905260248201527f4e6f20756e636c61696d65642047656e31204e46547320617661696c61626c6560448201526064016104e9565b5050505050505050565b6001600160a01b038216331415611d875760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104e9565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006107a18310611e395760405162461bcd60e51b815260206004820152601060248201526f125b9d985b1a5908151bdad95b88125160821b60448201526064016104e9565b8160ff1660011415611e84576011836107a18110611e6757634e487b7160e01b600052603260045260246000fd5b602081049091015460ff601f9092166101000a9004169050610496565b604f836107a18110611ea657634e487b7160e01b600052603260045260246000fd5b602081049091015460ff601f9092166101000a900416905092915050565b611ece338361212d565b611eea5760405162461bcd60e51b81526004016104e990613057565b611ef684848484612688565b50505050565b6000818152600260205260409020546060906001600160a01b0316611f7b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104e9565b6000611f856126bb565b90506000815111611fa55760405180602001604052806000815250611fd0565b80611faf846126ca565b604051602001611fc0929190612ef4565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146120015760405162461bcd60e51b81526004016104e990612fc5565b6001600160a01b0381166120665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e9565b610d1a816124e8565b60006001600160e01b031982166380ac58cd60e01b14806120a057506001600160e01b03198216635b5e139f60e01b145b8061049657506301ffc9a760e01b6001600160e01b0319831614610496565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906120f482610e1a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166121a65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104e9565b60006121b183610e1a565b9050806001600160a01b0316846001600160a01b031614806121ec5750836001600160a01b03166121e184610a73565b6001600160a01b0316145b8061221c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661223782610e1a565b6001600160a01b03161461229f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016104e9565b6001600160a01b0382166123015760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104e9565b61230c8383836127e4565b6123176000826120bf565b6001600160a01b03831660009081526003602052604081208054600192906123409084906130f3565b90915550506001600160a01b038216600090815260036020526040812080546001929061236e9084906130a8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8047101561241f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016104e9565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461246c576040519150601f19603f3d011682016040523d82523d6000602084013e612471565b606091505b5050905080610c195760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016104e9565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166125905760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104e9565b6000818152600260205260409020546001600160a01b0316156125f55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104e9565b612601600083836127e4565b6001600160a01b038216600090815260036020526040812080546001929061262a9084906130a8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b612693848484612224565b61269f8484848461289c565b611ef65760405162461bcd60e51b81526004016104e990612f73565b6060601080546109f09061314d565b6060816126ee5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612718578061270281613188565b91506127119050600a836130c0565b91506126f2565b60008167ffffffffffffffff81111561274157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561276b576020820181803683370190505b5090505b841561221c576127806001836130f3565b915061278d600a866131a3565b6127989060306130a8565b60f81b8183815181106127bb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506127dd600a866130c0565b945061276f565b6001600160a01b03831661283f5761283a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612862565b816001600160a01b0316836001600160a01b0316146128625761286283826129a9565b6001600160a01b03821661287957610c1981612a46565b826001600160a01b0316826001600160a01b031614610c1957610c198282612b1f565b60006001600160a01b0384163b1561299e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906128e0903390899088908890600401612f23565b602060405180830381600087803b1580156128fa57600080fd5b505af192505050801561292a575060408051601f3d908101601f1916820190925261292791810190612e0d565b60015b612984573d808015612958576040519150601f19603f3d011682016040523d82523d6000602084013e61295d565b606091505b50805161297c5760405162461bcd60e51b81526004016104e990612f73565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061221c565b506001949350505050565b600060016129b684610e91565b6129c091906130f3565b600083815260076020526040902054909150808214612a13576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612a58906001906130f3565b60008381526009602052604081205460088054939450909284908110612a8e57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612abd57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612b0357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612b2a83610e91565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612b6f9061314d565b90600052602060002090601f016020900481019282612b915760008555612bd7565b82601f10612baa57805160ff1916838001178555612bd7565b82800160010185558215612bd7579182015b82811115612bd7578251825591602001919060010190612bbc565b50612be3929150612be7565b5090565b5b80821115612be35760008155600101612be8565b600067ffffffffffffffff80841115612c1757612c176131e3565b604051601f8501601f19908116603f01168101908282118183101715612c3f57612c3f6131e3565b81604052809350858152868686011115612c5857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612c8957600080fd5b919050565b600060208284031215612c9f578081fd5b611fd082612c72565b60008060408385031215612cba578081fd5b612cc383612c72565b9150612cd160208401612c72565b90509250929050565b600080600060608486031215612cee578081fd5b612cf784612c72565b9250612d0560208501612c72565b9150604084013590509250925092565b60008060008060808587031215612d2a578081fd5b612d3385612c72565b9350612d4160208601612c72565b925060408501359150606085013567ffffffffffffffff811115612d63578182fd5b8501601f81018713612d73578182fd5b612d8287823560208401612bfc565b91505092959194509250565b60008060408385031215612da0578182fd5b612da983612c72565b915060208301358015158114612dbd578182fd5b809150509250929050565b60008060408385031215612dda578182fd5b612de383612c72565b946020939093013593505050565b600060208284031215612e02578081fd5b8135611fd0816131f9565b600060208284031215612e1e578081fd5b8151611fd0816131f9565b600060208284031215612e3a578081fd5b813567ffffffffffffffff811115612e50578182fd5b8201601f81018413612e60578182fd5b61221c84823560208401612bfc565b600060208284031215612e80578081fd5b5035919050565b600060208284031215612e98578081fd5b5051919050565b60008060408385031215612eb1578182fd5b82359150602083013560ff81168114612dbd578182fd5b60008151808452612ee081602086016020860161310a565b601f01601f19169290920160200192915050565b60008351612f0681846020880161310a565b835190830190612f1a81836020880161310a565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f5690830184612ec8565b9695505050505050565b602081526000611fd06020830184612ec8565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526037908201527f57616c6c6574206d75737420686176652073756666696369656e74202450454e60408201527f43494c20746f206275726e20666f72206d696e74696e67000000000000000000606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156130bb576130bb6131b7565b500190565b6000826130cf576130cf6131cd565b500490565b60008160001904831182151516156130ee576130ee6131b7565b500290565b600082821015613105576131056131b7565b500390565b60005b8381101561312557818101518382015260200161310d565b83811115611ef65750506000910152565b600081613145576131456131b7565b506000190190565b600181811c9082168061316157607f821691505b6020821081141561318257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561319c5761319c6131b7565b5060010190565b6000826131b2576131b26131cd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d1a57600080fdfea264697066735822122079992bdfa7fb22f2c891a4d86f2ac859cc6c9c9a49461b318173a841af08c0ef64736f6c63430008040033

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

000000000000000000000000ed6c62794e4ed3dec82d00c7ca58ae9512b13eb1000000000000000000000000a844b918f0c362068e3894c68af5b2adbd37ed2c000000000000000000000000607df06d771bd72c14a4031d1647cad8ca1af268

-----Decoded View---------------
Arg [0] : gen1 (address): 0xEd6C62794e4Ed3deC82D00c7cA58AE9512B13eb1
Arg [1] : gen2 (address): 0xa844b918F0C362068E3894C68AF5b2Adbd37eD2C
Arg [2] : pencil (address): 0x607DF06d771bd72c14A4031d1647CaD8cA1af268

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000ed6c62794e4ed3dec82d00c7ca58ae9512b13eb1
Arg [1] : 000000000000000000000000a844b918f0c362068e3894c68af5b2adbd37ed2c
Arg [2] : 000000000000000000000000607df06d771bd72c14a4031d1647cad8ca1af268


Deployed Bytecode Sourcemap

44527:6883:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35679:224;;;;;;:::i;:::-;;:::i;:::-;;;6846:14:1;;6839:22;6821:41;;6809:2;6794:18;35679:224:0;;;;;;;;45457:1572;;;;;;:::i;:::-;;:::i;:::-;;;18639:25:1;;;18627:2;18612:18;45457:1572:0;18594:76:1;22572:100:0;;;:::i;:::-;;;;;;;:::i;24131:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5865:32:1;;;5847:51;;5835:2;5820:18;24131:221:0;5802:102:1;23654:411:0;;;;;;:::i;:::-;;:::i;:::-;;36319:113;36407:10;:17;36319:113;;44717:28;;;;;-1:-1:-1;;;44717:28:0;;;;;;25021:339;;;;;;:::i;:::-;;:::i;35987:256::-;;;;;;:::i;:::-;;:::i;51252:155::-;;;:::i;25431:185::-;;;;;;:::i;:::-;;:::i;36509:233::-;;;;;;:::i;:::-;;:::i;51076:101::-;;;;;;:::i;:::-;;:::i;22266:239::-;;;;;;:::i;:::-;;:::i;21996:208::-;;;;;;:::i;:::-;;:::i;43480:94::-;;;:::i;47305:1476::-;;;;;;:::i;:::-;;:::i;42829:87::-;42902:6;;-1:-1:-1;;;;;42902:6:0;42829:87;;48789:113;;;:::i;22741:104::-;;;:::i;48910:2128::-;;;;;;:::i;:::-;;:::i;24424:295::-;;;;;;:::i;:::-;;:::i;47037:260::-;;;;;;:::i;:::-;;:::i;25687:328::-;;;;;;:::i;:::-;;:::i;22916:334::-;;;;;;:::i;:::-;;:::i;44666:25::-;;;;;-1:-1:-1;;;;;44666:25:0;;;44801:31;;;;;;24790:164;;;;;;:::i;:::-;-1:-1:-1;;;;;24911:25:0;;;24887:4;24911:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24790:164;43729:192;;;;;;:::i;:::-;;:::i;44754:40::-;;;;;;44626:18;;;;;-1:-1:-1;;;;;44626:18:0;;;44589;;;;;-1:-1:-1;;;;;44589:18:0;;;35679:224;35781:4;-1:-1:-1;;;;;;35805:50:0;;-1:-1:-1;;;35805:50:0;;:90;;;35859:36;35883:11;35859:23;:36::i;:::-;35798:97;35679:224;-1:-1:-1;;35679:224:0:o;45457:1572::-;45547:8;;45519:7;;-1:-1:-1;;;45547:8:0;;;;45539:39;;;;-1:-1:-1;;;45539:39:0;;11294:2:1;45539:39:0;;;11276:21:1;11333:2;11313:18;;;11306:30;-1:-1:-1;;;11352:18:1;;;11345:48;11410:18;;45539:39:0;;;;;;;;;45611:7;;:28;;-1:-1:-1;;;45611:28:0;;-1:-1:-1;;;;;5865:32:1;;;45611:28:0;;;5847:51:1;45591:17:0;;45611:7;;:17;;5820:18:1;;45611:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45591:48;;45670:1;45658:9;:13;45650:55;;;;-1:-1:-1;;;45650:55:0;;12757:2:1;45650:55:0;;;12739:21:1;12796:2;12776:18;;;12769:30;12835:31;12815:18;;;12808:59;12884:18;;45650:55:0;12729:179:1;45650:55:0;45738:7;;:28;;-1:-1:-1;;;45738:28:0;;-1:-1:-1;;;;;5865:32:1;;;45738:28:0;;;5847:51:1;45718:17:0;;45738:7;;:17;;5820:18:1;;45738:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45718:48;;45797:1;45785:9;:13;45777:52;;;;-1:-1:-1;;;45777:52:0;;18340:2:1;45777:52:0;;;18322:21:1;18379:2;18359:18;;;18352:30;18418:28;18398:18;;;18391:56;18464:18;;45777:52:0;18312:176:1;45777:52:0;45866:11;;:32;;-1:-1:-1;;;45866:32:0;;-1:-1:-1;;;;;5865:32:1;;;45866::0;;;5847:51:1;45842:21:0;;45866:11;;:21;;5820:18:1;;45866:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45842:56;;45934:8;;45917:13;:25;;45909:93;;;;-1:-1:-1;;;45909:93:0;;;;;;;:::i;:::-;46015:19;46045;46082:9;46077:219;46097:9;46093:1;:13;46077:219;;;46146:7;;:41;;-1:-1:-1;;;46146:41:0;;-1:-1:-1;;;;;6594:32:1;;;46146:41:0;;;6576:51:1;6643:18;;;6636:34;;;46128:15:0;;46146:7;;:27;;6549:18:1;;46146:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46128:59;;46206:12;46219:7;46206:21;;;;;-1:-1:-1;;;46206:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;:29;;46231:4;46206:29;;;46202:83;;;46256:13;;;;:::i;:::-;;;;46202:83;-1:-1:-1;46108:3:0;;;;:::i;:::-;;;;46077:219;;;-1:-1:-1;46312:23:0;46324:11;46312:9;:23;:::i;:::-;46308:69;;-1:-1:-1;46364:1:0;;45457:1572;-1:-1:-1;;;;;;45457:1572:0:o;46308:69::-;46394:9;46389:219;46409:9;46405:1;:13;46389:219;;;46458:7;;:41;;-1:-1:-1;;;46458:41:0;;-1:-1:-1;;;;;6594:32:1;;;46458:41:0;;;6576:51:1;6643:18;;;6636:34;;;46440:15:0;;46458:7;;:27;;6549:18:1;;46458:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46440:59;;46518:12;46531:7;46518:21;;;;;-1:-1:-1;;;46518:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;:29;;46543:4;46518:29;;;46514:83;;;46568:13;;;;:::i;:::-;;;;46514:83;-1:-1:-1;46420:3:0;;;;:::i;:::-;;;;46389:219;;;-1:-1:-1;46624:23:0;46636:11;46624:9;:23;:::i;:::-;46620:69;;-1:-1:-1;46676:1:0;;45457:1572;-1:-1:-1;;;;;;45457:1572:0:o;46620:69::-;46701:11;46744:23;46756:11;46744:9;:23;:::i;:::-;46716;46728:11;46716:9;:23;:::i;:::-;46715:53;:105;;46797:23;46809:11;46797:9;:23;:::i;:::-;46715:105;;;46771:23;46783:11;46771:9;:23;:::i;:::-;46701:119;;46854:13;46843:8;;46837:3;:14;;;;:::i;:::-;:30;46833:166;;;46884:17;46920:8;;46904:13;:24;;;;:::i;:::-;46979:8;;46884:44;;-1:-1:-1;46950:25:0;46884:44;46950:13;:25;:::i;:::-;46949:38;;;;:::i;:::-;46943:44;;46833:166;;47018:3;45457:1572;-1:-1:-1;;;;;;;45457:1572:0:o;22572:100::-;22626:13;22659:5;22652:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22572:100;:::o;24131:221::-;24207:7;27614:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27614:16:0;24227:73;;;;-1:-1:-1;;;24227:73:0;;14722:2:1;24227:73:0;;;14704:21:1;14761:2;14741:18;;;14734:30;14800:34;14780:18;;;14773:62;-1:-1:-1;;;14851:18:1;;;14844:42;14903:19;;24227:73:0;14694:234:1;24227:73:0;-1:-1:-1;24320:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24320:24:0;;24131:221::o;23654:411::-;23735:13;23751:23;23766:7;23751:14;:23::i;:::-;23735:39;;23799:5;-1:-1:-1;;;;;23793:11:0;:2;-1:-1:-1;;;;;23793:11:0;;;23785:57;;;;-1:-1:-1;;;23785:57:0;;16683:2:1;23785:57:0;;;16665:21:1;16722:2;16702:18;;;16695:30;16761:34;16741:18;;;16734:62;-1:-1:-1;;;16812:18:1;;;16805:31;16853:19;;23785:57:0;16655:223:1;23785:57:0;17125:10;-1:-1:-1;;;;;23877:21:0;;;;:62;;-1:-1:-1;23902:37:0;23919:5;17125:10;24790:164;:::i;23902:37::-;23855:168;;;;-1:-1:-1;;;23855:168:0;;13115:2:1;23855:168:0;;;13097:21:1;13154:2;13134:18;;;13127:30;13193:34;13173:18;;;13166:62;13264:26;13244:18;;;13237:54;13308:19;;23855:168:0;13087:246:1;23855:168:0;24036:21;24045:2;24049:7;24036:8;:21::i;:::-;23654:411;;;:::o;25021:339::-;25216:41;17125:10;25249:7;25216:18;:41::i;:::-;25208:103;;;;-1:-1:-1;;;25208:103:0;;;;;;;:::i;:::-;25324:28;25334:4;25340:2;25344:7;25324:9;:28::i;35987:256::-;36084:7;36120:23;36137:5;36120:16;:23::i;:::-;36112:5;:31;36104:87;;;;-1:-1:-1;;;36104:87:0;;8152:2:1;36104:87:0;;;8134:21:1;8191:2;8171:18;;;8164:30;8230:34;8210:18;;;8203:62;-1:-1:-1;;;8281:18:1;;;8274:41;8332:19;;36104:87:0;8124:233:1;36104:87:0;-1:-1:-1;;;;;;36209:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35987:256::o;51252:155::-;42902:6;;-1:-1:-1;;;;;42902:6:0;17125:10;43049:23;43041:68;;;;-1:-1:-1;;;43041:68:0;;;;;;;:::i;:::-;51318:21:::1;51350:49;17125:10:::0;51391:7:::1;51350:17;:49::i;:::-;43120:1;51252:155::o:0;25431:185::-;25569:39;25586:4;25592:2;25596:7;25569:39;;;;;;;;;;;;:16;:39::i;36509:233::-;36584:7;36620:30;36407:10;:17;;36319:113;36620:30;36612:5;:38;36604:95;;;;-1:-1:-1;;;36604:95:0;;17927:2:1;36604:95:0;;;17909:21:1;17966:2;17946:18;;;17939:30;18005:34;17985:18;;;17978:62;-1:-1:-1;;;18056:18:1;;;18049:42;18108:19;;36604:95:0;17899:234:1;36604:95:0;36717:10;36728:5;36717:17;;;;;;-1:-1:-1;;;36717:17:0;;;;;;;;;;;;;;;;;36710:24;;36509:233;;;:::o;51076:101::-;42902:6;;-1:-1:-1;;;;;42902:6:0;17125:10;43049:23;43041:68;;;;-1:-1:-1;;;43041:68:0;;;;;;;:::i;:::-;51147:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51076:101:::0;:::o;22266:239::-;22338:7;22374:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22374:16:0;22409:19;22401:73;;;;-1:-1:-1;;;22401:73:0;;13951:2:1;22401:73:0;;;13933:21:1;13990:2;13970:18;;;13963:30;14029:34;14009:18;;;14002:62;-1:-1:-1;;;14080:18:1;;;14073:39;14129:19;;22401:73:0;13923:231:1;21996:208:0;22068:7;-1:-1:-1;;;;;22096:19:0;;22088:74;;;;-1:-1:-1;;;22088:74:0;;13540:2:1;22088:74:0;;;13522:21:1;13579:2;13559:18;;;13552:30;13618:34;13598:18;;;13591:62;-1:-1:-1;;;13669:18:1;;;13662:40;13719:19;;22088:74:0;13512:232:1;22088:74:0;-1:-1:-1;;;;;;22180:16:0;;;;;:9;:16;;;;;;;21996:208::o;43480:94::-;42902:6;;-1:-1:-1;;;;;42902:6:0;17125:10;43049:23;43041:68;;;;-1:-1:-1;;;43041:68:0;;;;;;;:::i;:::-;43545:21:::1;43563:1;43545:9;:21::i;:::-;43480:94::o:0;47305:1476::-;42902:6;;-1:-1:-1;;;;;42902:6:0;17125:10;43049:23;43041:68;;;;-1:-1:-1;;;43041:68:0;;;;;;;:::i;:::-;47399:7:::1;::::0;:28:::1;::::0;-1:-1:-1;;;47399:28:0;;-1:-1:-1;;;;;5865:32:1;;;47399:28:0::1;::::0;::::1;5847:51:1::0;47379:17:0::1;::::0;47399:7:::1;::::0;:17:::1;::::0;5820:18:1;;47399:28:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47458:7;::::0;:28:::1;::::0;-1:-1:-1;;;47458:28:0;;-1:-1:-1;;;;;5865:32:1;;;47458:28:0::1;::::0;::::1;5847:51:1::0;47379:48:0;;-1:-1:-1;47438:17:0::1;::::0;47458:7;;::::1;::::0;:17:::1;::::0;5820:18:1;;47458:28:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47438:48;;47517:1;47505:9;:13;:30;;;;;47534:1;47522:9;:13;47505:30;47497:84;;;::::0;-1:-1:-1;;;47497:84:0;;7742:2:1;47497:84:0::1;::::0;::::1;7724:21:1::0;7781:2;7761:18;;;7754:30;7820:34;7800:18;;;7793:62;-1:-1:-1;;;7871:18:1;;;7864:39;7920:19;;47497:84:0::1;7714:231:1::0;47497:84:0::1;47594:29;47640:9;47626:24;;;;;;-1:-1:-1::0;;;47626:24:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;47626:24:0::1;;47594:56;;47661:26;47705:9:::0;47700:302:::1;47720:9;47716:1;:13;47700:302;;;47773:7;::::0;:41:::1;::::0;-1:-1:-1;;;47773:41:0;;-1:-1:-1;;;;;6594:32:1;;;47773:41:0::1;::::0;::::1;6576:51:1::0;6643:18;;;6636:34;;;47751:19:0::1;::::0;47773:7:::1;::::0;:27:::1;::::0;6549:18:1;;47773:41:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47751:63;;47835:12;47848:11;47835:25;;;;;-1:-1:-1::0;;;47835:25:0::1;;;;;;;;;;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;::::1;;47831:160;;47925:11;47890:12;47903:18;47890:32;;;;;;-1:-1:-1::0;;;47890:32:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;:46;47955:20;::::1;::::0;::::1;:::i;:::-;;;;47831:160;-1:-1:-1::0;47731:3:0;::::1;::::0;::::1;:::i;:::-;;;;47700:302;;;;48043:1;48022:18;:22;48014:67;;;::::0;-1:-1:-1;;;48014:67:0;;16322:2:1;48014:67:0::1;::::0;::::1;16304:21:1::0;;;16341:18;;;16334:30;16400:34;16380:18;;;16373:62;16452:18;;48014:67:0::1;16294:182:1::0;48014:67:0::1;48092:17;48127:9:::0;48122:652:::1;48142:9;48138:1;:13;48122:652;;;48195:7;::::0;:41:::1;::::0;-1:-1:-1;;;48195:41:0;;-1:-1:-1;;;;;6594:32:1;;;48195:41:0::1;::::0;::::1;6576:51:1::0;6643:18;;;6636:34;;;48173:19:0::1;::::0;48195:7:::1;::::0;:27:::1;::::0;6549:18:1;;48195:41:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48173:63;;48257:12;48270:11;48257:25;;;;;-1:-1:-1::0;;;48257:25:0::1;;;;;;;;;;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;::::1;;:34;::::0;::::1;:60;;;48316:1;48295:18;:22;48257:60;48253:425;;;48338:20:::0;::::1;::::0;::::1;:::i;:::-;;;;48389:13;36407:10:::0;:17;;36319:113;48389:13:::1;48377:25;;48421:27;48427:9;48438;48421:5;:27::i;:::-;48495:4;48467:12;48480:11;48467:25;;;;;-1:-1:-1::0;;;48467:25:0::1;;;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;48567:4;48518:12;48531;48544:18;48531:32;;;;;;-1:-1:-1::0;;;48531:32:0::1;;;;;;;;;;;;;;;48518:46;;;;;-1:-1:-1::0;;;48518:46:0::1;;;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;48595:67;48602:11;48615:12;48628:18;48615:32;;;;;;-1:-1:-1::0;;;48615:32:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;48595:67:::1;::::0;;18914:25:1;;;18955:18;;;18948:34;48649:1:0::1;18998:18:1::0;;;18991:34;19056:2;19041:18;;19034:34;;;18901:3;18886:19;48595:67:0::1;;;;;;;48253:425;48698:23:::0;48694:69:::1;;48742:5;;;48694:69;-1:-1:-1::0;48153:3:0;::::1;::::0;::::1;:::i;:::-;;;;48122:652;;;;43120:1;;;;;47305:1476:::0;:::o;48789:113::-;42902:6;;-1:-1:-1;;;;;42902:6:0;17125:10;43049:23;43041:68;;;;-1:-1:-1;;;43041:68:0;;;;;;;:::i;:::-;48850:8:::1;::::0;;::::1;-1:-1:-1::0;;;48850:8:0;;::::1;::::0;::::1;48849:9;48838:20:::0;::::1;-1:-1:-1::0;;;;48838:20:0;;::::1;::::0;;;::::1;::::0;;;;48874::::1;::::0;::::1;::::0;::::1;::::0;48885:8;::::1;::::0;;::::1;6846:14:1::0;6839:22;6821:41;;6809:2;6794:18;;6776:92;48874:20:0::1;;;;;;;;48789:113::o:0;22741:104::-;22797:13;22830:7;22823:14;;;;;:::i;48910:2128::-;48971:8;;-1:-1:-1;;;48971:8:0;;;;48963:39;;;;-1:-1:-1;;;48963:39:0;;11294:2:1;48963:39:0;;;11276:21:1;11333:2;11313:18;;;11306:30;-1:-1:-1;;;11352:18:1;;;11345:48;11410:18;;48963:39:0;11266:168:1;48963:39:0;49035:7;;:29;;-1:-1:-1;;;49035:29:0;;49053:10;49035:29;;;5847:51:1;49015:17:0;;-1:-1:-1;;;;;49035:7:0;;:17;;5820:18:1;;49035:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49015:49;;49095:1;49083:9;:13;49075:55;;;;-1:-1:-1;;;49075:55:0;;12757:2:1;49075:55:0;;;12739:21:1;12796:2;12776:18;;;12769:30;12835:31;12815:18;;;12808:59;12884:18;;49075:55:0;12729:179:1;49075:55:0;49163:7;;:29;;-1:-1:-1;;;49163:29:0;;49181:10;49163:29;;;5847:51:1;49143:17:0;;-1:-1:-1;;;;;49163:7:0;;:17;;5820:18:1;;49163:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49143:49;;49223:1;49211:9;:13;49203:52;;;;-1:-1:-1;;;49203:52:0;;18340:2:1;49203:52:0;;;18322:21:1;18379:2;18359:18;;;18352:30;18418:28;18398:18;;;18391:56;18464:18;;49203:52:0;18312:176:1;49203:52:0;49292:11;;:33;;-1:-1:-1;;;49292:33:0;;49314:10;49292:33;;;5847:51:1;49268:21:0;;-1:-1:-1;;;;;49292:11:0;;:21;;5820:18:1;;49292:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49268:57;;49361:8;;49344:13;:25;;49336:93;;;;-1:-1:-1;;;49336:93:0;;;;;;;:::i;:::-;49454:1;49446:5;:9;49442:51;;;49480:1;49472:9;;49442:51;49505:29;49551:9;49537:24;;;;;;-1:-1:-1;;;49537:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49537:24:0;;49505:56;;49572:26;49616:9;49611:305;49631:9;49627:1;:13;49611:305;;;49686:7;;:42;;-1:-1:-1;;;49686:42:0;;49714:10;49686:42;;;6576:51:1;6643:18;;;6636:34;;;49664:19:0;;-1:-1:-1;;;;;49686:7:0;;:27;;6549:18:1;;49686:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49664:64;;49749:12;49762:11;49749:25;;;;;-1:-1:-1;;;49749:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;49745:160;;49839:11;49804:12;49817:18;49804:32;;;;;;-1:-1:-1;;;49804:32:0;;;;;;;;;;;;;;;;;;:46;49869:20;;;;:::i;:::-;;;;49745:160;-1:-1:-1;49642:3:0;;;;:::i;:::-;;;;49611:305;;;;49957:1;49936:18;:22;49928:67;;;;-1:-1:-1;;;49928:67:0;;16322:2:1;49928:67:0;;;16304:21:1;;;16341:18;;;16334:30;16400:34;16380:18;;;16373:62;16452:18;;49928:67:0;16294:182:1;49928:67:0;50008:14;50033:17;50068:9;50063:900;50083:9;50079:1;:13;50063:900;;;50136:8;;50120:13;:24;50116:70;;;50165:5;;50116:70;50224:7;;:42;;-1:-1:-1;;;50224:42:0;;50252:10;50224:42;;;6576:51:1;6643:18;;;6636:34;;;50202:19:0;;-1:-1:-1;;;;;50224:7:0;;:27;;6549:18:1;;50224:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50202:64;;50287:12;50300:11;50287:25;;;;;-1:-1:-1;;;50287:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;:60;;;50346:1;50325:18;:22;50287:60;50283:565;;;50368:20;;;;:::i;:::-;;;;50419:13;36407:10;:17;;36319:113;50419:13;50451:11;;50480:8;;50451:38;;-1:-1:-1;;;50451:38:0;;50468:10;50451:38;;;6576:51:1;6643:18;;;6636:34;;;;50407:25:0;;-1:-1:-1;;;;;;50451:11:0;;:16;;6549:18:1;;50451:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50508:30;50514:12;17125:10;;17045:98;50514:12;50528:9;50508:5;:30::i;:::-;50585:4;50557:12;50570:11;50557:25;;;;;-1:-1:-1;;;50557:25:0;;;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;50657:4;50608:12;50621;50634:18;50621:32;;;;;;-1:-1:-1;;;50621:32:0;;;;;;;;;;;;;;;50608:46;;;;;-1:-1:-1;;;50608:46:0;;;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;50697:8;;50680:25;;;;;:::i;:::-;;-1:-1:-1;50724:8:0;;;;:::i;:::-;;;;50758:74;50765:11;50778:12;50791:18;50778:32;;;;;;-1:-1:-1;;;50778:32:0;;;;;;;;;;;;;;;50812:8;;50822:9;50758:74;;;;;;;;18914:25:1;;;18970:2;18955:18;;18948:34;;;;19013:2;18998:18;;18991:34;19056:2;19041:18;;19034:34;18901:3;18886:19;;18868:206;50758:74:0;;;;;;;;50283:565;50878:5;50868:6;:15;:42;;;-1:-1:-1;50887:23:0;;50868:42;50864:88;;;50931:5;;;50864:88;-1:-1:-1;50094:3:0;;;;:::i;:::-;;;;50063:900;;;;50992:1;50983:6;:10;50975:55;;;;-1:-1:-1;;;50975:55:0;;10506:2:1;50975:55:0;;;10488:21:1;;;10525:18;;;10518:30;10584:34;10564:18;;;10557:62;10636:18;;50975:55:0;10478:182:1;50975:55:0;48910:2128;;;;;;;;:::o;24424:295::-;-1:-1:-1;;;;;24527:24:0;;17125:10;24527:24;;24519:62;;;;-1:-1:-1;;;24519:62:0;;10152:2:1;24519:62:0;;;10134:21:1;10191:2;10171:18;;;10164:30;10230:27;10210:18;;;10203:55;10275:18;;24519:62:0;10124:175:1;24519:62:0;17125:10;24594:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24594:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24594:53:0;;;;;;;;;;24663:48;;6821:41:1;;;24594:42:0;;17125:10;24663:48;;6794:18:1;24663:48:0;;;;;;;24424:295;;:::o;47037:260::-;47115:4;47148;47140:5;:12;47132:41;;;;-1:-1:-1;;;47132:41:0;;12412:2:1;47132:41:0;;;12394:21:1;12451:2;12431:18;;;12424:30;-1:-1:-1;;;12470:18:1;;;12463:46;12526:18;;47132:41:0;12384:166:1;47132:41:0;47190:3;:8;;47197:1;47190:8;47186:67;;;47222:12;47235:5;47222:19;;;;;-1:-1:-1;;;47222:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47215:26:0;;47186:67;47270:12;47283:5;47270:19;;;;;-1:-1:-1;;;47270:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47037:260:0;;;;:::o;25687:328::-;25862:41;17125:10;25895:7;25862:18;:41::i;:::-;25854:103;;;;-1:-1:-1;;;25854:103:0;;;;;;;:::i;:::-;25968:39;25982:4;25988:2;25992:7;26001:5;25968:13;:39::i;:::-;25687:328;;;;:::o;22916:334::-;27590:4;27614:16;;;:7;:16;;;;;;22989:13;;-1:-1:-1;;;;;27614:16:0;23015:76;;;;-1:-1:-1;;;23015:76:0;;15906:2:1;23015:76:0;;;15888:21:1;15945:2;15925:18;;;15918:30;15984:34;15964:18;;;15957:62;-1:-1:-1;;;16035:18:1;;;16028:45;16090:19;;23015:76:0;15878:237:1;23015:76:0;23104:21;23128:10;:8;:10::i;:::-;23104:34;;23180:1;23162:7;23156:21;:25;:86;;;;;;;;;;;;;;;;;23208:7;23217:18;:7;:16;:18::i;:::-;23191:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23156:86;23149:93;22916:334;-1:-1:-1;;;22916:334:0:o;43729:192::-;42902:6;;-1:-1:-1;;;;;42902:6:0;17125:10;43049:23;43041:68;;;;-1:-1:-1;;;43041:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43818:22:0;::::1;43810:73;;;::::0;-1:-1:-1;;;43810:73:0;;8983:2:1;43810:73:0::1;::::0;::::1;8965:21:1::0;9022:2;9002:18;;;8995:30;9061:34;9041:18;;;9034:62;-1:-1:-1;;;9112:18:1;;;9105:36;9158:19;;43810:73:0::1;8955:228:1::0;43810:73:0::1;43894:19;43904:8;43894:9;:19::i;21627:305::-:0;21729:4;-1:-1:-1;;;;;;21766:40:0;;-1:-1:-1;;;21766:40:0;;:105;;-1:-1:-1;;;;;;;21823:48:0;;-1:-1:-1;;;21823:48:0;21766:105;:158;;;-1:-1:-1;;;;;;;;;;20246:40:0;;;21888:36;20137:157;31507:174;31582:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31582:29:0;-1:-1:-1;;;;;31582:29:0;;;;;;;;:24;;31636:23;31582:24;31636:14;:23::i;:::-;-1:-1:-1;;;;;31627:46:0;;;;;;;;;;;31507:174;;:::o;27819:348::-;27912:4;27614:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27614:16:0;27929:73;;;;-1:-1:-1;;;27929:73:0;;11999:2:1;27929:73:0;;;11981:21:1;12038:2;12018:18;;;12011:30;12077:34;12057:18;;;12050:62;-1:-1:-1;;;12128:18:1;;;12121:42;12180:19;;27929:73:0;11971:234:1;27929:73:0;28013:13;28029:23;28044:7;28029:14;:23::i;:::-;28013:39;;28082:5;-1:-1:-1;;;;;28071:16:0;:7;-1:-1:-1;;;;;28071:16:0;;:51;;;;28115:7;-1:-1:-1;;;;;28091:31:0;:20;28103:7;28091:11;:20::i;:::-;-1:-1:-1;;;;;28091:31:0;;28071:51;:87;;;-1:-1:-1;;;;;;24911:25:0;;;24887:4;24911:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28126:32;28063:96;27819:348;-1:-1:-1;;;;27819:348:0:o;30811:578::-;30970:4;-1:-1:-1;;;;;30943:31:0;:23;30958:7;30943:14;:23::i;:::-;-1:-1:-1;;;;;30943:31:0;;30935:85;;;;-1:-1:-1;;;30935:85:0;;15496:2:1;30935:85:0;;;15478:21:1;15535:2;15515:18;;;15508:30;15574:34;15554:18;;;15547:62;-1:-1:-1;;;15625:18:1;;;15618:39;15674:19;;30935:85:0;15468:231:1;30935:85:0;-1:-1:-1;;;;;31039:16:0;;31031:65;;;;-1:-1:-1;;;31031:65:0;;9747:2:1;31031:65:0;;;9729:21:1;9786:2;9766:18;;;9759:30;9825:34;9805:18;;;9798:62;-1:-1:-1;;;9876:18:1;;;9869:34;9920:19;;31031:65:0;9719:226:1;31031:65:0;31109:39;31130:4;31136:2;31140:7;31109:20;:39::i;:::-;31213:29;31230:1;31234:7;31213:8;:29::i;:::-;-1:-1:-1;;;;;31255:15:0;;;;;;:9;:15;;;;;:20;;31274:1;;31255:15;:20;;31274:1;;31255:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31286:13:0;;;;;;:9;:13;;;;;:18;;31303:1;;31286:13;:18;;31303:1;;31286:18;:::i;:::-;;;;-1:-1:-1;;31315:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31315:21:0;-1:-1:-1;;;;;31315:21:0;;;;;;;;;31354:27;;31315:16;;31354:27;;;;;;;30811:578;;;:::o;10405:317::-;10520:6;10495:21;:31;;10487:73;;;;-1:-1:-1;;;10487:73:0;;11641:2:1;10487:73:0;;;11623:21:1;11680:2;11660:18;;;11653:30;11719:31;11699:18;;;11692:59;11768:18;;10487:73:0;11613:179:1;10487:73:0;10574:12;10592:9;-1:-1:-1;;;;;10592:14:0;10614:6;10592:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10573:52;;;10644:7;10636:78;;;;-1:-1:-1;;;10636:78:0;;10867:2:1;10636:78:0;;;10849:21:1;10906:2;10886:18;;;10879:30;10945:34;10925:18;;;10918:62;11016:28;10996:18;;;10989:56;11062:19;;10636:78:0;10839:248:1;43929:173:0;44004:6;;;-1:-1:-1;;;;;44021:17:0;;;-1:-1:-1;;;;;;44021:17:0;;;;;;;44054:40;;44004:6;;;44021:17;44004:6;;44054:40;;43985:16;;44054:40;43929:173;;:::o;29503:382::-;-1:-1:-1;;;;;29583:16:0;;29575:61;;;;-1:-1:-1;;;29575:61:0;;14361:2:1;29575:61:0;;;14343:21:1;;;14380:18;;;14373:30;14439:34;14419:18;;;14412:62;14491:18;;29575:61:0;14333:182:1;29575:61:0;27590:4;27614:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27614:16:0;:30;29647:58;;;;-1:-1:-1;;;29647:58:0;;9390:2:1;29647:58:0;;;9372:21:1;9429:2;9409:18;;;9402:30;9468;9448:18;;;9441:58;9516:18;;29647:58:0;9362:178:1;29647:58:0;29718:45;29747:1;29751:2;29755:7;29718:20;:45::i;:::-;-1:-1:-1;;;;;29776:13:0;;;;;;:9;:13;;;;;:18;;29793:1;;29776:13;:18;;29793:1;;29776:18;:::i;:::-;;;;-1:-1:-1;;29805:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29805:21:0;-1:-1:-1;;;;;29805:21:0;;;;;;;;29844:33;;29805:16;;;29844:33;;29805:16;;29844:33;29503:382;;:::o;26897:315::-;27054:28;27064:4;27070:2;27074:7;27054:9;:28::i;:::-;27101:48;27124:4;27130:2;27134:7;27143:5;27101:22;:48::i;:::-;27093:111;;;;-1:-1:-1;;;27093:111:0;;;;;;;:::i;45344:105::-;45396:13;45429:12;45422:19;;;;;:::i;17576:723::-;17632:13;17853:10;17849:53;;-1:-1:-1;;17880:10:0;;;;;;;;;;;;-1:-1:-1;;;17880:10:0;;;;;17576:723::o;17849:53::-;17927:5;17912:12;17968:78;17975:9;;17968:78;;18001:8;;;;:::i;:::-;;-1:-1:-1;18024:10:0;;-1:-1:-1;18032:2:0;18024:10;;:::i;:::-;;;17968:78;;;18056:19;18088:6;18078:17;;;;;;-1:-1:-1;;;18078:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18078:17:0;;18056:39;;18106:154;18113:10;;18106:154;;18140:11;18150:1;18140:11;;:::i;:::-;;-1:-1:-1;18209:10:0;18217:2;18209:5;:10;:::i;:::-;18196:24;;:2;:24;:::i;:::-;18183:39;;18166:6;18173;18166:14;;;;;;-1:-1:-1;;;18166:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;18166:56:0;;;;;;;;-1:-1:-1;18237:11:0;18246:2;18237:11;;:::i;:::-;;;18106:154;;37355:589;-1:-1:-1;;;;;37561:18:0;;37557:187;;37596:40;37628:7;38771:10;:17;;38744:24;;;;:15;:24;;;;;:44;;;38799:24;;;;;;;;;;;;38667:164;37596:40;37557:187;;;37666:2;-1:-1:-1;;;;;37658:10:0;:4;-1:-1:-1;;;;;37658:10:0;;37654:90;;37685:47;37718:4;37724:7;37685:32;:47::i;:::-;-1:-1:-1;;;;;37758:16:0;;37754:183;;37791:45;37828:7;37791:36;:45::i;37754:183::-;37864:4;-1:-1:-1;;;;;37858:10:0;:2;-1:-1:-1;;;;;37858:10:0;;37854:83;;37885:40;37913:2;37917:7;37885:27;:40::i;32246:799::-;32401:4;-1:-1:-1;;;;;32422:13:0;;9406:20;9454:8;32418:620;;32458:72;;-1:-1:-1;;;32458:72:0;;-1:-1:-1;;;;;32458:36:0;;;;;:72;;17125:10;;32509:4;;32515:7;;32524:5;;32458:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32458:72:0;;;;;;;;-1:-1:-1;;32458:72:0;;;;;;;;;;;;:::i;:::-;;;32454:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32700:13:0;;32696:272;;32743:60;;-1:-1:-1;;;32743:60:0;;;;;;;:::i;32696:272::-;32918:6;32912:13;32903:6;32899:2;32895:15;32888:38;32454:529;-1:-1:-1;;;;;;32581:51:0;-1:-1:-1;;;32581:51:0;;-1:-1:-1;32574:58:0;;32418:620;-1:-1:-1;33022:4:0;32246:799;;;;;;:::o;39458:988::-;39724:22;39774:1;39749:22;39766:4;39749:16;:22::i;:::-;:26;;;;:::i;:::-;39786:18;39807:26;;;:17;:26;;;;;;39724:51;;-1:-1:-1;39940:28:0;;;39936:328;;-1:-1:-1;;;;;40007:18:0;;39985:19;40007:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40058:30;;;;;;:44;;;40175:30;;:17;:30;;;;;:43;;;39936:328;-1:-1:-1;40360:26:0;;;;:17;:26;;;;;;;;40353:33;;;-1:-1:-1;;;;;40404:18:0;;;;;:12;:18;;;;;:34;;;;;;;40397:41;39458:988::o;40741:1079::-;41019:10;:17;40994:22;;41019:21;;41039:1;;41019:21;:::i;:::-;41051:18;41072:24;;;:15;:24;;;;;;41445:10;:26;;40994:46;;-1:-1:-1;41072:24:0;;40994:46;;41445:26;;;;-1:-1:-1;;;41445:26:0;;;;;;;;;;;;;;;;;41423:48;;41509:11;41484:10;41495;41484:22;;;;;;-1:-1:-1;;;41484:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;41589:28;;;:15;:28;;;;;;;:41;;;41761:24;;;;;41754:31;41796:10;:16;;;;;-1:-1:-1;;;41796:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;40741:1079;;;;:::o;38245:221::-;38330:14;38347:20;38364:2;38347:16;:20::i;:::-;-1:-1:-1;;;;;38378:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38423:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38245:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:194::-;4263:6;4316:2;4304:9;4295:7;4291:23;4287:32;4284:2;;;4337:6;4329;4322:22;4284:2;-1:-1:-1;4365:16:1;;4274:113;-1:-1:-1;4274:113:1:o;4392:357::-;4458:6;4466;4519:2;4507:9;4498:7;4494:23;4490:32;4487:2;;;4540:6;4532;4525:22;4487:2;4581:9;4568:23;4558:33;;4641:2;4630:9;4626:18;4613:32;4685:4;4678:5;4674:16;4667:5;4664:27;4654:2;;4710:6;4702;4695:22;4754:257;4795:3;4833:5;4827:12;4860:6;4855:3;4848:19;4876:63;4932:6;4925:4;4920:3;4916:14;4909:4;4902:5;4898:16;4876:63;:::i;:::-;4993:2;4972:15;-1:-1:-1;;4968:29:1;4959:39;;;;5000:4;4955:50;;4803:208;-1:-1:-1;;4803:208:1:o;5016:470::-;5195:3;5233:6;5227:13;5249:53;5295:6;5290:3;5283:4;5275:6;5271:17;5249:53;:::i;:::-;5365:13;;5324:16;;;;5387:57;5365:13;5324:16;5421:4;5409:17;;5387:57;:::i;:::-;5460:20;;5203:283;-1:-1:-1;;;;5203:283:1:o;5909:488::-;-1:-1:-1;;;;;6178:15:1;;;6160:34;;6230:15;;6225:2;6210:18;;6203:43;6277:2;6262:18;;6255:34;;;6325:3;6320:2;6305:18;;6298:31;;;6103:4;;6346:45;;6371:19;;6363:6;6346:45;:::i;:::-;6338:53;6112:285;-1:-1:-1;;;;;;6112:285:1:o;7316:219::-;7465:2;7454:9;7447:21;7428:4;7485:44;7525:2;7514:9;7510:18;7502:6;7485:44;:::i;8362:414::-;8564:2;8546:21;;;8603:2;8583:18;;;8576:30;8642:34;8637:2;8622:18;;8615:62;-1:-1:-1;;;8708:2:1;8693:18;;8686:48;8766:3;8751:19;;8536:240::o;14933:356::-;15135:2;15117:21;;;15154:18;;;15147:30;15213:34;15208:2;15193:18;;15186:62;15280:2;15265:18;;15107:182::o;16883:419::-;17085:2;17067:21;;;17124:2;17104:18;;;17097:30;17163:34;17158:2;17143:18;;17136:62;17234:25;17229:2;17214:18;;17207:53;17292:3;17277:19;;17057:245::o;17307:413::-;17509:2;17491:21;;;17548:2;17528:18;;;17521:30;17587:34;17582:2;17567:18;;17560:62;-1:-1:-1;;;17653:2:1;17638:18;;17631:47;17710:3;17695:19;;17481:239::o;19475:128::-;19515:3;19546:1;19542:6;19539:1;19536:13;19533:2;;;19552:18;;:::i;:::-;-1:-1:-1;19588:9:1;;19523:80::o;19608:120::-;19648:1;19674;19664:2;;19679:18;;:::i;:::-;-1:-1:-1;19713:9:1;;19654:74::o;19733:168::-;19773:7;19839:1;19835;19831:6;19827:14;19824:1;19821:21;19816:1;19809:9;19802:17;19798:45;19795:2;;;19846:18;;:::i;:::-;-1:-1:-1;19886:9:1;;19785:116::o;19906:125::-;19946:4;19974:1;19971;19968:8;19965:2;;;19979:18;;:::i;:::-;-1:-1:-1;20016:9:1;;19955:76::o;20036:258::-;20108:1;20118:113;20132:6;20129:1;20126:13;20118:113;;;20208:11;;;20202:18;20189:11;;;20182:39;20154:2;20147:10;20118:113;;;20249:6;20246:1;20243:13;20240:2;;;-1:-1:-1;;20284:1:1;20266:16;;20259:27;20089:205::o;20299:136::-;20338:3;20366:5;20356:2;;20375:18;;:::i;:::-;-1:-1:-1;;;20411:18:1;;20346:89::o;20440:380::-;20519:1;20515:12;;;;20562;;;20583:2;;20637:4;20629:6;20625:17;20615:27;;20583:2;20690;20682:6;20679:14;20659:18;20656:38;20653:2;;;20736:10;20731:3;20727:20;20724:1;20717:31;20771:4;20768:1;20761:15;20799:4;20796:1;20789:15;20653:2;;20495:325;;;:::o;20825:135::-;20864:3;-1:-1:-1;;20885:17:1;;20882:2;;;20905:18;;:::i;:::-;-1:-1:-1;20952:1:1;20941:13;;20872:88::o;20965:112::-;20997:1;21023;21013:2;;21028:18;;:::i;:::-;-1:-1:-1;21062:9:1;;21003:74::o;21082:127::-;21143:10;21138:3;21134:20;21131:1;21124:31;21174:4;21171:1;21164:15;21198:4;21195:1;21188:15;21214:127;21275:10;21270:3;21266:20;21263:1;21256:31;21306:4;21303:1;21296:15;21330:4;21327:1;21320:15;21346:127;21407:10;21402:3;21398:20;21395:1;21388:31;21438:4;21435:1;21428:15;21462:4;21459:1;21452:15;21478:131;-1:-1:-1;;;;;;21552:32:1;;21542:43;;21532:2;;21599:1;21596;21589:12

Swarm Source

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