ETH Price: $3,376.29 (-1.16%)
Gas: 10 Gwei

Token

Pangaens The Genesis (PTG)
 

Overview

Max Total Supply

4,558 PTG

Holders

1,602

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
525960.eth
Balance
2 PTG
0x97013995b4866f7279e2bf6dbd7677529b21a762
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PangaensTheGenesis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-10
*/

/* SPDX-License-Identifier: GPL-3.0

████████╗██╗░░██╗███████╗░░██████╗░░█████╗░███╗░░██╗░██████╗░░█████╗░███████╗███╗░░██╗░██████╗
╚══██╔══╝██║░░██║██╔════╝░░██╔══██╗██╔══██╗████╗░██║██╔════╝░██╔══██╗██╔════╝████╗░██║██╔════╝
░░░██║░░░███████║█████╗░░░░██████╔╝███████║██╔██╗██║██║░░██╗░███████║█████╗░░██╔██╗██║╚█████╗░
░░░██║░░░██╔══██║██╔══╝░░░░██╔═══╝░██╔══██║██║╚████║██║░░╚██╗██╔══██║██╔══╝░░██║╚████║░╚═══██╗
░░░██║░░░██║░░██║███████╗░░██║░░░░░██║░░██║██║░╚███║╚██████╔╝██║░░██║███████╗██║░╚███║██████╔╝
░░░╚═╝░░░╚═╝░░╚═╝╚══════╝░░╚═╝░░░░░╚═╝░░╚═╝╚═╝░░╚══╝░╚═════╝░╚═╝░░╚═╝╚══════╝╚═╝░░╚══╝╚═════╝░

*/

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


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

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

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


// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```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/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

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

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


// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
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/ERC721Enumerable.sol



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

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

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

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

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

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

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

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


/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}


// File: PangaensTheGenesis.sol

/**
 * @dev Contract to mint the Pangaens The Genesis NFT collection.
 *
 * The contract allows user to mint during both presale and the public sale
 *
 */
contract PangaensTheGenesis is ERC721Enumerable, Ownable, ReentrancyGuard {
    using Strings for uint256;
    using ECDSA for bytes32;

    // Mint constants
    uint256 public presaleCost = 0.05 ether;
    uint256 public publicSaleCost = 0.06 ether;
    uint256 public maxSupply = 8900;
    uint256 public specialMintMaxSupply = 200;
    uint256 public publicSaleMaxMintPerTx = 20;
    uint256 public presaleMaxMint = 10;
    
    // Mint flags
    bool public isPresaleActive = false;
    bool public isPublicSaleActive = false;
    bool public revealed = false;
    
    // URI for presale and public mint
    string private baseURI;
    string private preRevealURI;
    
    // Mapping presale mint address. Allows presale mint only once
    mapping (address => bool) private presaleClaimed; 
    
    // Presale signer address to verify WL
    address private presaleSigner; 

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     * Sets the baseURI, preRevealedURI & presaleSigner values to be used in the contract
     * 
     */
    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initPreRevealURI,
        address _initPresaleSigner
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setPreRevealURI(_initPreRevealURI);
        setPresaleSigner(_initPresaleSigner);
    }
  
    /**
     * @dev Public sale mint
     * 
     * @param _mintAmount Number of tokens to mint.
     */
    function mintPublicSale(
        uint256 _mintAmount
    ) external nonReentrant payable {
        require(isPublicSaleActive, "Sale is not active");
        require(_mintAmount > 0, "Must mint at least 1 NFT");
        require(_mintAmount <= publicSaleMaxMintPerTx, "Mint count exceeds limit for public sale");
        require((publicSaleCost * _mintAmount) <= msg.value, "ETH sent does not match required payment");
        
        // Mint
        _mintToUser(msg.sender, _mintAmount, maxSupply);
    }
    
    /**
     * @dev Presale mint
     * 
     * @param _hashMessage Must be a valid hash message.
     * @param _signature Must be a valid signature.
     * @param _mintAmount Number of tokens to mint.
     */
    function mintPresale(
        bytes32 _hashMessage, 
        bytes memory _signature,
        uint256 _mintAmount
    ) external nonReentrant payable {
        require(isPresaleActive, "Presale not active");
        require(!isPublicSaleActive, "Cannot mint while main sale is active");
        require(_mintAmount > 0, "Must mint at least 1 NFT");
        require(_mintAmount <= presaleMaxMint, "Mint count exceeds limit for presale");
        require((presaleCost * _mintAmount) <= msg.value, "ETH sent does not match required payment");
        require(!presaleClaimed[msg.sender], "User already minted in the presale with this address");
           
        // Verify signature
        require(_verifySigner(_hashMessage, _signature), "Invalid signature");
        
        // Verify hash sent is for the given sender address
        require(_verifyHash(_hashMessage, msg.sender), "Invalid hash for address");

        // Mint
        _mintToUser(msg.sender, _mintAmount, maxSupply);
        
        //Adds the user to the presale claimed map
        presaleClaimed[msg.sender] = true;
    }
    
    /**
     * @dev Verify signature sent is valid
     */
    function _verifySigner(bytes32 _hashMessage, bytes memory _signature) private view returns (bool) {
        return _hashMessage.recover(_signature) == presaleSigner;
    }
    
    /**
     * @dev Verify hash sent is for the user address
     */
    function _verifyHash(bytes32 hash, address _user) private pure returns(bool){
        return hash == keccak256(abi.encodePacked(_user)).toEthSignedMessageHash();
    }
    
    /**
     * @dev Mints to the given recipient. Internal mint function
     */
    function _mintToUser(address recipient, uint256 _mintAmount, uint256 maxMintSupply) private {
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= maxMintSupply, "Cannot mint more than available");
    
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(recipient, supply + i);
        }
    } 
    
    /**
     * @dev Returns the baseURI
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    /**
     * @dev Overrides the tokenURI method
     * 
     * @param tokenId ID of the token
     * @return string preRevealURI if not revealed else baseURI 
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
          _exists(tokenId),
          "ERC721Metadata: URI query for nonexistent token"
        );
    
        if(!revealed) {
            return preRevealURI;
        }
 
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : "";
    }
    
    
    /**
     * @dev Mint for giveaways. Used by onlyOwner 
     * 
     * @param _user Recipient user address
     * @param _mintAmount Number of tokens to mint
     */
    function specialMint(address _user, uint256 _mintAmount) external onlyOwner {
        require(_mintAmount > 0, "Must mint at least 1 NFT");
        
        // Mint
        _mintToUser(_user, _mintAmount, specialMintMaxSupply);
    }
    
    /**
     * @dev Allows to enable/disable public sale minting
     */
    function togglePublicSaleState() external onlyOwner {
        isPublicSaleActive = !isPublicSaleActive;
    }
    
    /**
     * @dev Allows to enable/disable presale minting
     */
    function togglePresaleState() external onlyOwner {
        isPresaleActive = !isPresaleActive;
    }
    
    /**
     * @dev Sets the new preRevealURI
     */
    function setPreRevealURI(string memory _newPreRevealURI) public onlyOwner {
        preRevealURI = _newPreRevealURI;
    }
  
    /**
     * @dev Sets the revealed flag
     */
    function reveal(bool _state) public onlyOwner {
        revealed = _state;
    }
  
    /**
     * @dev Sets the new baseURI
     */
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    /**
     * @dev Sets the new cost for public sale
     */
    function setPublicSaleCost(uint256 _newCost) public onlyOwner() {
        publicSaleCost = _newCost;
    }
  
    /**
     * @dev Sets the new cost for presale
     */
    function setPresaleCost(uint256 _newCost) public onlyOwner() {
        presaleCost = _newCost;
    }

    /**
     * @dev Sets the new maximum mint amount per transaction for public sale
     */
    function setPublicSaleMaxMintPerTx(uint256 _newmaxMintAmount) public onlyOwner() {
        publicSaleMaxMintPerTx = _newmaxMintAmount;
    }
  
    /**
     * @dev Sets the new maximum mint amount for presale
     */
    function setPresaleMaxMint(uint256 _newmaxMintAmount) public onlyOwner() {
        presaleMaxMint = _newmaxMintAmount;
    }
 
    /**
     * @dev Sets a new signature verifier for presale
     */
    function setPresaleSigner(address _signer) public onlyOwner {
        presaleSigner = _signer;
    }

    /**
     * @dev Returns whether a user has claimed in the presale
     */ 
    function getPresaleClaimed(address _user) external view returns (bool) {
        return presaleClaimed[_user];
    }

    /**
     * @dev Withdraws the funds from the contract 
     */ 
    function withdraw() public payable onlyOwner {
       (bool success, ) =  payable(msg.sender).call{value:address(this).balance }("");
       require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initPreRevealURI","type":"string"},{"internalType":"address","name":"_initPresaleSigner","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getPresaleClaimed","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":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","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":"bytes32","name":"_hashMessage","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleMaxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newPreRevealURI","type":"string"}],"name":"setPreRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setPresaleMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setPresaleSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setPublicSaleMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"specialMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"specialMintMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","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":"payable","type":"function"}]

608060405266b1a2bc2ec50000600c5566d529ae9e860000600d556122c4600e5560c8600f556014601055600a6011556012805462ffffff191690553480156200004857600080fd5b5060405162003322380380620033228339810160408190526200006b91620003d0565b8451859085906200008490600090602085019062000273565b5080516200009a90600190602084019062000273565b505050620000b7620000b1620000e860201b60201c565b620000ec565b6001600b55620000c7836200013e565b620000d282620001a6565b620000dd8162000206565b505050505062000500565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200018d5760405162461bcd60e51b815260206004820181905260248201526000805160206200330283398151915260448201526064015b60405180910390fd5b8051620001a290601390602084019062000273565b5050565b600a546001600160a01b03163314620001f15760405162461bcd60e51b8152602060048201819052602482015260008051602062003302833981519152604482015260640162000184565b8051620001a290601490602084019062000273565b600a546001600160a01b03163314620002515760405162461bcd60e51b8152602060048201819052602482015260008051602062003302833981519152604482015260640162000184565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b8280546200028190620004ad565b90600052602060002090601f016020900481019282620002a55760008555620002f0565b82601f10620002c057805160ff1916838001178555620002f0565b82800160010185558215620002f0579182015b82811115620002f0578251825591602001919060010190620002d3565b50620002fe92915062000302565b5090565b5b80821115620002fe576000815560010162000303565b600082601f8301126200032b57600080fd5b81516001600160401b0380821115620003485762000348620004ea565b604051601f8301601f19908116603f01168101908282118183101715620003735762000373620004ea565b816040528381526020925086838588010111156200039057600080fd5b600091505b83821015620003b4578582018301518183018401529082019062000395565b83821115620003c65760008385830101525b9695505050505050565b600080600080600060a08688031215620003e957600080fd5b85516001600160401b03808211156200040157600080fd5b6200040f89838a0162000319565b965060208801519150808211156200042657600080fd5b6200043489838a0162000319565b955060408801519150808211156200044b57600080fd5b6200045989838a0162000319565b945060608801519150808211156200047057600080fd5b506200047f8882890162000319565b608088015190935090506001600160a01b03811681146200049f57600080fd5b809150509295509295909350565b600181811c90821680620004c257607f821691505b60208210811415620004e457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612df280620005106000396000f3fe60806040526004361061025c5760003560e01c80636fecc24911610144578063acde7f70116100b6578063d5abeb011161007a578063d5abeb01146106c6578063df4305d2146106dc578063e985e9c5146106fc578063f285e69e14610745578063f2fde38b1461075a578063fe6ba0a21461077a57600080fd5b8063acde7f701461063b578063b27c6f2d14610650578063b88d4fde14610666578063b9f67b2514610686578063c87b56dd146106a657600080fd5b80638dbb7c06116101085780638dbb7c06146105905780638fdcf942146105b0578063940cd05b146105d0578063946ef42a146105f057806395d89b4114610606578063a22cb4651461061b57600080fd5b80636fecc2491461050a57806370a082311461052a578063715018a61461054a578063854444d61461055f5780638da5cb5b1461057257600080fd5b80633c0e8f2c116101dd57806351830227116101a1578063518302271461044457806355f804b3146104645780635a5e5d58146104845780635ee309661461049757806360d938dc146104d05780636352211e146104ea57600080fd5b80633c0e8f2c146103c65780633ccfd60b146103e657806342842e0e146103ee578063453afb0f1461040e5780634f6ccce71461042457600080fd5b80631e84c413116102245780631e84c4131461033157806323b872dd146103505780632a23d07d146103705780632a85db55146103865780632f745c59146103a657600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806318160ddd14610312575b600080fd5b34801561026d57600080fd5b5061028161027c3660046128e4565b610790565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107bb565b60405161028d9190612ac0565b3480156102c457600080fd5b506102d86102d3366004612967565b61084d565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b36600461284f565b6108e7565b005b34801561031e57600080fd5b506008545b60405190815260200161028d565b34801561033d57600080fd5b5060125461028190610100900460ff1681565b34801561035c57600080fd5b5061031061036b366004612781565b6109fd565b34801561037c57600080fd5b50610323600c5481565b34801561039257600080fd5b506103106103a136600461291e565b610a2e565b3480156103b257600080fd5b506103236103c136600461284f565b610a6f565b3480156103d257600080fd5b506103106103e1366004612967565b610b05565b610310610b34565b3480156103fa57600080fd5b50610310610409366004612781565b610bb6565b34801561041a57600080fd5b50610323600d5481565b34801561043057600080fd5b5061032361043f366004612967565b610bd1565b34801561045057600080fd5b506012546102819062010000900460ff1681565b34801561047057600080fd5b5061031061047f36600461291e565b610c64565b610310610492366004612967565b610ca1565b3480156104a357600080fd5b506102816104b2366004612733565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156104dc57600080fd5b506012546102819060ff1681565b3480156104f657600080fd5b506102d8610505366004612967565b610e0a565b34801561051657600080fd5b5061031061052536600461284f565b610e81565b34801561053657600080fd5b50610323610545366004612733565b610ed8565b34801561055657600080fd5b50610310610f5f565b61031061056d366004612894565b610f95565b34801561057e57600080fd5b50600a546001600160a01b03166102d8565b34801561059c57600080fd5b506103106105ab366004612967565b611308565b3480156105bc57600080fd5b506103106105cb366004612967565b611337565b3480156105dc57600080fd5b506103106105eb366004612879565b611366565b3480156105fc57600080fd5b5061032360115481565b34801561061257600080fd5b506102ab6113ac565b34801561062757600080fd5b50610310610636366004612825565b6113bb565b34801561064757600080fd5b50610310611480565b34801561065c57600080fd5b5061032360105481565b34801561067257600080fd5b506103106106813660046127bd565b6114c7565b34801561069257600080fd5b506103106106a1366004612733565b6114ff565b3480156106b257600080fd5b506102ab6106c1366004612967565b61154b565b3480156106d257600080fd5b50610323600e5481565b3480156106e857600080fd5b506103106106f7366004612967565b6116c8565b34801561070857600080fd5b5061028161071736600461274e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075157600080fd5b506103106116f7565b34801561076657600080fd5b50610310610775366004612733565b611735565b34801561078657600080fd5b50610323600f5481565b60006001600160e01b0319821663780e9d6360e01b14806107b557506107b5826117cd565b92915050565b6060600080546107ca90612cb8565b80601f01602080910402602001604051908101604052809291908181526020018280546107f690612cb8565b80156108435780601f1061081857610100808354040283529160200191610843565b820191906000526020600020905b81548152906001019060200180831161082657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108cb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108f282610e0a565b9050806001600160a01b0316836001600160a01b031614156109605760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108c2565b336001600160a01b038216148061097c575061097c8133610717565b6109ee5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108c2565b6109f8838361181d565b505050565b610a07338261188b565b610a235760405162461bcd60e51b81526004016108c290612bd9565b6109f8838383611982565b600a546001600160a01b03163314610a585760405162461bcd60e51b81526004016108c290612b5c565b8051610a6b9060149060208401906125d1565b5050565b6000610a7a83610ed8565b8210610adc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108c2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b2f5760405162461bcd60e51b81526004016108c290612b5c565b601055565b600a546001600160a01b03163314610b5e5760405162461bcd60e51b81526004016108c290612b5c565b604051600090339047908381818185875af1925050503d8060008114610ba0576040519150601f19603f3d011682016040523d82523d6000602084013e610ba5565b606091505b5050905080610bb357600080fd5b50565b6109f8838383604051806020016040528060008152506114c7565b6000610bdc60085490565b8210610c3f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108c2565b60088281548110610c5257610c52612d7a565b90600052602060002001549050919050565b600a546001600160a01b03163314610c8e5760405162461bcd60e51b81526004016108c290612b5c565b8051610a6b9060139060208401906125d1565b6002600b541415610cf45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c2565b6002600b55601254610100900460ff16610d455760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016108c2565b60008111610d655760405162461bcd60e51b81526004016108c290612b25565b601054811115610dc85760405162461bcd60e51b815260206004820152602860248201527f4d696e7420636f756e742065786365656473206c696d697420666f72207075626044820152676c69632073616c6560c01b60648201526084016108c2565b3481600d54610dd79190612c56565b1115610df55760405162461bcd60e51b81526004016108c290612b91565b610e023382600e54611b2d565b506001600b55565b6000818152600260205260408120546001600160a01b0316806107b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108c2565b600a546001600160a01b03163314610eab5760405162461bcd60e51b81526004016108c290612b5c565b60008111610ecb5760405162461bcd60e51b81526004016108c290612b25565b610a6b8282600f54611b2d565b60006001600160a01b038216610f435760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108c2565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f895760405162461bcd60e51b81526004016108c290612b5c565b610f936000611bc9565b565b6002600b541415610fe85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c2565b6002600b5560125460ff166110345760405162461bcd60e51b815260206004820152601260248201527150726573616c65206e6f742061637469766560701b60448201526064016108c2565b601254610100900460ff161561109a5760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f74206d696e74207768696c65206d61696e2073616c652069732061604482015264637469766560d81b60648201526084016108c2565b600081116110ba5760405162461bcd60e51b81526004016108c290612b25565b6011548111156111185760405162461bcd60e51b8152602060048201526024808201527f4d696e7420636f756e742065786365656473206c696d697420666f722070726560448201526373616c6560e01b60648201526084016108c2565b3481600c546111279190612c56565b11156111455760405162461bcd60e51b81526004016108c290612b91565b3360009081526015602052604090205460ff16156111c25760405162461bcd60e51b815260206004820152603460248201527f5573657220616c7265616479206d696e74656420696e207468652070726573616044820152736c6520776974682074686973206164647265737360601b60648201526084016108c2565b6111cc8383611c1b565b61120c5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b60448201526064016108c2565b604080513360601b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a3332000000006054840152607080840191909152835180840390910181526090909201909252805191012083146112d65760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964206861736820666f722061646472657373000000000000000060448201526064016108c2565b6112e33382600e54611b2d565b5050336000908152601560205260409020805460ff19166001908117909155600b5550565b600a546001600160a01b031633146113325760405162461bcd60e51b81526004016108c290612b5c565b600d55565b600a546001600160a01b031633146113615760405162461bcd60e51b81526004016108c290612b5c565b600c55565b600a546001600160a01b031633146113905760405162461bcd60e51b81526004016108c290612b5c565b60128054911515620100000262ff000019909216919091179055565b6060600180546107ca90612cb8565b6001600160a01b0382163314156114145760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108c2565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114aa5760405162461bcd60e51b81526004016108c290612b5c565b6012805461ff001981166101009182900460ff1615909102179055565b6114d1338361188b565b6114ed5760405162461bcd60e51b81526004016108c290612bd9565b6114f984848484611c45565b50505050565b600a546001600160a01b031633146115295760405162461bcd60e51b81526004016108c290612b5c565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260409020546060906001600160a01b03166115ca5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c2565b60125462010000900460ff1661166c57601480546115e790612cb8565b80601f016020809104026020016040519081016040528092919081815260200182805461161390612cb8565b80156116605780601f1061163557610100808354040283529160200191611660565b820191906000526020600020905b81548152906001019060200180831161164357829003601f168201915b50505050509050919050565b60006013805461167b90612cb8565b90501161169757604051806020016040528060008152506107b5565b60136116a283611c78565b6040516020016116b39291906129c8565b60405160208183030381529060405292915050565b600a546001600160a01b031633146116f25760405162461bcd60e51b81526004016108c290612b5c565b601155565b600a546001600160a01b031633146117215760405162461bcd60e51b81526004016108c290612b5c565b6012805460ff19811660ff90911615179055565b600a546001600160a01b0316331461175f5760405162461bcd60e51b81526004016108c290612b5c565b6001600160a01b0381166117c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c2565b610bb381611bc9565b60006001600160e01b031982166380ac58cd60e01b14806117fe57506001600160e01b03198216635b5e139f60e01b145b806107b557506301ffc9a760e01b6001600160e01b03198316146107b5565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061185282610e0a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108c2565b600061190f83610e0a565b9050806001600160a01b0316846001600160a01b0316148061194a5750836001600160a01b031661193f8461084d565b6001600160a01b0316145b8061197a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661199582610e0a565b6001600160a01b0316146119fd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108c2565b6001600160a01b038216611a5f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108c2565b611a6a838383611d76565b611a7560008261181d565b6001600160a01b0383166000908152600360205260408120805460019290611a9e908490612c75565b90915550506001600160a01b0382166000908152600360205260408120805460019290611acc908490612c2a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611b3860085490565b905081611b458483612c2a565b1115611b935760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74206d696e74206d6f7265207468616e20617661696c61626c650060448201526064016108c2565b60015b838111611bc257611bb085611bab8385612c2a565b611e2e565b80611bba81612cf3565b915050611b96565b5050505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6016546000906001600160a01b0316611c348484611e48565b6001600160a01b0316149392505050565b611c50848484611982565b611c5c84848484611e6c565b6114f95760405162461bcd60e51b81526004016108c290612ad3565b606081611c9c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cc65780611cb081612cf3565b9150611cbf9050600a83612c42565b9150611ca0565b60008167ffffffffffffffff811115611ce157611ce1612d90565b6040519080825280601f01601f191660200182016040528015611d0b576020820181803683370190505b5090505b841561197a57611d20600183612c75565b9150611d2d600a86612d0e565b611d38906030612c2a565b60f81b818381518110611d4d57611d4d612d7a565b60200101906001600160f81b031916908160001a905350611d6f600a86612c42565b9450611d0f565b6001600160a01b038316611dd157611dcc81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611df4565b816001600160a01b0316836001600160a01b031614611df457611df48382611f79565b6001600160a01b038216611e0b576109f881612016565b826001600160a01b0316826001600160a01b0316146109f8576109f882826120c5565b610a6b828260405180602001604052806000815250612109565b6000806000611e57858561213c565b91509150611e64816121ac565b509392505050565b60006001600160a01b0384163b15611f6e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611eb0903390899088908890600401612a83565b602060405180830381600087803b158015611eca57600080fd5b505af1925050508015611efa575060408051601f3d908101601f19168201909252611ef791810190612901565b60015b611f54573d808015611f28576040519150601f19603f3d011682016040523d82523d6000602084013e611f2d565b606091505b508051611f4c5760405162461bcd60e51b81526004016108c290612ad3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061197a565b506001949350505050565b60006001611f8684610ed8565b611f909190612c75565b600083815260076020526040902054909150808214611fe3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061202890600190612c75565b6000838152600960205260408120546008805493945090928490811061205057612050612d7a565b90600052602060002001549050806008838154811061207157612071612d7a565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120a9576120a9612d64565b6001900381819060005260206000200160009055905550505050565b60006120d083610ed8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6121138383612367565b6121206000848484611e6c565b6109f85760405162461bcd60e51b81526004016108c290612ad3565b6000808251604114156121735760208301516040840151606085015160001a612167878285856124b5565b945094505050506121a5565b82516040141561219d57602083015160408401516121928683836125a2565b9350935050506121a5565b506000905060025b9250929050565b60008160048111156121c0576121c0612d4e565b14156121c95750565b60018160048111156121dd576121dd612d4e565b141561222b5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016108c2565b600281600481111561223f5761223f612d4e565b141561228d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016108c2565b60038160048111156122a1576122a1612d4e565b14156122fa5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016108c2565b600481600481111561230e5761230e612d4e565b1415610bb35760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016108c2565b6001600160a01b0382166123bd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108c2565b6000818152600260205260409020546001600160a01b0316156124225760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108c2565b61242e60008383611d76565b6001600160a01b0382166000908152600360205260408120805460019290612457908490612c2a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156124ec5750600090506003612599565b8460ff16601b1415801561250457508460ff16601c14155b156125155750600090506004612599565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612569573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661259257600060019250925050612599565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016125c3878288856124b5565b935093505050935093915050565b8280546125dd90612cb8565b90600052602060002090601f0160209004810192826125ff5760008555612645565b82601f1061261857805160ff1916838001178555612645565b82800160010185558215612645579182015b8281111561264557825182559160200191906001019061262a565b50612651929150612655565b5090565b5b808211156126515760008155600101612656565b600067ffffffffffffffff8084111561268557612685612d90565b604051601f8501601f19908116603f011681019082821181831017156126ad576126ad612d90565b816040528093508581528686860111156126c657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146126f757600080fd5b919050565b803580151581146126f757600080fd5b600082601f83011261271d57600080fd5b61272c8383356020850161266a565b9392505050565b60006020828403121561274557600080fd5b61272c826126e0565b6000806040838503121561276157600080fd5b61276a836126e0565b9150612778602084016126e0565b90509250929050565b60008060006060848603121561279657600080fd5b61279f846126e0565b92506127ad602085016126e0565b9150604084013590509250925092565b600080600080608085870312156127d357600080fd5b6127dc856126e0565b93506127ea602086016126e0565b925060408501359150606085013567ffffffffffffffff81111561280d57600080fd5b6128198782880161270c565b91505092959194509250565b6000806040838503121561283857600080fd5b612841836126e0565b9150612778602084016126fc565b6000806040838503121561286257600080fd5b61286b836126e0565b946020939093013593505050565b60006020828403121561288b57600080fd5b61272c826126fc565b6000806000606084860312156128a957600080fd5b83359250602084013567ffffffffffffffff8111156128c757600080fd5b6128d38682870161270c565b925050604084013590509250925092565b6000602082840312156128f657600080fd5b813561272c81612da6565b60006020828403121561291357600080fd5b815161272c81612da6565b60006020828403121561293057600080fd5b813567ffffffffffffffff81111561294757600080fd5b8201601f8101841361295857600080fd5b61197a8482356020840161266a565b60006020828403121561297957600080fd5b5035919050565b60008151808452612998816020860160208601612c8c565b601f01601f19169290920160200192915050565b600081516129be818560208601612c8c565b9290920192915050565b600080845481600182811c9150808316806129e457607f831692505b6020808410821415612a0457634e487b7160e01b86526022600452602486fd5b818015612a185760018114612a2957612a56565b60ff19861689528489019650612a56565b60008b81526020902060005b86811015612a4e5781548b820152908501908301612a35565b505084890196505b505050505050612a7a612a6982866129ac565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ab690830184612980565b9695505050505050565b60208152600061272c6020830184612980565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526018908201527f4d757374206d696e74206174206c656173742031204e46540000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f4554482073656e7420646f6573206e6f74206d61746368207265717569726564604082015267081c185e5b595b9d60c21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612c3d57612c3d612d22565b500190565b600082612c5157612c51612d38565b500490565b6000816000190483118215151615612c7057612c70612d22565b500290565b600082821015612c8757612c87612d22565b500390565b60005b83811015612ca7578181015183820152602001612c8f565b838111156114f95750506000910152565b600181811c90821680612ccc57607f821691505b60208210811415612ced57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d0757612d07612d22565b5060010190565b600082612d1d57612d1d612d38565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bb357600080fdfea26469706673582212204ed322204592a558926b020e265dd338ca729631137b14af2c03f898ea3c058964736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000018000000000000000000000000072cfd809082518e0db8d40b8ff5452726e02ccea000000000000000000000000000000000000000000000000000000000000001450616e6761656e73205468652047656e65736973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000350544700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5170386175513750317467326a514a51467157355975587457357a785075624472793257455639595753754a2f00000000000000000000000000000000000000000000000000000000000000000000000000000000004668747470733a2f2f70616e6761656e732d312d70726572657665616c2e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f70726572657665616c2e6a736f6e0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80636fecc24911610144578063acde7f70116100b6578063d5abeb011161007a578063d5abeb01146106c6578063df4305d2146106dc578063e985e9c5146106fc578063f285e69e14610745578063f2fde38b1461075a578063fe6ba0a21461077a57600080fd5b8063acde7f701461063b578063b27c6f2d14610650578063b88d4fde14610666578063b9f67b2514610686578063c87b56dd146106a657600080fd5b80638dbb7c06116101085780638dbb7c06146105905780638fdcf942146105b0578063940cd05b146105d0578063946ef42a146105f057806395d89b4114610606578063a22cb4651461061b57600080fd5b80636fecc2491461050a57806370a082311461052a578063715018a61461054a578063854444d61461055f5780638da5cb5b1461057257600080fd5b80633c0e8f2c116101dd57806351830227116101a1578063518302271461044457806355f804b3146104645780635a5e5d58146104845780635ee309661461049757806360d938dc146104d05780636352211e146104ea57600080fd5b80633c0e8f2c146103c65780633ccfd60b146103e657806342842e0e146103ee578063453afb0f1461040e5780634f6ccce71461042457600080fd5b80631e84c413116102245780631e84c4131461033157806323b872dd146103505780632a23d07d146103705780632a85db55146103865780632f745c59146103a657600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806318160ddd14610312575b600080fd5b34801561026d57600080fd5b5061028161027c3660046128e4565b610790565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107bb565b60405161028d9190612ac0565b3480156102c457600080fd5b506102d86102d3366004612967565b61084d565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b36600461284f565b6108e7565b005b34801561031e57600080fd5b506008545b60405190815260200161028d565b34801561033d57600080fd5b5060125461028190610100900460ff1681565b34801561035c57600080fd5b5061031061036b366004612781565b6109fd565b34801561037c57600080fd5b50610323600c5481565b34801561039257600080fd5b506103106103a136600461291e565b610a2e565b3480156103b257600080fd5b506103236103c136600461284f565b610a6f565b3480156103d257600080fd5b506103106103e1366004612967565b610b05565b610310610b34565b3480156103fa57600080fd5b50610310610409366004612781565b610bb6565b34801561041a57600080fd5b50610323600d5481565b34801561043057600080fd5b5061032361043f366004612967565b610bd1565b34801561045057600080fd5b506012546102819062010000900460ff1681565b34801561047057600080fd5b5061031061047f36600461291e565b610c64565b610310610492366004612967565b610ca1565b3480156104a357600080fd5b506102816104b2366004612733565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156104dc57600080fd5b506012546102819060ff1681565b3480156104f657600080fd5b506102d8610505366004612967565b610e0a565b34801561051657600080fd5b5061031061052536600461284f565b610e81565b34801561053657600080fd5b50610323610545366004612733565b610ed8565b34801561055657600080fd5b50610310610f5f565b61031061056d366004612894565b610f95565b34801561057e57600080fd5b50600a546001600160a01b03166102d8565b34801561059c57600080fd5b506103106105ab366004612967565b611308565b3480156105bc57600080fd5b506103106105cb366004612967565b611337565b3480156105dc57600080fd5b506103106105eb366004612879565b611366565b3480156105fc57600080fd5b5061032360115481565b34801561061257600080fd5b506102ab6113ac565b34801561062757600080fd5b50610310610636366004612825565b6113bb565b34801561064757600080fd5b50610310611480565b34801561065c57600080fd5b5061032360105481565b34801561067257600080fd5b506103106106813660046127bd565b6114c7565b34801561069257600080fd5b506103106106a1366004612733565b6114ff565b3480156106b257600080fd5b506102ab6106c1366004612967565b61154b565b3480156106d257600080fd5b50610323600e5481565b3480156106e857600080fd5b506103106106f7366004612967565b6116c8565b34801561070857600080fd5b5061028161071736600461274e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075157600080fd5b506103106116f7565b34801561076657600080fd5b50610310610775366004612733565b611735565b34801561078657600080fd5b50610323600f5481565b60006001600160e01b0319821663780e9d6360e01b14806107b557506107b5826117cd565b92915050565b6060600080546107ca90612cb8565b80601f01602080910402602001604051908101604052809291908181526020018280546107f690612cb8565b80156108435780601f1061081857610100808354040283529160200191610843565b820191906000526020600020905b81548152906001019060200180831161082657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108cb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108f282610e0a565b9050806001600160a01b0316836001600160a01b031614156109605760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108c2565b336001600160a01b038216148061097c575061097c8133610717565b6109ee5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108c2565b6109f8838361181d565b505050565b610a07338261188b565b610a235760405162461bcd60e51b81526004016108c290612bd9565b6109f8838383611982565b600a546001600160a01b03163314610a585760405162461bcd60e51b81526004016108c290612b5c565b8051610a6b9060149060208401906125d1565b5050565b6000610a7a83610ed8565b8210610adc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108c2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b2f5760405162461bcd60e51b81526004016108c290612b5c565b601055565b600a546001600160a01b03163314610b5e5760405162461bcd60e51b81526004016108c290612b5c565b604051600090339047908381818185875af1925050503d8060008114610ba0576040519150601f19603f3d011682016040523d82523d6000602084013e610ba5565b606091505b5050905080610bb357600080fd5b50565b6109f8838383604051806020016040528060008152506114c7565b6000610bdc60085490565b8210610c3f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108c2565b60088281548110610c5257610c52612d7a565b90600052602060002001549050919050565b600a546001600160a01b03163314610c8e5760405162461bcd60e51b81526004016108c290612b5c565b8051610a6b9060139060208401906125d1565b6002600b541415610cf45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c2565b6002600b55601254610100900460ff16610d455760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016108c2565b60008111610d655760405162461bcd60e51b81526004016108c290612b25565b601054811115610dc85760405162461bcd60e51b815260206004820152602860248201527f4d696e7420636f756e742065786365656473206c696d697420666f72207075626044820152676c69632073616c6560c01b60648201526084016108c2565b3481600d54610dd79190612c56565b1115610df55760405162461bcd60e51b81526004016108c290612b91565b610e023382600e54611b2d565b506001600b55565b6000818152600260205260408120546001600160a01b0316806107b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108c2565b600a546001600160a01b03163314610eab5760405162461bcd60e51b81526004016108c290612b5c565b60008111610ecb5760405162461bcd60e51b81526004016108c290612b25565b610a6b8282600f54611b2d565b60006001600160a01b038216610f435760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108c2565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f895760405162461bcd60e51b81526004016108c290612b5c565b610f936000611bc9565b565b6002600b541415610fe85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c2565b6002600b5560125460ff166110345760405162461bcd60e51b815260206004820152601260248201527150726573616c65206e6f742061637469766560701b60448201526064016108c2565b601254610100900460ff161561109a5760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f74206d696e74207768696c65206d61696e2073616c652069732061604482015264637469766560d81b60648201526084016108c2565b600081116110ba5760405162461bcd60e51b81526004016108c290612b25565b6011548111156111185760405162461bcd60e51b8152602060048201526024808201527f4d696e7420636f756e742065786365656473206c696d697420666f722070726560448201526373616c6560e01b60648201526084016108c2565b3481600c546111279190612c56565b11156111455760405162461bcd60e51b81526004016108c290612b91565b3360009081526015602052604090205460ff16156111c25760405162461bcd60e51b815260206004820152603460248201527f5573657220616c7265616479206d696e74656420696e207468652070726573616044820152736c6520776974682074686973206164647265737360601b60648201526084016108c2565b6111cc8383611c1b565b61120c5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b60448201526064016108c2565b604080513360601b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a3332000000006054840152607080840191909152835180840390910181526090909201909252805191012083146112d65760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964206861736820666f722061646472657373000000000000000060448201526064016108c2565b6112e33382600e54611b2d565b5050336000908152601560205260409020805460ff19166001908117909155600b5550565b600a546001600160a01b031633146113325760405162461bcd60e51b81526004016108c290612b5c565b600d55565b600a546001600160a01b031633146113615760405162461bcd60e51b81526004016108c290612b5c565b600c55565b600a546001600160a01b031633146113905760405162461bcd60e51b81526004016108c290612b5c565b60128054911515620100000262ff000019909216919091179055565b6060600180546107ca90612cb8565b6001600160a01b0382163314156114145760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108c2565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114aa5760405162461bcd60e51b81526004016108c290612b5c565b6012805461ff001981166101009182900460ff1615909102179055565b6114d1338361188b565b6114ed5760405162461bcd60e51b81526004016108c290612bd9565b6114f984848484611c45565b50505050565b600a546001600160a01b031633146115295760405162461bcd60e51b81526004016108c290612b5c565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260409020546060906001600160a01b03166115ca5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c2565b60125462010000900460ff1661166c57601480546115e790612cb8565b80601f016020809104026020016040519081016040528092919081815260200182805461161390612cb8565b80156116605780601f1061163557610100808354040283529160200191611660565b820191906000526020600020905b81548152906001019060200180831161164357829003601f168201915b50505050509050919050565b60006013805461167b90612cb8565b90501161169757604051806020016040528060008152506107b5565b60136116a283611c78565b6040516020016116b39291906129c8565b60405160208183030381529060405292915050565b600a546001600160a01b031633146116f25760405162461bcd60e51b81526004016108c290612b5c565b601155565b600a546001600160a01b031633146117215760405162461bcd60e51b81526004016108c290612b5c565b6012805460ff19811660ff90911615179055565b600a546001600160a01b0316331461175f5760405162461bcd60e51b81526004016108c290612b5c565b6001600160a01b0381166117c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c2565b610bb381611bc9565b60006001600160e01b031982166380ac58cd60e01b14806117fe57506001600160e01b03198216635b5e139f60e01b145b806107b557506301ffc9a760e01b6001600160e01b03198316146107b5565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061185282610e0a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108c2565b600061190f83610e0a565b9050806001600160a01b0316846001600160a01b0316148061194a5750836001600160a01b031661193f8461084d565b6001600160a01b0316145b8061197a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661199582610e0a565b6001600160a01b0316146119fd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108c2565b6001600160a01b038216611a5f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108c2565b611a6a838383611d76565b611a7560008261181d565b6001600160a01b0383166000908152600360205260408120805460019290611a9e908490612c75565b90915550506001600160a01b0382166000908152600360205260408120805460019290611acc908490612c2a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611b3860085490565b905081611b458483612c2a565b1115611b935760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74206d696e74206d6f7265207468616e20617661696c61626c650060448201526064016108c2565b60015b838111611bc257611bb085611bab8385612c2a565b611e2e565b80611bba81612cf3565b915050611b96565b5050505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6016546000906001600160a01b0316611c348484611e48565b6001600160a01b0316149392505050565b611c50848484611982565b611c5c84848484611e6c565b6114f95760405162461bcd60e51b81526004016108c290612ad3565b606081611c9c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cc65780611cb081612cf3565b9150611cbf9050600a83612c42565b9150611ca0565b60008167ffffffffffffffff811115611ce157611ce1612d90565b6040519080825280601f01601f191660200182016040528015611d0b576020820181803683370190505b5090505b841561197a57611d20600183612c75565b9150611d2d600a86612d0e565b611d38906030612c2a565b60f81b818381518110611d4d57611d4d612d7a565b60200101906001600160f81b031916908160001a905350611d6f600a86612c42565b9450611d0f565b6001600160a01b038316611dd157611dcc81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611df4565b816001600160a01b0316836001600160a01b031614611df457611df48382611f79565b6001600160a01b038216611e0b576109f881612016565b826001600160a01b0316826001600160a01b0316146109f8576109f882826120c5565b610a6b828260405180602001604052806000815250612109565b6000806000611e57858561213c565b91509150611e64816121ac565b509392505050565b60006001600160a01b0384163b15611f6e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611eb0903390899088908890600401612a83565b602060405180830381600087803b158015611eca57600080fd5b505af1925050508015611efa575060408051601f3d908101601f19168201909252611ef791810190612901565b60015b611f54573d808015611f28576040519150601f19603f3d011682016040523d82523d6000602084013e611f2d565b606091505b508051611f4c5760405162461bcd60e51b81526004016108c290612ad3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061197a565b506001949350505050565b60006001611f8684610ed8565b611f909190612c75565b600083815260076020526040902054909150808214611fe3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061202890600190612c75565b6000838152600960205260408120546008805493945090928490811061205057612050612d7a565b90600052602060002001549050806008838154811061207157612071612d7a565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120a9576120a9612d64565b6001900381819060005260206000200160009055905550505050565b60006120d083610ed8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6121138383612367565b6121206000848484611e6c565b6109f85760405162461bcd60e51b81526004016108c290612ad3565b6000808251604114156121735760208301516040840151606085015160001a612167878285856124b5565b945094505050506121a5565b82516040141561219d57602083015160408401516121928683836125a2565b9350935050506121a5565b506000905060025b9250929050565b60008160048111156121c0576121c0612d4e565b14156121c95750565b60018160048111156121dd576121dd612d4e565b141561222b5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016108c2565b600281600481111561223f5761223f612d4e565b141561228d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016108c2565b60038160048111156122a1576122a1612d4e565b14156122fa5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016108c2565b600481600481111561230e5761230e612d4e565b1415610bb35760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016108c2565b6001600160a01b0382166123bd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108c2565b6000818152600260205260409020546001600160a01b0316156124225760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108c2565b61242e60008383611d76565b6001600160a01b0382166000908152600360205260408120805460019290612457908490612c2a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156124ec5750600090506003612599565b8460ff16601b1415801561250457508460ff16601c14155b156125155750600090506004612599565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612569573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661259257600060019250925050612599565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016125c3878288856124b5565b935093505050935093915050565b8280546125dd90612cb8565b90600052602060002090601f0160209004810192826125ff5760008555612645565b82601f1061261857805160ff1916838001178555612645565b82800160010185558215612645579182015b8281111561264557825182559160200191906001019061262a565b50612651929150612655565b5090565b5b808211156126515760008155600101612656565b600067ffffffffffffffff8084111561268557612685612d90565b604051601f8501601f19908116603f011681019082821181831017156126ad576126ad612d90565b816040528093508581528686860111156126c657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146126f757600080fd5b919050565b803580151581146126f757600080fd5b600082601f83011261271d57600080fd5b61272c8383356020850161266a565b9392505050565b60006020828403121561274557600080fd5b61272c826126e0565b6000806040838503121561276157600080fd5b61276a836126e0565b9150612778602084016126e0565b90509250929050565b60008060006060848603121561279657600080fd5b61279f846126e0565b92506127ad602085016126e0565b9150604084013590509250925092565b600080600080608085870312156127d357600080fd5b6127dc856126e0565b93506127ea602086016126e0565b925060408501359150606085013567ffffffffffffffff81111561280d57600080fd5b6128198782880161270c565b91505092959194509250565b6000806040838503121561283857600080fd5b612841836126e0565b9150612778602084016126fc565b6000806040838503121561286257600080fd5b61286b836126e0565b946020939093013593505050565b60006020828403121561288b57600080fd5b61272c826126fc565b6000806000606084860312156128a957600080fd5b83359250602084013567ffffffffffffffff8111156128c757600080fd5b6128d38682870161270c565b925050604084013590509250925092565b6000602082840312156128f657600080fd5b813561272c81612da6565b60006020828403121561291357600080fd5b815161272c81612da6565b60006020828403121561293057600080fd5b813567ffffffffffffffff81111561294757600080fd5b8201601f8101841361295857600080fd5b61197a8482356020840161266a565b60006020828403121561297957600080fd5b5035919050565b60008151808452612998816020860160208601612c8c565b601f01601f19169290920160200192915050565b600081516129be818560208601612c8c565b9290920192915050565b600080845481600182811c9150808316806129e457607f831692505b6020808410821415612a0457634e487b7160e01b86526022600452602486fd5b818015612a185760018114612a2957612a56565b60ff19861689528489019650612a56565b60008b81526020902060005b86811015612a4e5781548b820152908501908301612a35565b505084890196505b505050505050612a7a612a6982866129ac565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ab690830184612980565b9695505050505050565b60208152600061272c6020830184612980565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526018908201527f4d757374206d696e74206174206c656173742031204e46540000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f4554482073656e7420646f6573206e6f74206d61746368207265717569726564604082015267081c185e5b595b9d60c21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612c3d57612c3d612d22565b500190565b600082612c5157612c51612d38565b500490565b6000816000190483118215151615612c7057612c70612d22565b500290565b600082821015612c8757612c87612d22565b500390565b60005b83811015612ca7578181015183820152602001612c8f565b838111156114f95750506000910152565b600181811c90821680612ccc57607f821691505b60208210811415612ced57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d0757612d07612d22565b5060010190565b600082612d1d57612d1d612d38565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bb357600080fdfea26469706673582212204ed322204592a558926b020e265dd338ca729631137b14af2c03f898ea3c058964736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000018000000000000000000000000072cfd809082518e0db8d40b8ff5452726e02ccea000000000000000000000000000000000000000000000000000000000000001450616e6761656e73205468652047656e65736973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000350544700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5170386175513750317467326a514a51467157355975587457357a785075624472793257455639595753754a2f00000000000000000000000000000000000000000000000000000000000000000000000000000000004668747470733a2f2f70616e6761656e732d312d70726572657665616c2e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f70726572657665616c2e6a736f6e0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Pangaens The Genesis
Arg [1] : _symbol (string): PTG
Arg [2] : _initBaseURI (string): ipfs://QmQp8auQ7P1tg2jQJQFqW5YuXtW5zxPubDry2WEV9YWSuJ/
Arg [3] : _initPreRevealURI (string): https://pangaens-1-prereveal.s3.us-east-2.amazonaws.com/prereveal.json
Arg [4] : _initPresaleSigner (address): 0x72CFD809082518e0db8D40B8FF5452726E02cCEa

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 00000000000000000000000072cfd809082518e0db8d40b8ff5452726e02ccea
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [6] : 50616e6761656e73205468652047656e65736973000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 5054470000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d5170386175513750317467326a514a5146715735597558
Arg [11] : 7457357a785075624472793257455639595753754a2f00000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000046
Arg [13] : 68747470733a2f2f70616e6761656e732d312d70726572657665616c2e73332e
Arg [14] : 75732d656173742d322e616d617a6f6e6177732e636f6d2f7072657265766561
Arg [15] : 6c2e6a736f6e0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

56571:8002:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36380:224;;;;;;;;;;-1:-1:-1;36380:224:0;;;;;:::i;:::-;;:::i;:::-;;;8428:14:1;;8421:22;8403:41;;8391:2;8376:18;36380:224:0;;;;;;;;24272:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25831:221::-;;;;;;;;;;-1:-1:-1;25831:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7726:32:1;;;7708:51;;7696:2;7681:18;25831:221:0;7562:203:1;25354:411:0;;;;;;;;;;-1:-1:-1;25354:411:0;;;;;:::i;:::-;;:::i;:::-;;37020:113;;;;;;;;;;-1:-1:-1;37108:10:0;:17;37020:113;;;22470:25:1;;;22458:2;22443:18;37020:113:0;22324:177:1;57077:38:0;;;;;;;;;;-1:-1:-1;57077:38:0;;;;;;;;;;;26721:339;;;;;;;;;;-1:-1:-1;26721:339:0;;;;;:::i;:::-;;:::i;56739:39::-;;;;;;;;;;;;;;;;62684:124;;;;;;;;;;-1:-1:-1;62684:124:0;;;;;:::i;:::-;;:::i;36688:256::-;;;;;;;;;;-1:-1:-1;36688:256:0;;;;;:::i;:::-;;:::i;63578:142::-;;;;;;;;;;-1:-1:-1;63578:142:0;;;;;:::i;:::-;;:::i;64403:167::-;;;:::i;27131:185::-;;;;;;;;;;-1:-1:-1;27131:185:0;;;;;:::i;:::-;;:::i;56785:42::-;;;;;;;;;;;;;;;;37210:233;;;;;;;;;;-1:-1:-1;37210:233:0;;;;;:::i;:::-;;:::i;57122:28::-;;;;;;;;;;-1:-1:-1;57122:28:0;;;;;;;;;;;63016:104;;;;;;;;;;-1:-1:-1;63016:104:0;;;;;:::i;:::-;;:::i;58176:515::-;;;;;;:::i;:::-;;:::i;64206:118::-;;;;;;;;;;-1:-1:-1;64206:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;64295:21:0;64271:4;64295:21;;;:14;:21;;;;;;;;;64206:118;57035:35;;;;;;;;;;-1:-1:-1;57035:35:0;;;;;;;;23966:239;;;;;;;;;;-1:-1:-1;23966:239:0;;;;;:::i;:::-;;:::i;61992:238::-;;;;;;;;;;-1:-1:-1;61992:238:0;;;;;:::i;:::-;;:::i;23696:208::-;;;;;;;;;;-1:-1:-1;23696:208:0;;;;;:::i;:::-;;:::i;44169:94::-;;;;;;;;;;;;;:::i;58920:1119::-;;;;;;:::i;:::-;;:::i;43518:87::-;;;;;;;;;;-1:-1:-1;43591:6:0;;-1:-1:-1;;;;;43591:6:0;43518:87;;63193:108;;;;;;;;;;-1:-1:-1;63193:108:0;;;;;:::i;:::-;;:::i;63372:102::-;;;;;;;;;;-1:-1:-1;63372:102:0;;;;;:::i;:::-;;:::i;62872:82::-;;;;;;;;;;-1:-1:-1;62872:82:0;;;;;:::i;:::-;;:::i;56969:34::-;;;;;;;;;;;;;;;;24441:104;;;;;;;;;;;;;:::i;26124:295::-;;;;;;;;;;-1:-1:-1;26124:295:0;;;;;:::i;:::-;;:::i;62318:111::-;;;;;;;;;;;;;:::i;56920:42::-;;;;;;;;;;;;;;;;27387:328;;;;;;;;;;-1:-1:-1;27387:328:0;;;;;:::i;:::-;;:::i;64014:102::-;;;;;;;;;;-1:-1:-1;64014:102:0;;;;;:::i;:::-;;:::i;61341:458::-;;;;;;;;;;-1:-1:-1;61341:458:0;;;;;:::i;:::-;;:::i;56834:31::-;;;;;;;;;;;;;;;;63806:126;;;;;;;;;;-1:-1:-1;63806:126:0;;;;;:::i;:::-;;:::i;26490:164::-;;;;;;;;;;-1:-1:-1;26490:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26611:25:0;;;26587:4;26611:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26490:164;62513:102;;;;;;;;;;;;;:::i;44418:192::-;;;;;;;;;;-1:-1:-1;44418:192:0;;;;;:::i;:::-;;:::i;56872:41::-;;;;;;;;;;;;;;;;36380:224;36482:4;-1:-1:-1;;;;;;36506:50:0;;-1:-1:-1;;;36506:50:0;;:90;;;36560:36;36584:11;36560:23;:36::i;:::-;36499:97;36380:224;-1:-1:-1;;36380:224:0:o;24272:100::-;24326:13;24359:5;24352:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24272:100;:::o;25831:221::-;25907:7;29314:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29314:16:0;25927:73;;;;-1:-1:-1;;;25927:73:0;;18515:2:1;25927:73:0;;;18497:21:1;18554:2;18534:18;;;18527:30;18593:34;18573:18;;;18566:62;-1:-1:-1;;;18644:18:1;;;18637:42;18696:19;;25927:73:0;;;;;;;;;-1:-1:-1;26020:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26020:24:0;;25831:221::o;25354:411::-;25435:13;25451:23;25466:7;25451:14;:23::i;:::-;25435:39;;25499:5;-1:-1:-1;;;;;25493:11:0;:2;-1:-1:-1;;;;;25493:11:0;;;25485:57;;;;-1:-1:-1;;;25485:57:0;;20933:2:1;25485:57:0;;;20915:21:1;20972:2;20952:18;;;20945:30;21011:34;20991:18;;;20984:62;-1:-1:-1;;;21062:18:1;;;21055:31;21103:19;;25485:57:0;20731:397:1;25485:57:0;21881:10;-1:-1:-1;;;;;25577:21:0;;;;:62;;-1:-1:-1;25602:37:0;25619:5;21881:10;26490:164;:::i;25602:37::-;25555:168;;;;-1:-1:-1;;;25555:168:0;;16084:2:1;25555:168:0;;;16066:21:1;16123:2;16103:18;;;16096:30;16162:34;16142:18;;;16135:62;16233:26;16213:18;;;16206:54;16277:19;;25555:168:0;15882:420:1;25555:168:0;25736:21;25745:2;25749:7;25736:8;:21::i;:::-;25424:341;25354:411;;:::o;26721:339::-;26916:41;21881:10;26949:7;26916:18;:41::i;:::-;26908:103;;;;-1:-1:-1;;;26908:103:0;;;;;;;:::i;:::-;27024:28;27034:4;27040:2;27044:7;27024:9;:28::i;62684:124::-;43591:6;;-1:-1:-1;;;;;43591:6:0;21881:10;43738:23;43730:68;;;;-1:-1:-1;;;43730:68:0;;;;;;;:::i;:::-;62769:31;;::::1;::::0;:12:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;;62684:124:::0;:::o;36688:256::-;36785:7;36821:23;36838:5;36821:16;:23::i;:::-;36813:5;:31;36805:87;;;;-1:-1:-1;;;36805:87:0;;10402:2:1;36805:87:0;;;10384:21:1;10441:2;10421:18;;;10414:30;10480:34;10460:18;;;10453:62;-1:-1:-1;;;10531:18:1;;;10524:41;10582:19;;36805:87:0;10200:407:1;36805:87:0;-1:-1:-1;;;;;;36910:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36688:256::o;63578:142::-;43591:6;;-1:-1:-1;;;;;43591:6:0;21881:10;43738:23;43730:68;;;;-1:-1:-1;;;43730:68:0;;;;;;;:::i;:::-;63670:22:::1;:42:::0;63578:142::o;64403:167::-;43591:6;;-1:-1:-1;;;;;43591:6:0;21881:10;43738:23;43730:68;;;;-1:-1:-1;;;43730:68:0;;;;;;;:::i;:::-;64478:58:::1;::::0;64459:12:::1;::::0;64486:10:::1;::::0;64509:21:::1;::::0;64459:12;64478:58;64459:12;64478:58;64509:21;64486:10;64478:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64458:78;;;64554:7;64546:16;;;::::0;::::1;;64448:122;64403:167::o:0;27131:185::-;27269:39;27286:4;27292:2;27296:7;27269:39;;;;;;;;;;;;:16;:39::i;37210:233::-;37285:7;37321:30;37108:10;:17;;37020:113;37321:30;37313:5;:38;37305:95;;;;-1:-1:-1;;;37305:95:0;;21753:2:1;37305:95:0;;;21735:21:1;21792:2;21772:18;;;21765:30;21831:34;21811:18;;;21804:62;-1:-1:-1;;;21882:18:1;;;21875:42;21934:19;;37305:95:0;21551:408:1;37305:95:0;37418:10;37429:5;37418:17;;;;;;;;:::i;:::-;;;;;;;;;37411:24;;37210:233;;;:::o;63016:104::-;43591:6;;-1:-1:-1;;;;;43591:6:0;21881:10;43738:23;43730:68;;;;-1:-1:-1;;;43730:68:0;;;;;;;:::i;:::-;63091:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;58176:515::-:0;46451:1;47048:7;;:19;;47040:63;;;;-1:-1:-1;;;47040:63:0;;22166:2:1;47040:63:0;;;22148:21:1;22205:2;22185:18;;;22178:30;22244:33;22224:18;;;22217:61;22295:18;;47040:63:0;21964:355:1;47040:63:0;46451:1;47181:7;:18;58286::::1;::::0;::::1;::::0;::::1;;;58278:49;;;::::0;-1:-1:-1;;;58278:49:0;;14222:2:1;58278:49:0::1;::::0;::::1;14204:21:1::0;14261:2;14241:18;;;14234:30;-1:-1:-1;;;14280:18:1;;;14273:48;14338:18;;58278:49:0::1;14020:342:1::0;58278:49:0::1;58360:1;58346:11;:15;58338:52;;;;-1:-1:-1::0;;;58338:52:0::1;;;;;;;:::i;:::-;58424:22;;58409:11;:37;;58401:90;;;::::0;-1:-1:-1;;;58401:90:0;;19698:2:1;58401:90:0::1;::::0;::::1;19680:21:1::0;19737:2;19717:18;;;19710:30;19776:34;19756:18;;;19749:62;-1:-1:-1;;;19827:18:1;;;19820:38;19875:19;;58401:90:0::1;19496:404:1::0;58401:90:0::1;58544:9;58528:11;58511:14;;:28;;;;:::i;:::-;58510:43;;58502:96;;;;-1:-1:-1::0;;;58502:96:0::1;;;;;;;:::i;:::-;58636:47;58648:10;58660:11;58673:9;;58636:11;:47::i;:::-;-1:-1:-1::0;46407:1:0;47360:7;:22;58176:515::o;23966:239::-;24038:7;24074:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24074:16:0;24109:19;24101:73;;;;-1:-1:-1;;;24101:73:0;;17341:2:1;24101:73:0;;;17323:21:1;17380:2;17360:18;;;17353:30;17419:34;17399:18;;;17392:62;-1:-1:-1;;;17470:18:1;;;17463:39;17519:19;;24101:73:0;17139:405:1;61992:238:0;43591:6;;-1:-1:-1;;;;;43591:6:0;21881:10;43738:23;43730:68;;;;-1:-1:-1;;;43730:68:0;;;;;;;:::i;:::-;62101:1:::1;62087:11;:15;62079:52;;;;-1:-1:-1::0;;;62079:52:0::1;;;;;;;:::i;:::-;62169:53;62181:5;62188:11;62201:20;;62169:11;:53::i;23696:208::-:0;23768:7;-1:-1:-1;;;;;23796:19:0;;23788:74;;;;-1:-1:-1;;;23788:74:0;;16930:2:1;23788:74:0;;;16912:21:1;16969:2;16949:18;;;16942:30;17008:34;16988:18;;;16981:62;-1:-1:-1;;;17059:18:1;;;17052:40;17109:19;;23788:74:0;16728:406:1;23788:74:0;-1:-1:-1;;;;;;23880:16:0;;;;;:9;:16;;;;;;;23696:208::o;44169:94::-;43591:6;;-1:-1:-1;;;;;43591:6:0;21881:10;43738:23;43730:68;;;;-1:-1:-1;;;43730:68:0;;;;;;;:::i;:::-;44234:21:::1;44252:1;44234:9;:21::i;:::-;44169:94::o:0;58920:1119::-;46451:1;47048:7;;:19;;47040:63;;;;-1:-1:-1;;;47040:63:0;;22166:2:1;47040:63:0;;;22148:21:1;22205:2;22185:18;;;22178:30;22244:33;22224:18;;;22217:61;22295:18;;47040:63:0;21964:355:1;47040:63:0;46451:1;47181:7;:18;59093:15:::1;::::0;::::1;;59085:46;;;::::0;-1:-1:-1;;;59085:46:0;;13875:2:1;59085:46:0::1;::::0;::::1;13857:21:1::0;13914:2;13894:18;;;13887:30;-1:-1:-1;;;13933:18:1;;;13926:48;13991:18;;59085:46:0::1;13673:342:1::0;59085:46:0::1;59151:18;::::0;::::1;::::0;::::1;;;59150:19;59142:69;;;::::0;-1:-1:-1;;;59142:69:0;;11640:2:1;59142:69:0::1;::::0;::::1;11622:21:1::0;11679:2;11659:18;;;11652:30;11718:34;11698:18;;;11691:62;-1:-1:-1;;;11769:18:1;;;11762:35;11814:19;;59142:69:0::1;11438:401:1::0;59142:69:0::1;59244:1;59230:11;:15;59222:52;;;;-1:-1:-1::0;;;59222:52:0::1;;;;;;;:::i;:::-;59308:14;;59293:11;:29;;59285:78;;;::::0;-1:-1:-1;;;59285:78:0;;9637:2:1;59285:78:0::1;::::0;::::1;9619:21:1::0;9676:2;9656:18;;;9649:30;9715:34;9695:18;;;9688:62;-1:-1:-1;;;9766:18:1;;;9759:34;9810:19;;59285:78:0::1;9435:400:1::0;59285:78:0::1;59413:9;59397:11;59383;;:25;;;;:::i;:::-;59382:40;;59374:93;;;;-1:-1:-1::0;;;59374:93:0::1;;;;;;;:::i;:::-;59502:10;59487:26;::::0;;;:14:::1;:26;::::0;;;;;::::1;;59486:27;59478:92;;;::::0;-1:-1:-1;;;59478:92:0;;16509:2:1;59478:92:0::1;::::0;::::1;16491:21:1::0;16548:2;16528:18;;;16521:30;16587:34;16567:18;;;16560:62;-1:-1:-1;;;16638:18:1;;;16631:50;16698:19;;59478:92:0::1;16307:416:1::0;59478:92:0::1;59631:39;59645:12;59659:10;59631:13;:39::i;:::-;59623:69;;;::::0;-1:-1:-1;;;59623:69:0;;14569:2:1;59623:69:0::1;::::0;::::1;14551:21:1::0;14608:2;14588:18;;;14581:30;-1:-1:-1;;;14627:18:1;;;14620:47;14684:18;;59623:69:0::1;14367:341:1::0;59623:69:0::1;60482:23:::0;;;59808:10:::1;5576:2:1::0;5572:15;-1:-1:-1;;5568:53:1;60482:23:0;;;;5556:66:1;;;;60482:23:0;;;;;;;;;5638:12:1;;;60482:23:0;;60472:34;;;;;;7209:66:1;55752:58:0;;;7197:79:1;7292:12;;;;7285:28;;;;55752:58:0;;;;;;;;;;7329:12:1;;;;55752:58:0;;;55742:69;;;;;60464:67;;59774:74:::1;;;::::0;-1:-1:-1;;;59774:74:0;;12763:2:1;59774:74:0::1;::::0;::::1;12745:21:1::0;12802:2;12782:18;;;12775:30;12841:26;12821:18;;;12814:54;12885:18;;59774:74:0::1;12561:348:1::0;59774:74:0::1;59878:47;59890:10;59902:11;59915:9;;59878:11;:47::i;:::-;-1:-1:-1::0;;60013:10:0::1;59998:26;::::0;;;:14:::1;:26;::::0;;;;:33;;-1:-1:-1;;59998:33:0::1;60027:4;59998:33:::0;;::::1;::::0;;;47360:7;:22;-1:-1:-1;58920:1119:0:o;63193:108::-;43591:6;;-1:-1:-1;;;;;43591:6:0;21881:10;43738:23;43730:68;;;;-1:-1:-1;;;43730:68:0;;;;;;;:::i;:::-;63268:14:::1;:25:::0;63193:108::o;63372:102::-;43591:6;;-1:-1:-1;;;;;43591:6:0;21881:10;43738:23;43730:68;;;;-1:-1:-1;;;43730:68:0;;;;;;;:::i;:::-;63444:11:::1;:22:::0;63372:102::o;62872:82::-;43591:6;;-1:-1:-1;;;;;43591:6:0;21881:10;43738:23;43730:68;;;;-1:-1:-1;;;43730:68:0;;;;;;;:::i;:::-;62929:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;62929:17:0;;::::1;::::0;;;::::1;::::0;;62872:82::o;24441:104::-;24497:13;24530:7;24523:14;;;;;:::i;26124:295::-;-1:-1:-1;;;;;26227:24:0;;21881:10;26227:24;;26219:62;;;;-1:-1:-1;;;26219:62:0;;13521:2:1;26219:62:0;;;13503:21:1;13560:2;13540:18;;;13533:30;13599:27;13579:18;;;13572:55;13644:18;;26219:62:0;13319:349:1;26219:62:0;21881:10;26294:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26294:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26294:53:0;;;;;;;;;;26363:48;;8403:41:1;;;26294:42:0;;21881:10;26363:48;;8376:18:1;26363:48:0;;;;;;;26124:295;;:::o;62318:111::-;43591:6;;-1:-1:-1;;;;;43591:6:0;21881:10;43738:23;43730:68;;;;-1:-1:-1;;;43730:68:0;;;;;;;:::i;:::-;62403:18:::1;::::0;;-1:-1:-1;;62381:40:0;::::1;62403:18;::::0;;;::::1;;;62402:19;62381:40:::0;;::::1;;::::0;;62318:111::o;27387:328::-;27562:41;21881:10;27595:7;27562:18;:41::i;:::-;27554:103;;;;-1:-1:-1;;;27554:103:0;;;;;;;:::i;:::-;27668:39;27682:4;27688:2;27692:7;27701:5;27668:13;:39::i;:::-;27387:328;;;;:::o;64014:102::-;43591:6;;-1:-1:-1;;;;;43591:6:0;21881:10;43738:23;43730:68;;;;-1:-1:-1;;;43730:68:0;;;;;;;:::i;:::-;64085:13:::1;:23:::0;;-1:-1:-1;;;;;;64085:23:0::1;-1:-1:-1::0;;;;;64085:23:0;;;::::1;::::0;;;::::1;::::0;;64014:102::o;61341:458::-;29290:4;29314:16;;;:7;:16;;;;;;61459:13;;-1:-1:-1;;;;;29314:16:0;61490:109;;;;-1:-1:-1;;;61490:109:0;;20517:2:1;61490:109:0;;;20499:21:1;20556:2;20536:18;;;20529:30;20595:34;20575:18;;;20568:62;-1:-1:-1;;;20646:18:1;;;20639:45;20701:19;;61490:109:0;20315:411:1;61490:109:0;61620:8;;;;;;;61616:60;;61652:12;61645:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61341:458;;;:::o;61616:60::-;61720:1;61702:7;61696:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;61748:7;61757:18;:7;:16;:18::i;:::-;61731:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61689:102;61341:458;-1:-1:-1;;61341:458:0:o;63806:126::-;43591:6;;-1:-1:-1;;;;;43591:6:0;21881:10;43738:23;43730:68;;;;-1:-1:-1;;;43730:68:0;;;;;;;:::i;:::-;63890:14:::1;:34:::0;63806:126::o;62513:102::-;43591:6;;-1:-1:-1;;;;;43591:6:0;21881:10;43738:23;43730:68;;;;-1:-1:-1;;;43730:68:0;;;;;;;:::i;:::-;62592:15:::1;::::0;;-1:-1:-1;;62573:34:0;::::1;62592:15;::::0;;::::1;62591:16;62573:34;::::0;;62513:102::o;44418:192::-;43591:6;;-1:-1:-1;;;;;43591:6:0;21881:10;43738:23;43730:68;;;;-1:-1:-1;;;43730:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44507:22:0;::::1;44499:73;;;::::0;-1:-1:-1;;;44499:73:0;;11233:2:1;44499:73:0::1;::::0;::::1;11215:21:1::0;11272:2;11252:18;;;11245:30;11311:34;11291:18;;;11284:62;-1:-1:-1;;;11362:18:1;;;11355:36;11408:19;;44499:73:0::1;11031:402:1::0;44499:73:0::1;44583:19;44593:8;44583:9;:19::i;23327:305::-:0;23429:4;-1:-1:-1;;;;;;23466:40:0;;-1:-1:-1;;;23466:40:0;;:105;;-1:-1:-1;;;;;;;23523:48:0;;-1:-1:-1;;;23523:48:0;23466:105;:158;;;-1:-1:-1;;;;;;;;;;9267:40:0;;;23588:36;9158:157;33207:174;33282:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33282:29:0;-1:-1:-1;;;;;33282:29:0;;;;;;;;:24;;33336:23;33282:24;33336:14;:23::i;:::-;-1:-1:-1;;;;;33327:46:0;;;;;;;;;;;33207:174;;:::o;29519:348::-;29612:4;29314:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29314:16:0;29629:73;;;;-1:-1:-1;;;29629:73:0;;15318:2:1;29629:73:0;;;15300:21:1;15357:2;15337:18;;;15330:30;15396:34;15376:18;;;15369:62;-1:-1:-1;;;15447:18:1;;;15440:42;15499:19;;29629:73:0;15116:408:1;29629:73:0;29713:13;29729:23;29744:7;29729:14;:23::i;:::-;29713:39;;29782:5;-1:-1:-1;;;;;29771:16:0;:7;-1:-1:-1;;;;;29771:16:0;;:51;;;;29815:7;-1:-1:-1;;;;;29791:31:0;:20;29803:7;29791:11;:20::i;:::-;-1:-1:-1;;;;;29791:31:0;;29771:51;:87;;;-1:-1:-1;;;;;;26611:25:0;;;26587:4;26611:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29826:32;29763:96;29519:348;-1:-1:-1;;;;29519:348:0:o;32511:578::-;32670:4;-1:-1:-1;;;;;32643:31:0;:23;32658:7;32643:14;:23::i;:::-;-1:-1:-1;;;;;32643:31:0;;32635:85;;;;-1:-1:-1;;;32635:85:0;;20107:2:1;32635:85:0;;;20089:21:1;20146:2;20126:18;;;20119:30;20185:34;20165:18;;;20158:62;-1:-1:-1;;;20236:18:1;;;20229:39;20285:19;;32635:85:0;19905:405:1;32635:85:0;-1:-1:-1;;;;;32739:16:0;;32731:65;;;;-1:-1:-1;;;32731:65:0;;13116:2:1;32731:65:0;;;13098:21:1;13155:2;13135:18;;;13128:30;13194:34;13174:18;;;13167:62;-1:-1:-1;;;13245:18:1;;;13238:34;13289:19;;32731:65:0;12914:400:1;32731:65:0;32809:39;32830:4;32836:2;32840:7;32809:20;:39::i;:::-;32913:29;32930:1;32934:7;32913:8;:29::i;:::-;-1:-1:-1;;;;;32955:15:0;;;;;;:9;:15;;;;;:20;;32974:1;;32955:15;:20;;32974:1;;32955:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32986:13:0;;;;;;:9;:13;;;;;:18;;33003:1;;32986:13;:18;;33003:1;;32986:18;:::i;:::-;;;;-1:-1:-1;;33015:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33015:21:0;-1:-1:-1;;;;;33015:21:0;;;;;;;;;33054:27;;33015:16;;33054:27;;;;;;;32511:578;;;:::o;60635:351::-;60738:14;60755:13;37108:10;:17;;37020:113;60755:13;60738:30;-1:-1:-1;60811:13:0;60787:20;60796:11;60738:30;60787:20;:::i;:::-;:37;;60779:81;;;;-1:-1:-1;;;60779:81:0;;12046:2:1;60779:81:0;;;12028:21:1;12085:2;12065:18;;;12058:30;12124:33;12104:18;;;12097:61;12175:18;;60779:81:0;11844:355:1;60779:81:0;60894:1;60877:102;60902:11;60897:1;:16;60877:102;;60935:32;60945:9;60956:10;60965:1;60956:6;:10;:::i;:::-;60935:9;:32::i;:::-;60915:3;;;;:::i;:::-;;;;60877:102;;;;60727:259;60635:351;;;:::o;44618:173::-;44693:6;;;-1:-1:-1;;;;;44710:17:0;;;-1:-1:-1;;;;;;44710:17:0;;;;;;;44743:40;;44693:6;;;44710:17;44693:6;;44743:40;;44674:16;;44743:40;44663:128;44618:173;:::o;60113:::-;60265:13;;60205:4;;-1:-1:-1;;;;;60265:13:0;60229:32;:12;60250:10;60229:20;:32::i;:::-;-1:-1:-1;;;;;60229:49:0;;;60113:173;-1:-1:-1;;;60113:173:0:o;28597:315::-;28754:28;28764:4;28770:2;28774:7;28754:9;:28::i;:::-;28801:48;28824:4;28830:2;28834:7;28843:5;28801:22;:48::i;:::-;28793:111;;;;-1:-1:-1;;;28793:111:0;;;;;;;:::i;9633:723::-;9689:13;9910:10;9906:53;;-1:-1:-1;;9937:10:0;;;;;;;;;;;;-1:-1:-1;;;9937:10:0;;;;;9633:723::o;9906:53::-;9984:5;9969:12;10025:78;10032:9;;10025:78;;10058:8;;;;:::i;:::-;;-1:-1:-1;10081:10:0;;-1:-1:-1;10089:2:0;10081:10;;:::i;:::-;;;10025:78;;;10113:19;10145:6;10135:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10135:17:0;;10113:39;;10163:154;10170:10;;10163:154;;10197:11;10207:1;10197:11;;:::i;:::-;;-1:-1:-1;10266:10:0;10274:2;10266:5;:10;:::i;:::-;10253:24;;:2;:24;:::i;:::-;10240:39;;10223:6;10230;10223:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10223:56:0;;;;;;;;-1:-1:-1;10294:11:0;10303:2;10294:11;;:::i;:::-;;;10163:154;;38056:589;-1:-1:-1;;;;;38262:18:0;;38258:187;;38297:40;38329:7;39472:10;:17;;39445:24;;;;:15;:24;;;;;:44;;;39500:24;;;;;;;;;;;;39368:164;38297:40;38258:187;;;38367:2;-1:-1:-1;;;;;38359:10:0;:4;-1:-1:-1;;;;;38359:10:0;;38355:90;;38386:47;38419:4;38425:7;38386:32;:47::i;:::-;-1:-1:-1;;;;;38459:16:0;;38455:183;;38492:45;38529:7;38492:36;:45::i;38455:183::-;38565:4;-1:-1:-1;;;;;38559:10:0;:2;-1:-1:-1;;;;;38559:10:0;;38555:83;;38586:40;38614:2;38618:7;38586:27;:40::i;30209:110::-;30285:26;30295:2;30299:7;30285:26;;;;;;;;;;;;:9;:26::i;51701:231::-;51779:7;51800:17;51819:18;51841:27;51852:4;51858:9;51841:10;:27::i;:::-;51799:69;;;;51879:18;51891:5;51879:11;:18::i;:::-;-1:-1:-1;51915:9:0;51701:231;-1:-1:-1;;;51701:231:0:o;33946:799::-;34101:4;-1:-1:-1;;;;;34122:13:0;;12481:20;12529:8;34118:620;;34158:72;;-1:-1:-1;;;34158:72:0;;-1:-1:-1;;;;;34158:36:0;;;;;:72;;21881:10;;34209:4;;34215:7;;34224:5;;34158:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34158:72:0;;;;;;;;-1:-1:-1;;34158:72:0;;;;;;;;;;;;:::i;:::-;;;34154:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34400:13:0;;34396:272;;34443:60;;-1:-1:-1;;;34443:60:0;;;;;;;:::i;34396:272::-;34618:6;34612:13;34603:6;34599:2;34595:15;34588:38;34154:529;-1:-1:-1;;;;;;34281:51:0;-1:-1:-1;;;34281:51:0;;-1:-1:-1;34274:58:0;;34118:620;-1:-1:-1;34722:4:0;33946:799;;;;;;:::o;40159:988::-;40425:22;40475:1;40450:22;40467:4;40450:16;:22::i;:::-;:26;;;;:::i;:::-;40487:18;40508:26;;;:17;:26;;;;;;40425:51;;-1:-1:-1;40641:28:0;;;40637:328;;-1:-1:-1;;;;;40708:18:0;;40686:19;40708:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40759:30;;;;;;:44;;;40876:30;;:17;:30;;;;;:43;;;40637:328;-1:-1:-1;41061:26:0;;;;:17;:26;;;;;;;;41054:33;;;-1:-1:-1;;;;;41105:18:0;;;;;:12;:18;;;;;:34;;;;;;;41098:41;40159:988::o;41442:1079::-;41720:10;:17;41695:22;;41720:21;;41740:1;;41720:21;:::i;:::-;41752:18;41773:24;;;:15;:24;;;;;;42146:10;:26;;41695:46;;-1:-1:-1;41773:24:0;;41695:46;;42146:26;;;;;;:::i;:::-;;;;;;;;;42124:48;;42210:11;42185:10;42196;42185:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42290:28;;;:15;:28;;;;;;;:41;;;42462:24;;;;;42455:31;42497:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41513:1008;;;41442:1079;:::o;38946:221::-;39031:14;39048:20;39065:2;39048:16;:20::i;:::-;-1:-1:-1;;;;;39079:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39124:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38946:221:0:o;30546:321::-;30676:18;30682:2;30686:7;30676:5;:18::i;:::-;30727:54;30758:1;30762:2;30766:7;30775:5;30727:22;:54::i;:::-;30705:154;;;;-1:-1:-1;;;30705:154:0;;;;;;;:::i;49591:1308::-;49672:7;49681:12;49906:9;:16;49926:2;49906:22;49902:990;;;50202:4;50187:20;;50181:27;50252:4;50237:20;;50231:27;50310:4;50295:20;;50289:27;49945:9;50281:36;50353:25;50364:4;50281:36;50181:27;50231;50353:10;:25::i;:::-;50346:32;;;;;;;;;49902:990;50400:9;:16;50420:2;50400:22;50396:496;;;50675:4;50660:20;;50654:27;50726:4;50711:20;;50705:27;50768:23;50779:4;50654:27;50705;50768:10;:23::i;:::-;50761:30;;;;;;;;50396:496;-1:-1:-1;50840:1:0;;-1:-1:-1;50844:35:0;50396:496;49591:1308;;;;;:::o;47862:643::-;47940:20;47931:5;:29;;;;;;;;:::i;:::-;;47927:571;;;47862:643;:::o;47927:571::-;48038:29;48029:5;:38;;;;;;;;:::i;:::-;;48025:473;;;48084:34;;-1:-1:-1;;;48084:34:0;;9284:2:1;48084:34:0;;;9266:21:1;9323:2;9303:18;;;9296:30;9362:26;9342:18;;;9335:54;9406:18;;48084:34:0;9082:348:1;48025:473:0;48149:35;48140:5;:44;;;;;;;;:::i;:::-;;48136:362;;;48201:41;;-1:-1:-1;;;48201:41:0;;10042:2:1;48201:41:0;;;10024:21:1;10081:2;10061:18;;;10054:30;10120:33;10100:18;;;10093:61;10171:18;;48201:41:0;9840:355:1;48136:362:0;48273:30;48264:5;:39;;;;;;;;:::i;:::-;;48260:238;;;48320:44;;-1:-1:-1;;;48320:44:0;;14915:2:1;48320:44:0;;;14897:21:1;14954:2;14934:18;;;14927:30;14993:34;14973:18;;;14966:62;-1:-1:-1;;;15044:18:1;;;15037:32;15086:19;;48320:44:0;14713:398:1;48260:238:0;48395:30;48386:5;:39;;;;;;;;:::i;:::-;;48382:116;;;48442:44;;-1:-1:-1;;;48442:44:0;;17751:2:1;48442:44:0;;;17733:21:1;17790:2;17770:18;;;17763:30;17829:34;17809:18;;;17802:62;-1:-1:-1;;;17880:18:1;;;17873:32;17922:19;;48442:44:0;17549:398:1;31203:382:0;-1:-1:-1;;;;;31283:16:0;;31275:61;;;;-1:-1:-1;;;31275:61:0;;18154:2:1;31275:61:0;;;18136:21:1;;;18173:18;;;18166:30;18232:34;18212:18;;;18205:62;18284:18;;31275:61:0;17952:356:1;31275:61:0;29290:4;29314:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29314:16:0;:30;31347:58;;;;-1:-1:-1;;;31347:58:0;;12406:2:1;31347:58:0;;;12388:21:1;12445:2;12425:18;;;12418:30;12484;12464:18;;;12457:58;12532:18;;31347:58:0;12204:352:1;31347:58:0;31418:45;31447:1;31451:2;31455:7;31418:20;:45::i;:::-;-1:-1:-1;;;;;31476:13:0;;;;;;:9;:13;;;;;:18;;31493:1;;31476:13;:18;;31493:1;;31476:18;:::i;:::-;;;;-1:-1:-1;;31505:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31505:21:0;-1:-1:-1;;;;;31505:21:0;;;;;;;;31544:33;;31505:16;;;31544:33;;31505:16;;31544:33;31203:382;;:::o;53200:1632::-;53331:7;;54265:66;54252:79;;54248:163;;;-1:-1:-1;54364:1:0;;-1:-1:-1;54368:30:0;54348:51;;54248:163;54425:1;:7;;54430:2;54425:7;;:18;;;;;54436:1;:7;;54441:2;54436:7;;54425:18;54421:102;;;-1:-1:-1;54476:1:0;;-1:-1:-1;54480:30:0;54460:51;;54421:102;54637:24;;;54620:14;54637:24;;;;;;;;;8682:25:1;;;8755:4;8743:17;;8723:18;;;8716:45;;;;8777:18;;;8770:34;;;8820:18;;;8813:34;;;54637:24:0;;8654:19:1;;54637:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54637:24:0;;-1:-1:-1;;54637:24:0;;;-1:-1:-1;;;;;;;54676:20:0;;54672:103;;54729:1;54733:29;54713:50;;;;;;;54672:103;54795:6;-1:-1:-1;54803:20:0;;-1:-1:-1;53200:1632:0;;;;;;;;:::o;52195:391::-;52309:7;;-1:-1:-1;;;;;52410:75:0;;52512:3;52508:12;;;52522:2;52504:21;52553:25;52564:4;52504:21;52573:1;52410:75;52553:10;:25::i;:::-;52546:32;;;;;;52195:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;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:72;;;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:45;;;532:1;529;522:12;491:45;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;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:220;1035:5;1088:3;1081:4;1073:6;1069:17;1065:27;1055:55;;1106:1;1103;1096:12;1055:55;1128:79;1203:3;1194:6;1181:20;1174:4;1166:6;1162:17;1128:79;:::i;:::-;1119:88;993:220;-1:-1:-1;;;993:220:1:o;1218:186::-;1277:6;1330:2;1318:9;1309:7;1305:23;1301:32;1298:52;;;1346:1;1343;1336:12;1298:52;1369:29;1388:9;1369:29;:::i;1409:260::-;1477:6;1485;1538:2;1526:9;1517:7;1513:23;1509:32;1506:52;;;1554:1;1551;1544:12;1506:52;1577:29;1596:9;1577:29;:::i;:::-;1567:39;;1625:38;1659:2;1648:9;1644:18;1625:38;:::i;:::-;1615:48;;1409:260;;;;;:::o;1674:328::-;1751:6;1759;1767;1820:2;1808:9;1799:7;1795:23;1791:32;1788:52;;;1836:1;1833;1826:12;1788:52;1859:29;1878:9;1859:29;:::i;:::-;1849:39;;1907:38;1941:2;1930:9;1926:18;1907:38;:::i;:::-;1897:48;;1992:2;1981:9;1977:18;1964:32;1954:42;;1674:328;;;;;:::o;2007:537::-;2102:6;2110;2118;2126;2179:3;2167:9;2158:7;2154:23;2150:33;2147:53;;;2196:1;2193;2186:12;2147:53;2219:29;2238:9;2219:29;:::i;:::-;2209:39;;2267:38;2301:2;2290:9;2286:18;2267:38;:::i;:::-;2257:48;;2352:2;2341:9;2337:18;2324:32;2314:42;;2407:2;2396:9;2392:18;2379:32;2434:18;2426:6;2423:30;2420:50;;;2466:1;2463;2456:12;2420:50;2489:49;2530:7;2521:6;2510:9;2506:22;2489:49;:::i;:::-;2479:59;;;2007:537;;;;;;;:::o;2549:254::-;2614:6;2622;2675:2;2663:9;2654:7;2650:23;2646:32;2643:52;;;2691:1;2688;2681:12;2643:52;2714:29;2733:9;2714:29;:::i;:::-;2704:39;;2762:35;2793:2;2782:9;2778:18;2762:35;:::i;2808:254::-;2876:6;2884;2937:2;2925:9;2916:7;2912:23;2908:32;2905:52;;;2953:1;2950;2943:12;2905:52;2976:29;2995:9;2976:29;:::i;:::-;2966:39;3052:2;3037:18;;;;3024:32;;-1:-1:-1;;;2808:254:1:o;3067:180::-;3123:6;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3215:26;3231:9;3215:26;:::i;3252:456::-;3338:6;3346;3354;3407:2;3395:9;3386:7;3382:23;3378:32;3375:52;;;3423:1;3420;3413:12;3375:52;3459:9;3446:23;3436:33;;3520:2;3509:9;3505:18;3492:32;3547:18;3539:6;3536:30;3533:50;;;3579:1;3576;3569:12;3533:50;3602:49;3643:7;3634:6;3623:9;3619:22;3602:49;:::i;:::-;3592:59;;;3698:2;3687:9;3683:18;3670:32;3660:42;;3252:456;;;;;:::o;3713:245::-;3771:6;3824:2;3812:9;3803:7;3799:23;3795:32;3792:52;;;3840:1;3837;3830:12;3792:52;3879:9;3866:23;3898:30;3922:5;3898:30;:::i;3963:249::-;4032:6;4085:2;4073:9;4064:7;4060:23;4056:32;4053:52;;;4101:1;4098;4091:12;4053:52;4133:9;4127:16;4152:30;4176:5;4152:30;:::i;4217:450::-;4286:6;4339:2;4327:9;4318:7;4314:23;4310:32;4307:52;;;4355:1;4352;4345:12;4307:52;4395:9;4382:23;4428:18;4420:6;4417:30;4414:50;;;4460:1;4457;4450:12;4414:50;4483:22;;4536:4;4528:13;;4524:27;-1:-1:-1;4514:55:1;;4565:1;4562;4555:12;4514:55;4588:73;4653:7;4648:2;4635:16;4630:2;4626;4622:11;4588:73;:::i;4672:180::-;4731:6;4784:2;4772:9;4763:7;4759:23;4755:32;4752:52;;;4800:1;4797;4790:12;4752:52;-1:-1:-1;4823:23:1;;4672:180;-1:-1:-1;4672:180:1:o;4857:257::-;4898:3;4936:5;4930:12;4963:6;4958:3;4951:19;4979:63;5035:6;5028:4;5023:3;5019:14;5012:4;5005:5;5001:16;4979:63;:::i;:::-;5096:2;5075:15;-1:-1:-1;;5071:29:1;5062:39;;;;5103:4;5058:50;;4857:257;-1:-1:-1;;4857:257:1:o;5119:185::-;5161:3;5199:5;5193:12;5214:52;5259:6;5254:3;5247:4;5240:5;5236:16;5214:52;:::i;:::-;5282:16;;;;;5119:185;-1:-1:-1;;5119:185:1:o;5661:1301::-;5938:3;5967:1;6000:6;5994:13;6030:3;6052:1;6080:9;6076:2;6072:18;6062:28;;6140:2;6129:9;6125:18;6162;6152:61;;6206:4;6198:6;6194:17;6184:27;;6152:61;6232:2;6280;6272:6;6269:14;6249:18;6246:38;6243:165;;;-1:-1:-1;;;6307:33:1;;6363:4;6360:1;6353:15;6393:4;6314:3;6381:17;6243:165;6424:18;6451:104;;;;6569:1;6564:320;;;;6417:467;;6451:104;-1:-1:-1;;6484:24:1;;6472:37;;6529:16;;;;-1:-1:-1;6451:104:1;;6564:320;22579:1;22572:14;;;22616:4;22603:18;;6659:1;6673:165;6687:6;6684:1;6681:13;6673:165;;;6765:14;;6752:11;;;6745:35;6808:16;;;;6702:10;;6673:165;;;6677:3;;6867:6;6862:3;6858:16;6851:23;;6417:467;;;;;;;6900:56;6925:30;6951:3;6943:6;6925:30;:::i;:::-;-1:-1:-1;;;5369:20:1;;5414:1;5405:11;;5309:113;6900:56;6893:63;5661:1301;-1:-1:-1;;;;;5661:1301:1:o;7770:488::-;-1:-1:-1;;;;;8039:15:1;;;8021:34;;8091:15;;8086:2;8071:18;;8064:43;8138:2;8123:18;;8116:34;;;8186:3;8181:2;8166:18;;8159:31;;;7964:4;;8207:45;;8232:19;;8224:6;8207:45;:::i;:::-;8199:53;7770:488;-1:-1:-1;;;;;;7770:488:1:o;8858:219::-;9007:2;8996:9;8989:21;8970:4;9027:44;9067:2;9056:9;9052:18;9044:6;9027:44;:::i;10612:414::-;10814:2;10796:21;;;10853:2;10833:18;;;10826:30;10892:34;10887:2;10872:18;;10865:62;-1:-1:-1;;;10958:2:1;10943:18;;10936:48;11016:3;11001:19;;10612:414::o;15529:348::-;15731:2;15713:21;;;15770:2;15750:18;;;15743:30;15809:26;15804:2;15789:18;;15782:54;15868:2;15853:18;;15529:348::o;18726:356::-;18928:2;18910:21;;;18947:18;;;18940:30;19006:34;19001:2;18986:18;;18979:62;19073:2;19058:18;;18726:356::o;19087:404::-;19289:2;19271:21;;;19328:2;19308:18;;;19301:30;19367:34;19362:2;19347:18;;19340:62;-1:-1:-1;;;19433:2:1;19418:18;;19411:38;19481:3;19466:19;;19087:404::o;21133:413::-;21335:2;21317:21;;;21374:2;21354:18;;;21347:30;21413:34;21408:2;21393:18;;21386:62;-1:-1:-1;;;21479:2:1;21464:18;;21457:47;21536:3;21521:19;;21133:413::o;22632:128::-;22672:3;22703:1;22699:6;22696:1;22693:13;22690:39;;;22709:18;;:::i;:::-;-1:-1:-1;22745:9:1;;22632:128::o;22765:120::-;22805:1;22831;22821:35;;22836:18;;:::i;:::-;-1:-1:-1;22870:9:1;;22765:120::o;22890:168::-;22930:7;22996:1;22992;22988:6;22984:14;22981:1;22978:21;22973:1;22966:9;22959:17;22955:45;22952:71;;;23003:18;;:::i;:::-;-1:-1:-1;23043:9:1;;22890:168::o;23063:125::-;23103:4;23131:1;23128;23125:8;23122:34;;;23136:18;;:::i;:::-;-1:-1:-1;23173:9:1;;23063:125::o;23193:258::-;23265:1;23275:113;23289:6;23286:1;23283:13;23275:113;;;23365:11;;;23359:18;23346:11;;;23339:39;23311:2;23304:10;23275:113;;;23406:6;23403:1;23400:13;23397:48;;;-1:-1:-1;;23441:1:1;23423:16;;23416:27;23193:258::o;23456:380::-;23535:1;23531:12;;;;23578;;;23599:61;;23653:4;23645:6;23641:17;23631:27;;23599:61;23706:2;23698:6;23695:14;23675:18;23672:38;23669:161;;;23752:10;23747:3;23743:20;23740:1;23733:31;23787:4;23784:1;23777:15;23815:4;23812:1;23805:15;23669:161;;23456:380;;;:::o;23841:135::-;23880:3;-1:-1:-1;;23901:17:1;;23898:43;;;23921:18;;:::i;:::-;-1:-1:-1;23968:1:1;23957:13;;23841:135::o;23981:112::-;24013:1;24039;24029:35;;24044:18;;:::i;:::-;-1:-1:-1;24078:9:1;;23981:112::o;24098:127::-;24159:10;24154:3;24150:20;24147:1;24140:31;24190:4;24187:1;24180:15;24214:4;24211:1;24204:15;24230:127;24291:10;24286:3;24282:20;24279:1;24272:31;24322:4;24319:1;24312:15;24346:4;24343:1;24336:15;24362:127;24423:10;24418:3;24414:20;24411:1;24404:31;24454:4;24451:1;24444:15;24478:4;24475:1;24468:15;24494:127;24555:10;24550:3;24546:20;24543:1;24536:31;24586:4;24583:1;24576:15;24610:4;24607:1;24600:15;24626:127;24687:10;24682:3;24678:20;24675:1;24668:31;24718:4;24715:1;24708:15;24742:4;24739:1;24732:15;24758:127;24819:10;24814:3;24810:20;24807:1;24800:31;24850:4;24847:1;24840:15;24874:4;24871:1;24864:15;24890:131;-1:-1:-1;;;;;;24964:32:1;;24954:43;;24944:71;;25011:1;25008;25001:12

Swarm Source

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