ETH Price: $3,234.44 (-0.62%)
Gas: 1 Gwei

Token

Hybrid Factions (HF)
 

Overview

Max Total Supply

275 HF

Holders

110

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 HF
0x063a2C5d075831727a1cC38418b1e4dfd92ccbA6
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:
HybridFactions

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-22
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

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

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

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

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

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

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

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

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

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

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




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

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


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

/**
 * @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 whiteed 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 whiteed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

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


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

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


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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


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

/**
 * @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 whiteed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


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

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

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

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


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


/**
 * @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 whites 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/utils/math/[email protected]


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

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

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

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

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

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

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

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

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

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

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

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

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

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




/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // 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
   * `maxBatchSize` refers to how much a minter can mint at a time.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  function walletOfOwner(address owner) public view returns(uint256[] memory) {
    uint256 tokenCount = balanceOf(owner);

    uint256[] memory tokenIds = new uint256[](tokenCount);
    if (tokenCount == 0)
    {
      return tokenIds;
    }

    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        tokenIds[tokenIdsIdx] = i;
        tokenIdsIdx++;
        if (tokenIdsIdx == tokenCount) {
          return tokenIds;
        }
      }
    }
    revert("ERC721A: unable to get walletOfOwner");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @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 override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: 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 {
    _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 {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > currentIndex - 1) {
      endIndex = currentIndex - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * 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`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

contract HybridFactions is ERC721A, Ownable {
    constructor() ERC721A("Hybrid Factions", "HF",20) {}

    using SafeMath for uint256;
    using Strings for uint256;

    string private baseURI;
    string private blindURI;
    uint256 public constant BUY_LIMIT_PER_TX = 20;
    uint256 public MAX_NFT_PUBLIC = 626;
    uint256 private constant MAX_NFT = 8626;
    uint256 public NFTPrice = 80000000000000000;  // 0.08 ETH
    bool public reveal;
    bool public isActive;
    bool public isPresaleActive;
    bool public freeMintActive;
    bytes32 public root;
    uint256 public WHITELIST_MAX_MINT = 4;
    mapping(address => uint256) public whiteListClaimed;
    mapping(address => bool) private giveawayMintClaimed;


    /*
     * Function to reveal all HYBRID FACTIONS
    */
    function revealNow()
        external
        onlyOwner
    {
        reveal = true;
    }

    /*
     * Function setIsActive to activate/desactivate the smart contract
    */
    function setIsActive(
        bool _isActive
    )
        external
        onlyOwner
    {
        isActive = _isActive;
    }

    /*
     * Function setPresaleActive to activate/desactivate the whitelist/raffle presale
    */
    function setPresaleActive(
        bool _isActive
    )
        external
        onlyOwner
    {
        isPresaleActive = _isActive;
    }

    /*
     * Function setFreeMintActive to activate/desactivate the free mint capability
    */
    function setFreeMintActive(
        bool _isActive
    )
        external
        onlyOwner
    {
        freeMintActive = _isActive;
    }

    /*
     * Function to set Base and Blind URI
    */
    function setURIs(
        string memory _blindURI,
        string memory _URI
    )
        external
        onlyOwner
    {
        blindURI = _blindURI;
        baseURI = _URI;
    }

    /*
     * Function to set NFT Price
    */
    function setNFTPrice(uint256 _price) external onlyOwner {
        NFTPrice = _price;
    }

    /*
     * Function to set Max NFT
    */
    function setNFTmax(uint256 max) external onlyOwner {
        MAX_NFT_PUBLIC = max;
    }


    /*
     * Function to withdraw collected amount during minting by the owner
    */
    function withdraw(
    )
        public
        onlyOwner
    {
        uint balance = address(this).balance;
        require(balance > 0, "Balance should be more then zero");
        payable(0xd730077f2a0bb76769DA556b7d08c3dAE0177513).transfer((balance * 980) / 1000);
        payable(0xeC3d21d6690C61Ae2Bfca48C145D1b127f1199bF).transfer((balance * 20) / 1000);
    }

    /*
     * Function to mint new NFTs during the public sale
     * It is payable. Amount is calculated as per (NFTPrice.mul(_numOfTokens))
    */
    function mintNFT(
        uint256 _numOfTokens
    )
        public
        payable
    {
        require(isActive, 'Contract is not active');
        require(!isPresaleActive, 'Presale is still active');
        require(_numOfTokens <= BUY_LIMIT_PER_TX, "Cannot mint above limit");
        require(totalSupply().add(_numOfTokens) <= MAX_NFT_PUBLIC, "Purchase would exceed max public supply of NFTs");
        require(NFTPrice.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");

        _safeMint(msg.sender, _numOfTokens);
    }

    /*
     * Function to mint new NFTs during the presale
     * It is payable. Amount is calculated as per (NFTPrice.mul(_numOfTokens))
    */
    function mintNFTDuringPresale(
        uint256 _numOfTokens,
        bytes32[] memory _proof
    )
        public
        payable
    {
        require(isActive, 'Sale is not active');
        require(isPresaleActive, 'Whitelist is not active');
        require(verify(_proof, bytes32(uint256(uint160(msg.sender)))), "Not whitelisted");
        if (!freeMintActive){
            require(totalSupply() < MAX_NFT_PUBLIC, 'All public tokens have been minted');
            require(_numOfTokens <= WHITELIST_MAX_MINT, 'Cannot purchase this many tokens');
            require(totalSupply().add(_numOfTokens) <= MAX_NFT_PUBLIC, 'Purchase would exceed max public supply of NFTs');
            require(whiteListClaimed[msg.sender].add(_numOfTokens) <= WHITELIST_MAX_MINT, 'Purchase exceeds max whitelisted');
            require(NFTPrice.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");
            whiteListClaimed[msg.sender] += _numOfTokens;
            _safeMint(msg.sender, _numOfTokens);
        } else {
            require(totalSupply() <= MAX_NFT, 'All tokens have been minted');
            require(_numOfTokens == 1, 'Cannot purchase this many tokens');
            require(!giveawayMintClaimed[msg.sender], 'Already claimed giveaway');
            giveawayMintClaimed[msg.sender] = true;
            _safeMint(msg.sender, _numOfTokens);
        }
    }

    /*
     * Function to mint NFTs for giveaway and partnerships
    */
    function mintByOwner(
        address _to,
        uint256 _num
    )
        public
        onlyOwner
    {
        require(totalSupply()+_num <= MAX_NFT, "Tokens number to mint cannot exceed number of MAX tokens");
        _safeMint(_to, _num);
    }

    /*
     * Function to mint all NFTs for giveaway and partnerships
    */
    function mintMultipleByOwner(
        address[] memory _to,
        uint256 _num
    )
        public
        onlyOwner
    {

        for(uint256 i = 0; i < _to.length; i++){
            require(totalSupply()+_num <= MAX_NFT, "Tokens number to mint cannot exceed number of MAX tokens");
            _safeMint(_to[i], _num);
        }
    }

    /*
     * Function to get token URI of given token ID
     * URI will be blank untill totalSupply reaches MAX_NFT_PUBLIC
    */
    function tokenURI(
        uint256 _tokenId
    )
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        if (!reveal) {
            return string(abi.encodePacked(blindURI));
        } else {
            return string(abi.encodePacked(baseURI, _tokenId.toString()));
        }
    }

    // Set Root for whitelist and raffle to participate in presale
    function setRootAndMax(uint256 _root,uint256 _max) onlyOwner() public {
        root = bytes32(_root);
        WHITELIST_MAX_MINT = _max;
    }

    // Verify MerkleProof
    function verify(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = sha256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = sha256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BUY_LIMIT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"mintMultipleByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintNFTDuringPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"bool","name":"_isActive","type":"bool"}],"name":"setFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setNFTPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setNFTmax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_root","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setRootAndMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_blindURI","type":"string"},{"internalType":"string","name":"_URI","type":"string"}],"name":"setURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052600080556000600755610272600b5567011c37937e080000600c556004600f553480156200003157600080fd5b506040518060400160405280600f81526020016e4879627269642046616374696f6e7360881b81525060405180604001604052806002815260200161242360f11b815250601460008111620000dc5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b8251620000f190600190602086019062000171565b5081516200010790600290602085019062000171565b5060805250620001199050336200011f565b62000254565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017f9062000217565b90600052602060002090601f016020900481019282620001a35760008555620001ee565b82601f10620001be57805160ff1916838001178555620001ee565b82800160010185558215620001ee579182015b82811115620001ee578251825591602001919060010190620001d1565b50620001fc92915062000200565b5090565b5b80821115620001fc576000815560010162000201565b600181811c908216806200022c57607f821691505b602082108114156200024e57634e487b7160e01b600052602260045260246000fd5b50919050565b6080516131a36200027e600039600081816120d2015281816120fc015261253201526131a36000f3fe6080604052600436106102725760003560e01c806381530b681161014f578063c87b56dd116100c1578063e82541741161007a578063e825417414610720578063e985e9c514610740578063ebf0c71714610789578063f2fde38b1461079f578063f37484e3146107bf578063f51184da146107df57600080fd5b8063c87b56dd1461067e578063cb5bc2aa1461069e578063cc7cc223146106bf578063d1d80f30146106df578063d7224ba0146106f5578063e748e07c1461070b57600080fd5b8063972a2a6211610113578063972a2a62146105d8578063a22cb465146105f8578063a38bffda14610618578063a475b5dd1461062e578063aeb1676814610648578063b88d4fde1461065e57600080fd5b806381530b681461055f5780638da5cb5b1461057f5780638f76696c1461059d57806392642744146105b057806395d89b41146105c357600080fd5b80633ccfd60b116101e85780634f9b563c116101ac5780634f9b563c146104b55780635f0f45b2146104d557806360d938dc146104ea5780636352211e1461050a57806370a082311461052a578063715018a61461054a57600080fd5b80633ccfd60b146104135780633f8121a21461042857806342842e0e14610448578063438b6300146104685780634f6ccce71461049557600080fd5b806322f3e2d41161023a57806322f3e2d4146103475780632333f3c41461036657806323b872dd146103935780632750fc78146103b35780632f745c59146103d35780633542aee2146103f357600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657806318160ddd14610328575b600080fd5b34801561028357600080fd5b50610297610292366004612b64565b6107ff565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c161086c565b6040516102a39190612e0c565b3480156102da57600080fd5b506102ee6102e9366004612c01565b6108fe565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b50610326610321366004612a1e565b61098e565b005b34801561033457600080fd5b506000545b6040519081526020016102a3565b34801561035357600080fd5b50600d5461029790610100900460ff1681565b34801561037257600080fd5b506103396103813660046128ef565b60106020526000908152604090205481565b34801561039f57600080fd5b506103266103ae36600461293d565b610aa6565b3480156103bf57600080fd5b506103266103ce366004612b30565b610ab1565b3480156103df57600080fd5b506103396103ee366004612a1e565b610af5565b3480156103ff57600080fd5b5061032661040e366004612a1e565b610c62565b34801561041f57600080fd5b50610326610ccf565b34801561043457600080fd5b50610326610443366004612b30565b610df9565b34801561045457600080fd5b5061032661046336600461293d565b610e3f565b34801561047457600080fd5b506104886104833660046128ef565b610e5a565b6040516102a39190612dc8565b3480156104a157600080fd5b506103396104b0366004612c01565b610fd7565b3480156104c157600080fd5b506103266104d0366004612b30565b611039565b3480156104e157600080fd5b50610326611081565b3480156104f657600080fd5b50600d546102979062010000900460ff1681565b34801561051657600080fd5b506102ee610525366004612c01565b6110ba565b34801561053657600080fd5b506103396105453660046128ef565b6110cc565b34801561055657600080fd5b5061032661115d565b34801561056b57600080fd5b5061032661057a366004612c01565b611193565b34801561058b57600080fd5b506008546001600160a01b03166102ee565b6103266105ab366004612c1a565b6111c2565b6103266105be366004612c01565b6115c7565b3480156105cf57600080fd5b506102c1611758565b3480156105e457600080fd5b506102976105f3366004612aec565b611767565b34801561060457600080fd5b506103266106133660046129f4565b6118a5565b34801561062457600080fd5b50610339600c5481565b34801561063a57600080fd5b50600d546102979060ff1681565b34801561065457600080fd5b50610339600f5481565b34801561066a57600080fd5b50610326610679366004612979565b61196a565b34801561068a57600080fd5b506102c1610699366004612c01565b6119a3565b3480156106aa57600080fd5b50600d54610297906301000000900460ff1681565b3480156106cb57600080fd5b506103266106da366004612a48565b611a67565b3480156106eb57600080fd5b50610339600b5481565b34801561070157600080fd5b5061033960075481565b34801561071757600080fd5b50610339601481565b34801561072c57600080fd5b5061032661073b366004612b9e565b611b07565b34801561074c57600080fd5b5061029761075b36600461290a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561079557600080fd5b50610339600e5481565b3480156107ab57600080fd5b506103266107ba3660046128ef565b611b58565b3480156107cb57600080fd5b506103266107da366004612c56565b611bf0565b3480156107eb57600080fd5b506103266107fa366004612c01565b611c25565b60006001600160e01b031982166380ac58cd60e01b148061083057506001600160e01b03198216635b5e139f60e01b145b8061084b57506001600160e01b0319821663780e9d6360e01b145b8061086657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461087b90613095565b80601f01602080910402602001604051908101604052809291908181526020018280546108a790613095565b80156108f45780601f106108c9576101008083540402835291602001916108f4565b820191906000526020600020905b8154815290600101906020018083116108d757829003601f168201915b5050505050905090565b600061090b826000541190565b6109725760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610999826110ba565b9050806001600160a01b0316836001600160a01b03161415610a085760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610969565b336001600160a01b0382161480610a245750610a24813361075b565b610a965760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610969565b610aa1838383611c54565b505050565b610aa1838383611cb0565b6008546001600160a01b03163314610adb5760405162461bcd60e51b815260040161096990612e7c565b600d80549115156101000261ff0019909216919091179055565b6000610b00836110cc565b8210610b595760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610969565b600080549080805b83811015610c02576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610bb357805192505b876001600160a01b0316836001600160a01b03161415610bef5786841415610be15750935061086692505050565b83610beb816130d0565b9450505b5080610bfa816130d0565b915050610b61565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610969565b6008546001600160a01b03163314610c8c5760405162461bcd60e51b815260040161096990612e7c565b6121b281610c9960005490565b610ca39190612fc8565b1115610cc15760405162461bcd60e51b815260040161096990612e1f565b610ccb8282612036565b5050565b6008546001600160a01b03163314610cf95760405162461bcd60e51b815260040161096990612e7c565b4780610d475760405162461bcd60e51b815260206004820181905260248201527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f6044820152606401610969565b73d730077f2a0bb76769da556b7d08c3dae01775136108fc6103e8610d6e846103d4612ff4565b610d789190612fe0565b6040518115909202916000818181858888f19350505050158015610da0573d6000803e3d6000fd5b5073ec3d21d6690c61ae2bfca48c145d1b127f1199bf6108fc6103e8610dc7846014612ff4565b610dd19190612fe0565b6040518115909202916000818181858888f19350505050158015610ccb573d6000803e3d6000fd5b6008546001600160a01b03163314610e235760405162461bcd60e51b815260040161096990612e7c565b600d8054911515620100000262ff000019909216919091179055565b610aa18383836040518060200160405280600081525061196a565b60606000610e67836110cc565b90506000816001600160401b03811115610e8357610e83613141565b604051908082528060200260200182016040528015610eac578160200160208202803683370190505b50905081610ebb579392505050565b600080549080805b83811015610f82576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610f1557805192505b886001600160a01b0316836001600160a01b03161415610f6f5781868581518110610f4257610f4261312b565b602090810291909101015283610f57816130d0565b94505086841415610f6f575093979650505050505050565b5080610f7a816130d0565b915050610ec3565b5060405162461bcd60e51b8152602060048201526024808201527f455243373231413a20756e61626c6520746f206765742077616c6c65744f664f6044820152633bb732b960e11b6064820152608401610969565b6000805482106110355760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610969565b5090565b6008546001600160a01b031633146110635760405162461bcd60e51b815260040161096990612e7c565b600d805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b031633146110ab5760405162461bcd60e51b815260040161096990612e7c565b600d805460ff19166001179055565b60006110c582612050565b5192915050565b60006001600160a01b0382166111385760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610969565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146111875760405162461bcd60e51b815260040161096990612e7c565b61119160006121f9565b565b6008546001600160a01b031633146111bd5760405162461bcd60e51b815260040161096990612e7c565b600c55565b600d54610100900460ff1661120e5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b6044820152606401610969565b600d5462010000900460ff166112665760405162461bcd60e51b815260206004820152601760248201527f57686974656c697374206973206e6f74206163746976650000000000000000006044820152606401610969565b6112708133611767565b6112ae5760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610969565b600d546301000000900460ff1661149957600b546000541061131d5760405162461bcd60e51b815260206004820152602260248201527f416c6c207075626c696320746f6b656e732068617665206265656e206d696e74604482015261195960f21b6064820152608401610969565b600f5482111561136f5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736044820152606401610969565b600b546113858361137f60005490565b9061224b565b11156113a35760405162461bcd60e51b815260040161096990612eb1565b600f54336000908152601060205260409020546113c0908461224b565b111561140e5760405162461bcd60e51b815260206004820181905260248201527f50757263686173652065786365656473206d61782077686974656c69737465646044820152606401610969565b600c54349061141d908461225e565b1461146a5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610969565b3360009081526010602052604081208054849290611489908490612fc8565b90915550610ccb90503383612036565b6121b26114a560005490565b11156114f35760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610969565b816001146115435760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736044820152606401610969565b3360009081526011602052604090205460ff16156115a35760405162461bcd60e51b815260206004820152601860248201527f416c726561647920636c61696d656420676976656177617900000000000000006044820152606401610969565b336000818152601160205260409020805460ff19166001179055610ccb9083612036565b600d54610100900460ff166116175760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b6044820152606401610969565b600d5462010000900460ff16156116705760405162461bcd60e51b815260206004820152601760248201527f50726573616c65206973207374696c6c206163746976650000000000000000006044820152606401610969565b60148111156116c15760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74206d696e742061626f7665206c696d69740000000000000000006044820152606401610969565b600b546116d18261137f60005490565b11156116ef5760405162461bcd60e51b815260040161096990612eb1565b600c5434906116fe908361225e565b1461174b5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610969565b6117553382612036565b50565b60606002805461087b90613095565b600081815b84518110156118995760008582815181106117895761178961312b565b6020026020010151905080831161181257604080516020810185905290810182905260029060600160408051601f19818403018152908290526117cb91612d3e565b602060405180830381855afa1580156117e8573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061180b9190612b4b565b9250611886565b604080516020810183905290810184905260029060600160408051601f198184030181529082905261184391612d3e565b602060405180830381855afa158015611860573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906118839190612b4b565b92505b5080611891816130d0565b91505061176c565b50600e54149392505050565b6001600160a01b0382163314156118fe5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610969565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611975848484611cb0565b6119818484848461226a565b61199d5760405162461bcd60e51b815260040161096990612f00565b50505050565b60606119b0826000541190565b611a145760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610969565b600d5460ff16611a4657600a604051602001611a309190612d5a565b6040516020818303038152906040529050919050565b6009611a5183612378565b604051602001611a30929190612d66565b919050565b6008546001600160a01b03163314611a915760405162461bcd60e51b815260040161096990612e7c565b60005b8251811015610aa1576121b282611aaa60005490565b611ab49190612fc8565b1115611ad25760405162461bcd60e51b815260040161096990612e1f565b611af5838281518110611ae757611ae761312b565b602002602001015183612036565b80611aff816130d0565b915050611a94565b6008546001600160a01b03163314611b315760405162461bcd60e51b815260040161096990612e7c565b8151611b4490600a90602085019061274f565b508051610aa190600990602084019061274f565b6008546001600160a01b03163314611b825760405162461bcd60e51b815260040161096990612e7c565b6001600160a01b038116611be75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610969565b611755816121f9565b6008546001600160a01b03163314611c1a5760405162461bcd60e51b815260040161096990612e7c565b600e91909155600f55565b6008546001600160a01b03163314611c4f5760405162461bcd60e51b815260040161096990612e7c565b600b55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611cbb82612050565b80519091506000906001600160a01b0316336001600160a01b03161480611cf2575033611ce7846108fe565b6001600160a01b0316145b80611d0457508151611d04903361075b565b905080611d6e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610969565b846001600160a01b031682600001516001600160a01b031614611de25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610969565b6001600160a01b038416611e465760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610969565b611e566000848460000151611c54565b6001600160a01b0385166000908152600460205260408120805460019290611e889084906001600160801b0316613013565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611ed491859116612fa6565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611f5b846001612fc8565b6000818152600360205260409020549091506001600160a01b0316611fec57611f85816000541190565b15611fec5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610ccb828260405180602001604052806000815250612475565b604080518082019091526000808252602082015261206f826000541190565b6120ce5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610969565b60007f0000000000000000000000000000000000000000000000000000000000000000831061212f576121217f00000000000000000000000000000000000000000000000000000000000000008461303b565b61212c906001612fc8565b90505b825b818110612198576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561218557949350505050565b50806121908161307e565b915050612131565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610969565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006122578284612fc8565b9392505050565b60006122578284612ff4565b60006001600160a01b0384163b1561236c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122ae903390899088908890600401612d8b565b602060405180830381600087803b1580156122c857600080fd5b505af19250505080156122f8575060408051601f3d908101601f191682019092526122f591810190612b81565b60015b612352573d808015612326576040519150601f19603f3d011682016040523d82523d6000602084013e61232b565b606091505b50805161234a5760405162461bcd60e51b815260040161096990612f00565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612370565b5060015b949350505050565b60608161239c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123c657806123b0816130d0565b91506123bf9050600a83612fe0565b91506123a0565b6000816001600160401b038111156123e0576123e0613141565b6040519080825280601f01601f19166020018201604052801561240a576020820181803683370190505b5090505b84156123705761241f60018361303b565b915061242c600a866130eb565b612437906030612fc8565b60f81b81838151811061244c5761244c61312b565b60200101906001600160f81b031916908160001a90535061246e600a86612fe0565b945061240e565b6000546001600160a01b0384166124d85760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610969565b6124e3816000541190565b156125305760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610969565b7f00000000000000000000000000000000000000000000000000000000000000008311156125ab5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610969565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612607908790612fa6565b6001600160801b031681526020018583602001516126259190612fa6565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156127445760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612708600088848861226a565b6127245760405162461bcd60e51b815260040161096990612f00565b8161272e816130d0565b925050808061273c906130d0565b9150506126bb565b50600081905561202e565b82805461275b90613095565b90600052602060002090601f01602090048101928261277d57600085556127c3565b82601f1061279657805160ff19168380011785556127c3565b828001600101855582156127c3579182015b828111156127c35782518255916020019190600101906127a8565b506110359291505b8082111561103557600081556001016127cb565b60006001600160401b038311156127f8576127f8613141565b61280b601f8401601f1916602001612f53565b905082815283838301111561281f57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a6257600080fd5b600082601f83011261285e57600080fd5b8135602061287361286e83612f83565b612f53565b80838252828201915082860187848660051b890101111561289357600080fd5b60005b858110156128b257813584529284019290840190600101612896565b5090979650505050505050565b80358015158114611a6257600080fd5b600082601f8301126128e057600080fd5b612257838335602085016127df565b60006020828403121561290157600080fd5b61225782612836565b6000806040838503121561291d57600080fd5b61292683612836565b915061293460208401612836565b90509250929050565b60008060006060848603121561295257600080fd5b61295b84612836565b925061296960208501612836565b9150604084013590509250925092565b6000806000806080858703121561298f57600080fd5b61299885612836565b93506129a660208601612836565b92506040850135915060608501356001600160401b038111156129c857600080fd5b8501601f810187136129d957600080fd5b6129e8878235602084016127df565b91505092959194509250565b60008060408385031215612a0757600080fd5b612a1083612836565b9150612934602084016128bf565b60008060408385031215612a3157600080fd5b612a3a83612836565b946020939093013593505050565b60008060408385031215612a5b57600080fd5b82356001600160401b03811115612a7157600080fd5b8301601f81018513612a8257600080fd5b80356020612a9261286e83612f83565b80838252828201915082850189848660051b8801011115612ab257600080fd5b600095505b84861015612adc57612ac881612836565b835260019590950194918301918301612ab7565b5098969091013596505050505050565b60008060408385031215612aff57600080fd5b82356001600160401b03811115612b1557600080fd5b612b218582860161284d565b95602094909401359450505050565b600060208284031215612b4257600080fd5b612257826128bf565b600060208284031215612b5d57600080fd5b5051919050565b600060208284031215612b7657600080fd5b813561225781613157565b600060208284031215612b9357600080fd5b815161225781613157565b60008060408385031215612bb157600080fd5b82356001600160401b0380821115612bc857600080fd5b612bd4868387016128cf565b93506020850135915080821115612bea57600080fd5b50612bf7858286016128cf565b9150509250929050565b600060208284031215612c1357600080fd5b5035919050565b60008060408385031215612c2d57600080fd5b8235915060208301356001600160401b03811115612c4a57600080fd5b612bf78582860161284d565b60008060408385031215612c6957600080fd5b50508035926020909101359150565b60008151808452612c90816020860160208601613052565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680612cbe57607f831692505b6020808410821415612ce057634e487b7160e01b600052602260045260246000fd5b818015612cf45760018114612d0557612d32565b60ff19861689528489019650612d32565b60008881526020902060005b86811015612d2a5781548b820152908501908301612d11565b505084890196505b50505050505092915050565b60008251612d50818460208701613052565b9190910192915050565b60006122578284612ca4565b6000612d728285612ca4565b8351612d82818360208801613052565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612dbe90830184612c78565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612e0057835183529284019291840191600101612de4565b50909695505050505050565b6020815260006122576020830184612c78565b60208082526038908201527f546f6b656e73206e756d62657220746f206d696e742063616e6e6f742065786360408201527f656564206e756d626572206f66204d415820746f6b656e730000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f507572636861736520776f756c6420657863656564206d6178207075626c696360408201526e20737570706c79206f66204e46547360881b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612f7b57612f7b613141565b604052919050565b60006001600160401b03821115612f9c57612f9c613141565b5060051b60200190565b60006001600160801b03808316818516808303821115612d8257612d826130ff565b60008219821115612fdb57612fdb6130ff565b500190565b600082612fef57612fef613115565b500490565b600081600019048311821515161561300e5761300e6130ff565b500290565b60006001600160801b0383811690831681811015613033576130336130ff565b039392505050565b60008282101561304d5761304d6130ff565b500390565b60005b8381101561306d578181015183820152602001613055565b8381111561199d5750506000910152565b60008161308d5761308d6130ff565b506000190190565b600181811c908216806130a957607f821691505b602082108114156130ca57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130e4576130e46130ff565b5060010190565b6000826130fa576130fa613115565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461175557600080fdfea2646970667358221220341ae8b105f02ee6d9c9e777a988d691ad5f0fa26689e1a91ea1c1b05469f41d64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102725760003560e01c806381530b681161014f578063c87b56dd116100c1578063e82541741161007a578063e825417414610720578063e985e9c514610740578063ebf0c71714610789578063f2fde38b1461079f578063f37484e3146107bf578063f51184da146107df57600080fd5b8063c87b56dd1461067e578063cb5bc2aa1461069e578063cc7cc223146106bf578063d1d80f30146106df578063d7224ba0146106f5578063e748e07c1461070b57600080fd5b8063972a2a6211610113578063972a2a62146105d8578063a22cb465146105f8578063a38bffda14610618578063a475b5dd1461062e578063aeb1676814610648578063b88d4fde1461065e57600080fd5b806381530b681461055f5780638da5cb5b1461057f5780638f76696c1461059d57806392642744146105b057806395d89b41146105c357600080fd5b80633ccfd60b116101e85780634f9b563c116101ac5780634f9b563c146104b55780635f0f45b2146104d557806360d938dc146104ea5780636352211e1461050a57806370a082311461052a578063715018a61461054a57600080fd5b80633ccfd60b146104135780633f8121a21461042857806342842e0e14610448578063438b6300146104685780634f6ccce71461049557600080fd5b806322f3e2d41161023a57806322f3e2d4146103475780632333f3c41461036657806323b872dd146103935780632750fc78146103b35780632f745c59146103d35780633542aee2146103f357600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657806318160ddd14610328575b600080fd5b34801561028357600080fd5b50610297610292366004612b64565b6107ff565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c161086c565b6040516102a39190612e0c565b3480156102da57600080fd5b506102ee6102e9366004612c01565b6108fe565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b50610326610321366004612a1e565b61098e565b005b34801561033457600080fd5b506000545b6040519081526020016102a3565b34801561035357600080fd5b50600d5461029790610100900460ff1681565b34801561037257600080fd5b506103396103813660046128ef565b60106020526000908152604090205481565b34801561039f57600080fd5b506103266103ae36600461293d565b610aa6565b3480156103bf57600080fd5b506103266103ce366004612b30565b610ab1565b3480156103df57600080fd5b506103396103ee366004612a1e565b610af5565b3480156103ff57600080fd5b5061032661040e366004612a1e565b610c62565b34801561041f57600080fd5b50610326610ccf565b34801561043457600080fd5b50610326610443366004612b30565b610df9565b34801561045457600080fd5b5061032661046336600461293d565b610e3f565b34801561047457600080fd5b506104886104833660046128ef565b610e5a565b6040516102a39190612dc8565b3480156104a157600080fd5b506103396104b0366004612c01565b610fd7565b3480156104c157600080fd5b506103266104d0366004612b30565b611039565b3480156104e157600080fd5b50610326611081565b3480156104f657600080fd5b50600d546102979062010000900460ff1681565b34801561051657600080fd5b506102ee610525366004612c01565b6110ba565b34801561053657600080fd5b506103396105453660046128ef565b6110cc565b34801561055657600080fd5b5061032661115d565b34801561056b57600080fd5b5061032661057a366004612c01565b611193565b34801561058b57600080fd5b506008546001600160a01b03166102ee565b6103266105ab366004612c1a565b6111c2565b6103266105be366004612c01565b6115c7565b3480156105cf57600080fd5b506102c1611758565b3480156105e457600080fd5b506102976105f3366004612aec565b611767565b34801561060457600080fd5b506103266106133660046129f4565b6118a5565b34801561062457600080fd5b50610339600c5481565b34801561063a57600080fd5b50600d546102979060ff1681565b34801561065457600080fd5b50610339600f5481565b34801561066a57600080fd5b50610326610679366004612979565b61196a565b34801561068a57600080fd5b506102c1610699366004612c01565b6119a3565b3480156106aa57600080fd5b50600d54610297906301000000900460ff1681565b3480156106cb57600080fd5b506103266106da366004612a48565b611a67565b3480156106eb57600080fd5b50610339600b5481565b34801561070157600080fd5b5061033960075481565b34801561071757600080fd5b50610339601481565b34801561072c57600080fd5b5061032661073b366004612b9e565b611b07565b34801561074c57600080fd5b5061029761075b36600461290a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561079557600080fd5b50610339600e5481565b3480156107ab57600080fd5b506103266107ba3660046128ef565b611b58565b3480156107cb57600080fd5b506103266107da366004612c56565b611bf0565b3480156107eb57600080fd5b506103266107fa366004612c01565b611c25565b60006001600160e01b031982166380ac58cd60e01b148061083057506001600160e01b03198216635b5e139f60e01b145b8061084b57506001600160e01b0319821663780e9d6360e01b145b8061086657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461087b90613095565b80601f01602080910402602001604051908101604052809291908181526020018280546108a790613095565b80156108f45780601f106108c9576101008083540402835291602001916108f4565b820191906000526020600020905b8154815290600101906020018083116108d757829003601f168201915b5050505050905090565b600061090b826000541190565b6109725760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610999826110ba565b9050806001600160a01b0316836001600160a01b03161415610a085760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610969565b336001600160a01b0382161480610a245750610a24813361075b565b610a965760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610969565b610aa1838383611c54565b505050565b610aa1838383611cb0565b6008546001600160a01b03163314610adb5760405162461bcd60e51b815260040161096990612e7c565b600d80549115156101000261ff0019909216919091179055565b6000610b00836110cc565b8210610b595760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610969565b600080549080805b83811015610c02576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610bb357805192505b876001600160a01b0316836001600160a01b03161415610bef5786841415610be15750935061086692505050565b83610beb816130d0565b9450505b5080610bfa816130d0565b915050610b61565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610969565b6008546001600160a01b03163314610c8c5760405162461bcd60e51b815260040161096990612e7c565b6121b281610c9960005490565b610ca39190612fc8565b1115610cc15760405162461bcd60e51b815260040161096990612e1f565b610ccb8282612036565b5050565b6008546001600160a01b03163314610cf95760405162461bcd60e51b815260040161096990612e7c565b4780610d475760405162461bcd60e51b815260206004820181905260248201527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f6044820152606401610969565b73d730077f2a0bb76769da556b7d08c3dae01775136108fc6103e8610d6e846103d4612ff4565b610d789190612fe0565b6040518115909202916000818181858888f19350505050158015610da0573d6000803e3d6000fd5b5073ec3d21d6690c61ae2bfca48c145d1b127f1199bf6108fc6103e8610dc7846014612ff4565b610dd19190612fe0565b6040518115909202916000818181858888f19350505050158015610ccb573d6000803e3d6000fd5b6008546001600160a01b03163314610e235760405162461bcd60e51b815260040161096990612e7c565b600d8054911515620100000262ff000019909216919091179055565b610aa18383836040518060200160405280600081525061196a565b60606000610e67836110cc565b90506000816001600160401b03811115610e8357610e83613141565b604051908082528060200260200182016040528015610eac578160200160208202803683370190505b50905081610ebb579392505050565b600080549080805b83811015610f82576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610f1557805192505b886001600160a01b0316836001600160a01b03161415610f6f5781868581518110610f4257610f4261312b565b602090810291909101015283610f57816130d0565b94505086841415610f6f575093979650505050505050565b5080610f7a816130d0565b915050610ec3565b5060405162461bcd60e51b8152602060048201526024808201527f455243373231413a20756e61626c6520746f206765742077616c6c65744f664f6044820152633bb732b960e11b6064820152608401610969565b6000805482106110355760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610969565b5090565b6008546001600160a01b031633146110635760405162461bcd60e51b815260040161096990612e7c565b600d805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b031633146110ab5760405162461bcd60e51b815260040161096990612e7c565b600d805460ff19166001179055565b60006110c582612050565b5192915050565b60006001600160a01b0382166111385760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610969565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146111875760405162461bcd60e51b815260040161096990612e7c565b61119160006121f9565b565b6008546001600160a01b031633146111bd5760405162461bcd60e51b815260040161096990612e7c565b600c55565b600d54610100900460ff1661120e5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b6044820152606401610969565b600d5462010000900460ff166112665760405162461bcd60e51b815260206004820152601760248201527f57686974656c697374206973206e6f74206163746976650000000000000000006044820152606401610969565b6112708133611767565b6112ae5760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610969565b600d546301000000900460ff1661149957600b546000541061131d5760405162461bcd60e51b815260206004820152602260248201527f416c6c207075626c696320746f6b656e732068617665206265656e206d696e74604482015261195960f21b6064820152608401610969565b600f5482111561136f5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736044820152606401610969565b600b546113858361137f60005490565b9061224b565b11156113a35760405162461bcd60e51b815260040161096990612eb1565b600f54336000908152601060205260409020546113c0908461224b565b111561140e5760405162461bcd60e51b815260206004820181905260248201527f50757263686173652065786365656473206d61782077686974656c69737465646044820152606401610969565b600c54349061141d908461225e565b1461146a5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610969565b3360009081526010602052604081208054849290611489908490612fc8565b90915550610ccb90503383612036565b6121b26114a560005490565b11156114f35760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610969565b816001146115435760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736044820152606401610969565b3360009081526011602052604090205460ff16156115a35760405162461bcd60e51b815260206004820152601860248201527f416c726561647920636c61696d656420676976656177617900000000000000006044820152606401610969565b336000818152601160205260409020805460ff19166001179055610ccb9083612036565b600d54610100900460ff166116175760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b6044820152606401610969565b600d5462010000900460ff16156116705760405162461bcd60e51b815260206004820152601760248201527f50726573616c65206973207374696c6c206163746976650000000000000000006044820152606401610969565b60148111156116c15760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74206d696e742061626f7665206c696d69740000000000000000006044820152606401610969565b600b546116d18261137f60005490565b11156116ef5760405162461bcd60e51b815260040161096990612eb1565b600c5434906116fe908361225e565b1461174b5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610969565b6117553382612036565b50565b60606002805461087b90613095565b600081815b84518110156118995760008582815181106117895761178961312b565b6020026020010151905080831161181257604080516020810185905290810182905260029060600160408051601f19818403018152908290526117cb91612d3e565b602060405180830381855afa1580156117e8573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061180b9190612b4b565b9250611886565b604080516020810183905290810184905260029060600160408051601f198184030181529082905261184391612d3e565b602060405180830381855afa158015611860573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906118839190612b4b565b92505b5080611891816130d0565b91505061176c565b50600e54149392505050565b6001600160a01b0382163314156118fe5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610969565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611975848484611cb0565b6119818484848461226a565b61199d5760405162461bcd60e51b815260040161096990612f00565b50505050565b60606119b0826000541190565b611a145760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610969565b600d5460ff16611a4657600a604051602001611a309190612d5a565b6040516020818303038152906040529050919050565b6009611a5183612378565b604051602001611a30929190612d66565b919050565b6008546001600160a01b03163314611a915760405162461bcd60e51b815260040161096990612e7c565b60005b8251811015610aa1576121b282611aaa60005490565b611ab49190612fc8565b1115611ad25760405162461bcd60e51b815260040161096990612e1f565b611af5838281518110611ae757611ae761312b565b602002602001015183612036565b80611aff816130d0565b915050611a94565b6008546001600160a01b03163314611b315760405162461bcd60e51b815260040161096990612e7c565b8151611b4490600a90602085019061274f565b508051610aa190600990602084019061274f565b6008546001600160a01b03163314611b825760405162461bcd60e51b815260040161096990612e7c565b6001600160a01b038116611be75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610969565b611755816121f9565b6008546001600160a01b03163314611c1a5760405162461bcd60e51b815260040161096990612e7c565b600e91909155600f55565b6008546001600160a01b03163314611c4f5760405162461bcd60e51b815260040161096990612e7c565b600b55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611cbb82612050565b80519091506000906001600160a01b0316336001600160a01b03161480611cf2575033611ce7846108fe565b6001600160a01b0316145b80611d0457508151611d04903361075b565b905080611d6e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610969565b846001600160a01b031682600001516001600160a01b031614611de25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610969565b6001600160a01b038416611e465760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610969565b611e566000848460000151611c54565b6001600160a01b0385166000908152600460205260408120805460019290611e889084906001600160801b0316613013565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611ed491859116612fa6565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611f5b846001612fc8565b6000818152600360205260409020549091506001600160a01b0316611fec57611f85816000541190565b15611fec5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610ccb828260405180602001604052806000815250612475565b604080518082019091526000808252602082015261206f826000541190565b6120ce5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610969565b60007f0000000000000000000000000000000000000000000000000000000000000014831061212f576121217f00000000000000000000000000000000000000000000000000000000000000148461303b565b61212c906001612fc8565b90505b825b818110612198576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561218557949350505050565b50806121908161307e565b915050612131565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610969565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006122578284612fc8565b9392505050565b60006122578284612ff4565b60006001600160a01b0384163b1561236c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122ae903390899088908890600401612d8b565b602060405180830381600087803b1580156122c857600080fd5b505af19250505080156122f8575060408051601f3d908101601f191682019092526122f591810190612b81565b60015b612352573d808015612326576040519150601f19603f3d011682016040523d82523d6000602084013e61232b565b606091505b50805161234a5760405162461bcd60e51b815260040161096990612f00565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612370565b5060015b949350505050565b60608161239c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123c657806123b0816130d0565b91506123bf9050600a83612fe0565b91506123a0565b6000816001600160401b038111156123e0576123e0613141565b6040519080825280601f01601f19166020018201604052801561240a576020820181803683370190505b5090505b84156123705761241f60018361303b565b915061242c600a866130eb565b612437906030612fc8565b60f81b81838151811061244c5761244c61312b565b60200101906001600160f81b031916908160001a90535061246e600a86612fe0565b945061240e565b6000546001600160a01b0384166124d85760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610969565b6124e3816000541190565b156125305760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610969565b7f00000000000000000000000000000000000000000000000000000000000000148311156125ab5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610969565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612607908790612fa6565b6001600160801b031681526020018583602001516126259190612fa6565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156127445760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612708600088848861226a565b6127245760405162461bcd60e51b815260040161096990612f00565b8161272e816130d0565b925050808061273c906130d0565b9150506126bb565b50600081905561202e565b82805461275b90613095565b90600052602060002090601f01602090048101928261277d57600085556127c3565b82601f1061279657805160ff19168380011785556127c3565b828001600101855582156127c3579182015b828111156127c35782518255916020019190600101906127a8565b506110359291505b8082111561103557600081556001016127cb565b60006001600160401b038311156127f8576127f8613141565b61280b601f8401601f1916602001612f53565b905082815283838301111561281f57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a6257600080fd5b600082601f83011261285e57600080fd5b8135602061287361286e83612f83565b612f53565b80838252828201915082860187848660051b890101111561289357600080fd5b60005b858110156128b257813584529284019290840190600101612896565b5090979650505050505050565b80358015158114611a6257600080fd5b600082601f8301126128e057600080fd5b612257838335602085016127df565b60006020828403121561290157600080fd5b61225782612836565b6000806040838503121561291d57600080fd5b61292683612836565b915061293460208401612836565b90509250929050565b60008060006060848603121561295257600080fd5b61295b84612836565b925061296960208501612836565b9150604084013590509250925092565b6000806000806080858703121561298f57600080fd5b61299885612836565b93506129a660208601612836565b92506040850135915060608501356001600160401b038111156129c857600080fd5b8501601f810187136129d957600080fd5b6129e8878235602084016127df565b91505092959194509250565b60008060408385031215612a0757600080fd5b612a1083612836565b9150612934602084016128bf565b60008060408385031215612a3157600080fd5b612a3a83612836565b946020939093013593505050565b60008060408385031215612a5b57600080fd5b82356001600160401b03811115612a7157600080fd5b8301601f81018513612a8257600080fd5b80356020612a9261286e83612f83565b80838252828201915082850189848660051b8801011115612ab257600080fd5b600095505b84861015612adc57612ac881612836565b835260019590950194918301918301612ab7565b5098969091013596505050505050565b60008060408385031215612aff57600080fd5b82356001600160401b03811115612b1557600080fd5b612b218582860161284d565b95602094909401359450505050565b600060208284031215612b4257600080fd5b612257826128bf565b600060208284031215612b5d57600080fd5b5051919050565b600060208284031215612b7657600080fd5b813561225781613157565b600060208284031215612b9357600080fd5b815161225781613157565b60008060408385031215612bb157600080fd5b82356001600160401b0380821115612bc857600080fd5b612bd4868387016128cf565b93506020850135915080821115612bea57600080fd5b50612bf7858286016128cf565b9150509250929050565b600060208284031215612c1357600080fd5b5035919050565b60008060408385031215612c2d57600080fd5b8235915060208301356001600160401b03811115612c4a57600080fd5b612bf78582860161284d565b60008060408385031215612c6957600080fd5b50508035926020909101359150565b60008151808452612c90816020860160208601613052565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680612cbe57607f831692505b6020808410821415612ce057634e487b7160e01b600052602260045260246000fd5b818015612cf45760018114612d0557612d32565b60ff19861689528489019650612d32565b60008881526020902060005b86811015612d2a5781548b820152908501908301612d11565b505084890196505b50505050505092915050565b60008251612d50818460208701613052565b9190910192915050565b60006122578284612ca4565b6000612d728285612ca4565b8351612d82818360208801613052565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612dbe90830184612c78565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612e0057835183529284019291840191600101612de4565b50909695505050505050565b6020815260006122576020830184612c78565b60208082526038908201527f546f6b656e73206e756d62657220746f206d696e742063616e6e6f742065786360408201527f656564206e756d626572206f66204d415820746f6b656e730000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f507572636861736520776f756c6420657863656564206d6178207075626c696360408201526e20737570706c79206f66204e46547360881b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612f7b57612f7b613141565b604052919050565b60006001600160401b03821115612f9c57612f9c613141565b5060051b60200190565b60006001600160801b03808316818516808303821115612d8257612d826130ff565b60008219821115612fdb57612fdb6130ff565b500190565b600082612fef57612fef613115565b500490565b600081600019048311821515161561300e5761300e6130ff565b500290565b60006001600160801b0383811690831681811015613033576130336130ff565b039392505050565b60008282101561304d5761304d6130ff565b500390565b60005b8381101561306d578181015183820152602001613055565b8381111561199d5750506000910152565b60008161308d5761308d6130ff565b506000190190565b600181811c908216806130a957607f821691505b602082108114156130ca57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130e4576130e46130ff565b5060010190565b6000826130fa576130fa613115565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461175557600080fdfea2646970667358221220341ae8b105f02ee6d9c9e777a988d691ad5f0fa26689e1a91ea1c1b05469f41d64736f6c63430008070033

Deployed Bytecode Sourcemap

66172:7362:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53932:370;;;;;;;;;;-1:-1:-1;53932:370:0;;;;;:::i;:::-;;:::i;:::-;;;11196:14:1;;11189:22;11171:41;;11159:2;11144:18;53932:370:0;;;;;;;;55658:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57183:204::-;;;;;;;;;;-1:-1:-1;57183:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9857:32:1;;;9839:51;;9827:2;9812:18;57183:204:0;9693:203:1;56746:379:0;;;;;;;;;;-1:-1:-1;56746:379:0;;;;;:::i;:::-;;:::i;:::-;;51659:94;;;;;;;;;;-1:-1:-1;51712:7:0;51735:12;51659:94;;;11369:25:1;;;11357:2;11342:18;51659:94:0;11223:177:1;66637:20:0;;;;;;;;;;-1:-1:-1;66637:20:0;;;;;;;;;;;66801:51;;;;;;;;;;-1:-1:-1;66801:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;58033:150;;;;;;;;;;-1:-1:-1;58033:150:0;;;;;:::i;:::-;;:::i;67176:134::-;;;;;;;;;;-1:-1:-1;67176:134:0;;;;;:::i;:::-;;:::i;52287:744::-;;;;;;;;;;-1:-1:-1;52287:744:0;;;;;:::i;:::-;;:::i;71215:261::-;;;;;;;;;;-1:-1:-1;71215:261:0;;;;;:::i;:::-;;:::i;68477:377::-;;;;;;;;;;;;;:::i;67421:146::-;;;;;;;;;;-1:-1:-1;67421:146:0;;;;;:::i;:::-;;:::i;58246:165::-;;;;;;;;;;-1:-1:-1;58246:165:0;;;;;:::i;:::-;;:::i;53037:831::-;;;;;;;;;;-1:-1:-1;53037:831:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51822:177::-;;;;;;;;;;-1:-1:-1;51822:177:0;;;;;:::i;:::-;;:::i;67675:146::-;;;;;;;;;;-1:-1:-1;67675:146:0;;;;;:::i;:::-;;:::i;66985:95::-;;;;;;;;;;;;;:::i;66664:27::-;;;;;;;;;;-1:-1:-1;66664:27:0;;;;;;;;;;;55481:118;;;;;;;;;;-1:-1:-1;55481:118:0;;;;;:::i;:::-;;:::i;54358:211::-;;;;;;;;;;-1:-1:-1;54358:211:0;;;;;:::i;:::-;;:::i;2498:94::-;;;;;;;;;;;;;:::i;68139:92::-;;;;;;;;;;-1:-1:-1;68139:92:0;;;;;:::i;:::-;;:::i;1847:87::-;;;;;;;;;;-1:-1:-1;1920:6:0;;-1:-1:-1;;;;;1920:6:0;1847:87;;69731:1400;;;;;;:::i;:::-;;:::i;69015:559::-;;;;;;:::i;:::-;;:::i;55813:98::-;;;;;;;;;;;;;:::i;72753:774::-;;;;;;;;;;-1:-1:-1;72753:774:0;;;;;:::i;:::-;;:::i;57451:274::-;;;;;;;;;;-1:-1:-1;57451:274:0;;;;;:::i;:::-;;:::i;66549:43::-;;;;;;;;;;;;;;;;66612:18;;;;;;;;;;-1:-1:-1;66612:18:0;;;;;;;;66757:37;;;;;;;;;;;;;;;;58474:319;;;;;;;;;;-1:-1:-1;58474:319:0;;;;;:::i;:::-;;:::i;72060:436::-;;;;;;;;;;-1:-1:-1;72060:436:0;;;;;:::i;:::-;;:::i;66698:26::-;;;;;;;;;;-1:-1:-1;66698:26:0;;;;;;;;;;;71564:352;;;;;;;;;;-1:-1:-1;71564:352:0;;;;;:::i;:::-;;:::i;66461:35::-;;;;;;;;;;;;;;;;62813:43;;;;;;;;;;;;;;;;66409:45;;;;;;;;;;;;66452:2;66409:45;;67888:193;;;;;;;;;;-1:-1:-1;67888:193:0;;;;;:::i;:::-;;:::i;57788:186::-;;;;;;;;;;-1:-1:-1;57788:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;57933:25:0;;;57910:4;57933:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;57788:186;66731:19;;;;;;;;;;;;;;;;2747:192;;;;;;;;;;-1:-1:-1;2747:192:0;;;;;:::i;:::-;;:::i;72572:146::-;;;;;;;;;;-1:-1:-1;72572:146:0;;;;;:::i;:::-;;:::i;68287:90::-;;;;;;;;;;-1:-1:-1;68287:90:0;;;;;:::i;:::-;;:::i;53932:370::-;54059:4;-1:-1:-1;;;;;;54089:40:0;;-1:-1:-1;;;54089:40:0;;:99;;-1:-1:-1;;;;;;;54140:48:0;;-1:-1:-1;;;54140:48:0;54089:99;:160;;;-1:-1:-1;;;;;;;54199:50:0;;-1:-1:-1;;;54199:50:0;54089:160;:207;;;-1:-1:-1;;;;;;;;;;21381:40:0;;;54260:36;54075:221;53932:370;-1:-1:-1;;53932:370:0:o;55658:94::-;55712:13;55741:5;55734:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55658:94;:::o;57183:204::-;57251:7;57275:16;57283:7;59089:4;59119:12;-1:-1:-1;59109:22:0;59032:105;57275:16;57267:74;;;;-1:-1:-1;;;57267:74:0;;24257:2:1;57267:74:0;;;24239:21:1;24296:2;24276:18;;;24269:30;24335:34;24315:18;;;24308:62;-1:-1:-1;;;24386:18:1;;;24379:43;24439:19;;57267:74:0;;;;;;;;;-1:-1:-1;57357:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;57357:24:0;;57183:204::o;56746:379::-;56815:13;56831:24;56847:7;56831:15;:24::i;:::-;56815:40;;56876:5;-1:-1:-1;;;;;56870:11:0;:2;-1:-1:-1;;;;;56870:11:0;;;56862:58;;;;-1:-1:-1;;;56862:58:0;;20371:2:1;56862:58:0;;;20353:21:1;20410:2;20390:18;;;20383:30;20449:34;20429:18;;;20422:62;-1:-1:-1;;;20500:18:1;;;20493:32;20542:19;;56862:58:0;20169:398:1;56862:58:0;740:10;-1:-1:-1;;;;;56945:21:0;;;;:62;;-1:-1:-1;56970:37:0;56987:5;740:10;57788:186;:::i;56970:37::-;56929:153;;;;-1:-1:-1;;;56929:153:0;;16383:2:1;56929:153:0;;;16365:21:1;16422:2;16402:18;;;16395:30;16461:34;16441:18;;;16434:62;16532:27;16512:18;;;16505:55;16577:19;;56929:153:0;16181:421:1;56929:153:0;57091:28;57100:2;57104:7;57113:5;57091:8;:28::i;:::-;56808:317;56746:379;;:::o;58033:150::-;58149:28;58159:4;58165:2;58169:7;58149:9;:28::i;67176:134::-;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;67282:8:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;67282:20:0;;::::1;::::0;;;::::1;::::0;;67176:134::o;52287:744::-;52396:7;52431:16;52441:5;52431:9;:16::i;:::-;52423:5;:24;52415:71;;;;-1:-1:-1;;;52415:71:0;;11831:2:1;52415:71:0;;;11813:21:1;11870:2;11850:18;;;11843:30;11909:34;11889:18;;;11882:62;-1:-1:-1;;;11960:18:1;;;11953:32;12002:19;;52415:71:0;11629:398:1;52415:71:0;52493:22;51735:12;;;52493:22;;52613:350;52637:14;52633:1;:18;52613:350;;;52667:31;52701:14;;;:11;:14;;;;;;;;;52667:48;;;;;;;;;-1:-1:-1;;;;;52667:48:0;;;;;-1:-1:-1;;;52667:48:0;;;-1:-1:-1;;;;;52667:48:0;;;;;;;;52728:28;52724:89;;52789:14;;;-1:-1:-1;52724:89:0;52846:5;-1:-1:-1;;;;;52825:26:0;:17;-1:-1:-1;;;;;52825:26:0;;52821:135;;;52883:5;52868:11;:20;52864:59;;;-1:-1:-1;52910:1:0;-1:-1:-1;52903:8:0;;-1:-1:-1;;;52903:8:0;52864:59;52933:13;;;;:::i;:::-;;;;52821:135;-1:-1:-1;52653:3:0;;;;:::i;:::-;;;;52613:350;;;-1:-1:-1;52969:56:0;;-1:-1:-1;;;52969:56:0;;22315:2:1;52969:56:0;;;22297:21:1;22354:2;22334:18;;;22327:30;22393:34;22373:18;;;22366:62;-1:-1:-1;;;22444:18:1;;;22437:44;22498:19;;52969:56:0;22113:410:1;71215:261:0;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;66538:4:::1;71361;71347:13;51712:7:::0;51735:12;;51659:94;71347:13:::1;:18;;;;:::i;:::-;:29;;71339:98;;;;-1:-1:-1::0;;;71339:98:0::1;;;;;;;:::i;:::-;71448:20;71458:3;71463:4;71448:9;:20::i;:::-;71215:261:::0;;:::o;68477:377::-;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;68569:21:::1;68609:11:::0;68601:56:::1;;;::::0;-1:-1:-1;;;68601:56:0;;15678:2:1;68601:56:0::1;::::0;::::1;15660:21:1::0;;;15697:18;;;15690:30;15756:34;15736:18;;;15729:62;15808:18;;68601:56:0::1;15476:356:1::0;68601:56:0::1;68676:42;68668:84;68747:4;68730:13;:7:::0;68740:3:::1;68730:13;:::i;:::-;68729:22;;;;:::i;:::-;68668:84;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;68771:42:0::1;68763:83;68841:4;68825:12;:7:::0;68835:2:::1;68825:12;:::i;:::-;68824:21;;;;:::i;:::-;68763:83;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;67421:146:::0;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;67532:15:::1;:27:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;67532:27:0;;::::1;::::0;;;::::1;::::0;;67421:146::o;58246:165::-;58366:39;58383:4;58389:2;58393:7;58366:39;;;;;;;;;;;;:16;:39::i;53037:831::-;53095:16;53120:18;53141:16;53151:5;53141:9;:16::i;:::-;53120:37;;53166:25;53208:10;-1:-1:-1;;;;;53194:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53194:25:0;-1:-1:-1;53166:53:0;-1:-1:-1;53230:15:0;53226:58;;53268:8;53037:831;-1:-1:-1;;;53037:831:0:o;53226:58::-;53292:22;51735:12;;;53292:22;;53412:398;53436:14;53432:1;:18;53412:398;;;53466:31;53500:14;;;:11;:14;;;;;;;;;53466:48;;;;;;;;;-1:-1:-1;;;;;53466:48:0;;;;;-1:-1:-1;;;53466:48:0;;;-1:-1:-1;;;;;53466:48:0;;;;;;;;53527:28;53523:89;;53588:14;;;-1:-1:-1;53523:89:0;53645:5;-1:-1:-1;;;;;53624:26:0;:17;-1:-1:-1;;;;;53624:26:0;;53620:183;;;53687:1;53663:8;53672:11;53663:21;;;;;;;;:::i;:::-;;;;;;;;;;:25;53699:13;;;;:::i;:::-;;;;53742:10;53727:11;:25;53723:71;;;-1:-1:-1;53774:8:0;;53037:831;-1:-1:-1;;;;;;;53037:831:0:o;53723:71::-;-1:-1:-1;53452:3:0;;;;:::i;:::-;;;;53412:398;;;-1:-1:-1;53816:46:0;;-1:-1:-1;;;53816:46:0;;14160:2:1;53816:46:0;;;14142:21:1;14199:2;14179:18;;;14172:30;14238:34;14218:18;;;14211:62;-1:-1:-1;;;14289:18:1;;;14282:34;14333:19;;53816:46:0;13958:400:1;51822:177:0;51889:7;51735:12;;51913:5;:21;51905:69;;;;-1:-1:-1;;;51905:69:0;;13756:2:1;51905:69:0;;;13738:21:1;13795:2;13775:18;;;13768:30;13834:34;13814:18;;;13807:62;-1:-1:-1;;;13885:18:1;;;13878:33;13928:19;;51905:69:0;13554:399:1;51905:69:0;-1:-1:-1;51988:5:0;51822:177::o;67675:146::-;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;67787:14:::1;:26:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;67787:26:0;;::::1;::::0;;;::::1;::::0;;67675:146::o;66985:95::-;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;67059:6:::1;:13:::0;;-1:-1:-1;;67059:13:0::1;67068:4;67059:13;::::0;;66985:95::o;55481:118::-;55545:7;55568:20;55580:7;55568:11;:20::i;:::-;:25;;55481:118;-1:-1:-1;;55481:118:0:o;54358:211::-;54422:7;-1:-1:-1;;;;;54446:19:0;;54438:75;;;;-1:-1:-1;;;54438:75:0;;17234:2:1;54438:75:0;;;17216:21:1;17273:2;17253:18;;;17246:30;17312:34;17292:18;;;17285:62;-1:-1:-1;;;17363:18:1;;;17356:41;17414:19;;54438:75:0;17032:407:1;54438:75:0;-1:-1:-1;;;;;;54535:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;54535:27:0;;54358:211::o;2498:94::-;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;2563:21:::1;2581:1;2563:9;:21::i;:::-;2498:94::o:0;68139:92::-;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;68206:8:::1;:17:::0;68139:92::o;69731:1400::-;69890:8;;;;;;;69882:39;;;;-1:-1:-1;;;69882:39:0;;14971:2:1;69882:39:0;;;14953:21:1;15010:2;14990:18;;;14983:30;-1:-1:-1;;;15029:18:1;;;15022:48;15087:18;;69882:39:0;14769:342:1;69882:39:0;69940:15;;;;;;;69932:51;;;;-1:-1:-1;;;69932:51:0;;12234:2:1;69932:51:0;;;12216:21:1;12273:2;12253:18;;;12246:30;12312:25;12292:18;;;12285:53;12355:18;;69932:51:0;12032:347:1;69932:51:0;70002:53;70009:6;70041:10;70002:6;:53::i;:::-;69994:81;;;;-1:-1:-1;;;69994:81:0;;16039:2:1;69994:81:0;;;16021:21:1;16078:2;16058:18;;;16051:30;-1:-1:-1;;;16097:18:1;;;16090:45;16152:18;;69994:81:0;15837:339:1;69994:81:0;70091:14;;;;;;;70086:1038;;70145:14;;51712:7;51735:12;70129:30;70121:77;;;;-1:-1:-1;;;70121:77:0;;23082:2:1;70121:77:0;;;23064:21:1;23121:2;23101:18;;;23094:30;23160:34;23140:18;;;23133:62;-1:-1:-1;;;23211:18:1;;;23204:32;23253:19;;70121:77:0;22880:398:1;70121:77:0;70237:18;;70221:12;:34;;70213:79;;;;-1:-1:-1;;;70213:79:0;;25427:2:1;70213:79:0;;;25409:21:1;;;25446:18;;;25439:30;25505:34;25485:18;;;25478:62;25557:18;;70213:79:0;25225:356:1;70213:79:0;70350:14;;70315:31;70333:12;70315:13;51712:7;51735:12;;51659:94;70315:13;:17;;:31::i;:::-;:49;;70307:109;;;;-1:-1:-1;;;70307:109:0;;;;;;;:::i;:::-;70489:18;;70456:10;70439:28;;;;:16;:28;;;;;;:46;;70472:12;70439:32;:46::i;:::-;:68;;70431:113;;;;-1:-1:-1;;;70431:113:0;;21552:2:1;70431:113:0;;;21534:21:1;;;21571:18;;;21564:30;21630:34;21610:18;;;21603:62;21682:18;;70431:113:0;21350:356:1;70431:113:0;70567:8;;70597:9;;70567:26;;70580:12;70567;:26::i;:::-;:39;70559:83;;;;-1:-1:-1;;;70559:83:0;;15318:2:1;70559:83:0;;;15300:21:1;15357:2;15337:18;;;15330:30;15396:33;15376:18;;;15369:61;15447:18;;70559:83:0;15116:355:1;70559:83:0;70674:10;70657:28;;;;:16;:28;;;;;:44;;70689:12;;70657:28;:44;;70689:12;;70657:44;:::i;:::-;;;;-1:-1:-1;70716:35:0;;-1:-1:-1;70726:10:0;70738:12;70716:9;:35::i;70086:1038::-;66538:4;70792:13;51712:7;51735:12;;51659:94;70792:13;:24;;70784:64;;;;-1:-1:-1;;;70784:64:0;;23901:2:1;70784:64:0;;;23883:21:1;23940:2;23920:18;;;23913:30;23979:29;23959:18;;;23952:57;24026:18;;70784:64:0;23699:351:1;70784:64:0;70871:12;70887:1;70871:17;70863:62;;;;-1:-1:-1;;;70863:62:0;;25427:2:1;70863:62:0;;;25409:21:1;;;25446:18;;;25439:30;25505:34;25485:18;;;25478:62;25557:18;;70863:62:0;25225:356:1;70863:62:0;70969:10;70949:31;;;;:19;:31;;;;;;;;70948:32;70940:69;;;;-1:-1:-1;;;70940:69:0;;25074:2:1;70940:69:0;;;25056:21:1;25113:2;25093:18;;;25086:30;25152:26;25132:18;;;25125:54;25196:18;;70940:69:0;24872:348:1;70940:69:0;71044:10;71024:31;;;;:19;:31;;;;;:38;;-1:-1:-1;;71024:38:0;71058:4;71024:38;;;71077:35;;71099:12;71077:9;:35::i;69015:559::-;69127:8;;;;;;;69119:43;;;;-1:-1:-1;;;69119:43:0;;17646:2:1;69119:43:0;;;17628:21:1;17685:2;17665:18;;;17658:30;-1:-1:-1;;;17704:18:1;;;17697:52;17766:18;;69119:43:0;17444:346:1;69119:43:0;69182:15;;;;;;;69181:16;69173:52;;;;-1:-1:-1;;;69173:52:0;;22730:2:1;69173:52:0;;;22712:21:1;22769:2;22749:18;;;22742:30;22808:25;22788:18;;;22781:53;22851:18;;69173:52:0;22528:347:1;69173:52:0;66452:2;69244:12;:32;;69236:68;;;;-1:-1:-1;;;69236:68:0;;13404:2:1;69236:68:0;;;13386:21:1;13443:2;13423:18;;;13416:30;13482:25;13462:18;;;13455:53;13525:18;;69236:68:0;13202:347:1;69236:68:0;69358:14;;69323:31;69341:12;69323:13;51712:7;51735:12;;51659:94;69323:31;:49;;69315:109;;;;-1:-1:-1;;;69315:109:0;;;;;;;:::i;:::-;69443:8;;69473:9;;69443:26;;69456:12;69443;:26::i;:::-;:39;69435:83;;;;-1:-1:-1;;;69435:83:0;;15318:2:1;69435:83:0;;;15300:21:1;15357:2;15337:18;;;15330:30;15396:33;15376:18;;;15369:61;15447:18;;69435:83:0;15116:355:1;69435:83:0;69531:35;69541:10;69553:12;69531:9;:35::i;:::-;69015:559;:::o;55813:98::-;55869:13;55898:7;55891:14;;;;;:::i;72753:774::-;72828:4;72868;72828;72885:519;72909:5;:12;72905:1;:16;72885:519;;;72943:20;72966:5;72972:1;72966:8;;;;;;;;:::i;:::-;;;;;;;72943:31;;73011:12;72995;:28;72991:402;;73145:44;;;;;;8736:19:1;;;8771:12;;;8764:28;;;73138:52:0;;8808:12:1;;73145:44:0;;;-1:-1:-1;;73145:44:0;;;;;;;;;;73138:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73123:67;;72991:402;;;73332:44;;;;;;8736:19:1;;;8771:12;;;8764:28;;;73325:52:0;;8808:12:1;;73332:44:0;;;-1:-1:-1;;73332:44:0;;;;;;;;;;73325:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73310:67;;72991:402;-1:-1:-1;72923:3:0;;;;:::i;:::-;;;;72885:519;;;-1:-1:-1;73515:4:0;;73499:20;;72753:774;-1:-1:-1;;;72753:774:0:o;57451:274::-;-1:-1:-1;;;;;57542:24:0;;740:10;57542:24;;57534:63;;;;-1:-1:-1;;;57534:63:0;;19181:2:1;57534:63:0;;;19163:21:1;19220:2;19200:18;;;19193:30;19259:28;19239:18;;;19232:56;19305:18;;57534:63:0;18979:350:1;57534:63:0;740:10;57606:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;57606:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;57606:53:0;;;;;;;;;;57671:48;;11171:41:1;;;57606:42:0;;740:10;57671:48;;11144:18:1;57671:48:0;;;;;;;57451:274;;:::o;58474:319::-;58619:28;58629:4;58635:2;58639:7;58619:9;:28::i;:::-;58670:48;58693:4;58699:2;58703:7;58712:5;58670:22;:48::i;:::-;58654:133;;;;-1:-1:-1;;;58654:133:0;;;;;;;:::i;:::-;58474:319;;;;:::o;72060:436::-;72195:13;72234:17;72242:8;59089:4;59119:12;-1:-1:-1;59109:22:0;59032:105;72234:17;72226:77;;;;-1:-1:-1;;;72226:77:0;;18765:2:1;72226:77:0;;;18747:21:1;18804:2;18784:18;;;18777:30;18843:34;18823:18;;;18816:62;-1:-1:-1;;;18894:18:1;;;18887:45;18949:19;;72226:77:0;18563:411:1;72226:77:0;72319:6;;;;72314:175;;72373:8;72356:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;72342:41;;72060:436;;;:::o;72314:175::-;72447:7;72456:19;:8;:17;:19::i;:::-;72430:46;;;;;;;;;:::i;72314:175::-;72060:436;;;:::o;71564:352::-;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;71711:9:::1;71707:202;71730:3;:10;71726:1;:14;71707:202;;;66538:4;71783;71769:13;51712:7:::0;51735:12;;51659:94;71769:13:::1;:18;;;;:::i;:::-;:29;;71761:98;;;;-1:-1:-1::0;;;71761:98:0::1;;;;;;;:::i;:::-;71874:23;71884:3;71888:1;71884:6;;;;;;;;:::i;:::-;;;;;;;71892:4;71874:9;:23::i;:::-;71742:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71707:202;;67888:193:::0;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;68028:20;;::::1;::::0;:8:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;68059:14:0;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;2747:192::-:0;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2836:22:0;::::1;2828:73;;;::::0;-1:-1:-1;;;2828:73:0;;12586:2:1;2828:73:0::1;::::0;::::1;12568:21:1::0;12625:2;12605:18;;;12598:30;12664:34;12644:18;;;12637:62;-1:-1:-1;;;12715:18:1;;;12708:36;12761:19;;2828:73:0::1;12384:402:1::0;2828:73:0::1;2912:19;2922:8;2912:9;:19::i;72572:146::-:0;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;72653:4:::1;:21:::0;;;;72685:18:::1;:25:::0;72572:146::o;68287:90::-;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;68349:14:::1;:20:::0;68287:90::o;62635:172::-;62732:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;62732:29:0;-1:-1:-1;;;;;62732:29:0;;;;;;;;;62773:28;;62732:24;;62773:28;;;;;;;62635:172;;;:::o;61000:1529::-;61097:35;61135:20;61147:7;61135:11;:20::i;:::-;61206:18;;61097:58;;-1:-1:-1;61164:22:0;;-1:-1:-1;;;;;61190:34:0;740:10;-1:-1:-1;;;;;61190:34:0;;:81;;;-1:-1:-1;740:10:0;61235:20;61247:7;61235:11;:20::i;:::-;-1:-1:-1;;;;;61235:36:0;;61190:81;:142;;;-1:-1:-1;61299:18:0;;61282:50;;740:10;57788:186;:::i;61282:50::-;61164:169;;61358:17;61342:101;;;;-1:-1:-1;;;61342:101:0;;19536:2:1;61342:101:0;;;19518:21:1;19575:2;19555:18;;;19548:30;19614:34;19594:18;;;19587:62;-1:-1:-1;;;19665:18:1;;;19658:48;19723:19;;61342:101:0;19334:414:1;61342:101:0;61490:4;-1:-1:-1;;;;;61468:26:0;:13;:18;;;-1:-1:-1;;;;;61468:26:0;;61452:98;;;;-1:-1:-1;;;61452:98:0;;17997:2:1;61452:98:0;;;17979:21:1;18036:2;18016:18;;;18009:30;18075:34;18055:18;;;18048:62;-1:-1:-1;;;18126:18:1;;;18119:36;18172:19;;61452:98:0;17795:402:1;61452:98:0;-1:-1:-1;;;;;61565:16:0;;61557:66;;;;-1:-1:-1;;;61557:66:0;;14565:2:1;61557:66:0;;;14547:21:1;14604:2;14584:18;;;14577:30;14643:34;14623:18;;;14616:62;-1:-1:-1;;;14694:18:1;;;14687:35;14739:19;;61557:66:0;14363:401:1;61557:66:0;61732:49;61749:1;61753:7;61762:13;:18;;;61732:8;:49::i;:::-;-1:-1:-1;;;;;61790:18:0;;;;;;:12;:18;;;;;:31;;61820:1;;61790:18;:31;;61820:1;;-1:-1:-1;;;;;61790:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;61790:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;61828:16:0;;-1:-1:-1;61828:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;61828:16:0;;:29;;-1:-1:-1;;61828:29:0;;:::i;:::-;;;-1:-1:-1;;;;;61828:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61887:43:0;;;;;;;;-1:-1:-1;;;;;61887:43:0;;;;;-1:-1:-1;;;;;61913:15:0;61887:43;;;;;;;;;-1:-1:-1;61864:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;61864:66:0;-1:-1:-1;;;;;;61864:66:0;;;;;;;;;;;62180:11;61876:7;-1:-1:-1;62180:11:0;:::i;:::-;62243:1;62202:24;;;:11;:24;;;;;:29;62158:33;;-1:-1:-1;;;;;;62202:29:0;62198:236;;62260:20;62268:11;59089:4;59119:12;-1:-1:-1;59109:22:0;59032:105;62260:20;62256:171;;;62320:97;;;;;;;;62347:18;;-1:-1:-1;;;;;62320:97:0;;;;;;62378:28;;;;-1:-1:-1;;;;;62320:97:0;;;;;;;;;-1:-1:-1;62293:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;62293:124:0;-1:-1:-1;;;;;;62293:124:0;;;;;;;;;;;;62256:171;62466:7;62462:2;-1:-1:-1;;;;;62447:27:0;62456:4;-1:-1:-1;;;;;62447:27:0;;;;;;;;;;;62481:42;61090:1439;;;61000:1529;;;:::o;59143:98::-;59208:27;59218:2;59222:8;59208:27;;;;;;;;;;;;:9;:27::i;54821:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;54938:16:0;54946:7;59089:4;59119:12;-1:-1:-1;59109:22:0;59032:105;54938:16;54930:71;;;;-1:-1:-1;;;54930:71:0;;12993:2:1;54930:71:0;;;12975:21:1;13032:2;13012:18;;;13005:30;13071:34;13051:18;;;13044:62;-1:-1:-1;;;13122:18:1;;;13115:40;13172:19;;54930:71:0;12791:406:1;54930:71:0;55010:26;55058:12;55047:7;:23;55043:93;;55102:22;55112:12;55102:7;:22;:::i;:::-;:26;;55127:1;55102:26;:::i;:::-;55081:47;;55043:93;55164:7;55144:212;55181:18;55173:4;:26;55144:212;;55218:31;55252:17;;;:11;:17;;;;;;;;;55218:51;;;;;;;;;-1:-1:-1;;;;;55218:51:0;;;;;-1:-1:-1;;;55218:51:0;;;-1:-1:-1;;;;;55218:51:0;;;;;;;;55282:28;55278:71;;55330:9;54821:606;-1:-1:-1;;;;54821:606:0:o;55278:71::-;-1:-1:-1;55201:6:0;;;;:::i;:::-;;;;55144:212;;;-1:-1:-1;55364:57:0;;-1:-1:-1;;;55364:57:0;;23485:2:1;55364:57:0;;;23467:21:1;23524:2;23504:18;;;23497:30;23563:34;23543:18;;;23536:62;-1:-1:-1;;;23614:18:1;;;23607:45;23669:19;;55364:57:0;23283:411:1;2947:173:0;3022:6;;;-1:-1:-1;;;;;3039:17:0;;;-1:-1:-1;;;;;;3039:17:0;;;;;;;3072:40;;3022:6;;;3039:17;3022:6;;3072:40;;3003:16;;3072:40;2992:128;2947:173;:::o;45644:98::-;45702:7;45729:5;45733:1;45729;:5;:::i;:::-;45722:12;45644:98;-1:-1:-1;;;45644:98:0:o;46382:::-;46440:7;46467:5;46471:1;46467;:5;:::i;64346:690::-;64483:4;-1:-1:-1;;;;;64500:13:0;;11446:20;11494:8;64496:535;;64539:72;;-1:-1:-1;;;64539:72:0;;-1:-1:-1;;;;;64539:36:0;;;;;:72;;740:10;;64590:4;;64596:7;;64605:5;;64539:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64539:72:0;;;;;;;;-1:-1:-1;;64539:72:0;;;;;;;;;;;;:::i;:::-;;;64526:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64770:13:0;;64766:215;;64803:61;;-1:-1:-1;;;64803:61:0;;;;;;;:::i;64766:215::-;64949:6;64943:13;64934:6;64930:2;64926:15;64919:38;64526:464;-1:-1:-1;;;;;;64661:55:0;-1:-1:-1;;;64661:55:0;;-1:-1:-1;64654:62:0;;64496:535;-1:-1:-1;65019:4:0;64496:535;64346:690;;;;;;:::o;18740:723::-;18796:13;19017:10;19013:53;;-1:-1:-1;;19044:10:0;;;;;;;;;;;;-1:-1:-1;;;19044:10:0;;;;;18740:723::o;19013:53::-;19091:5;19076:12;19132:78;19139:9;;19132:78;;19165:8;;;;:::i;:::-;;-1:-1:-1;19188:10:0;;-1:-1:-1;19196:2:0;19188:10;;:::i;:::-;;;19132:78;;;19220:19;19252:6;-1:-1:-1;;;;;19242:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19242:17:0;;19220:39;;19270:154;19277:10;;19270:154;;19304:11;19314:1;19304:11;;:::i;:::-;;-1:-1:-1;19373:10:0;19381:2;19373:5;:10;:::i;:::-;19360:24;;:2;:24;:::i;:::-;19347:39;;19330:6;19337;19330:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19330:56:0;;;;;;;;-1:-1:-1;19401:11:0;19410:2;19401:11;;:::i;:::-;;;19270:154;;59496:1272;59601:20;59624:12;-1:-1:-1;;;;;59651:16:0;;59643:62;;;;-1:-1:-1;;;59643:62:0;;21913:2:1;59643:62:0;;;21895:21:1;21952:2;21932:18;;;21925:30;21991:34;21971:18;;;21964:62;-1:-1:-1;;;22042:18:1;;;22035:31;22083:19;;59643:62:0;21711:397:1;59643:62:0;59842:21;59850:12;59089:4;59119:12;-1:-1:-1;59109:22:0;59032:105;59842:21;59841:22;59833:64;;;;-1:-1:-1;;;59833:64:0;;21194:2:1;59833:64:0;;;21176:21:1;21233:2;21213:18;;;21206:30;21272:31;21252:18;;;21245:59;21321:18;;59833:64:0;20992:353:1;59833:64:0;59924:12;59912:8;:24;;59904:71;;;;-1:-1:-1;;;59904:71:0;;24671:2:1;59904:71:0;;;24653:21:1;24710:2;24690:18;;;24683:30;24749:34;24729:18;;;24722:62;-1:-1:-1;;;24800:18:1;;;24793:32;24842:19;;59904:71:0;24469:398:1;59904:71:0;-1:-1:-1;;;;;60087:16:0;;60054:30;60087:16;;;:12;:16;;;;;;;;;60054:49;;;;;;;;;-1:-1:-1;;;;;60054:49:0;;;;;-1:-1:-1;;;60054:49:0;;;;;;;;;;;60129:119;;;;;;;;60149:19;;60054:49;;60129:119;;;60149:39;;60179:8;;60149:39;:::i;:::-;-1:-1:-1;;;;;60129:119:0;;;;;60232:8;60197:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;60129:119:0;;;;;;-1:-1:-1;;;;;60110:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;60110:138:0;;;;;;;;;;;;60283:43;;;;;;;;;;-1:-1:-1;;;;;60309:15:0;60283:43;;;;;;;;60255:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;60255:71:0;-1:-1:-1;;;;;;60255:71:0;;;;;;;;;;;;;;;;;;60267:12;;60379:281;60403:8;60399:1;:12;60379:281;;;60432:38;;60457:12;;-1:-1:-1;;;;;60432:38:0;;;60449:1;;60432:38;;60449:1;;60432:38;60497:59;60528:1;60532:2;60536:12;60550:5;60497:22;:59::i;:::-;60479:150;;;;-1:-1:-1;;;60479:150:0;;;;;;;:::i;:::-;60638:14;;;;:::i;:::-;;;;60413:3;;;;;:::i;:::-;;;;60379:281;;;-1:-1:-1;60668:12:0;:27;;;60702:60;58474:319;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;603:673;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:163;1098:2;1095:1;1092:9;1084:163;;;1155:17;;1143:30;;1193:12;;;;1225;;;;1116:1;1109:9;1084:163;;;-1:-1:-1;1265:5:1;;603:673;-1:-1:-1;;;;;;;603:673:1:o;1281:160::-;1346:20;;1402:13;;1395:21;1385:32;;1375:60;;1431:1;1428;1421:12;1446:221;1489:5;1542:3;1535:4;1527:6;1523:17;1519:27;1509:55;;1560:1;1557;1550:12;1509:55;1582:79;1657:3;1648:6;1635:20;1628:4;1620:6;1616:17;1582:79;:::i;1672:186::-;1731:6;1784:2;1772:9;1763:7;1759:23;1755:32;1752:52;;;1800:1;1797;1790:12;1752:52;1823:29;1842:9;1823:29;:::i;1863:260::-;1931:6;1939;1992:2;1980:9;1971:7;1967:23;1963:32;1960:52;;;2008:1;2005;1998:12;1960:52;2031:29;2050:9;2031:29;:::i;:::-;2021:39;;2079:38;2113:2;2102:9;2098:18;2079:38;:::i;:::-;2069:48;;1863:260;;;;;:::o;2128:328::-;2205:6;2213;2221;2274:2;2262:9;2253:7;2249:23;2245:32;2242:52;;;2290:1;2287;2280:12;2242:52;2313:29;2332:9;2313:29;:::i;:::-;2303:39;;2361:38;2395:2;2384:9;2380:18;2361:38;:::i;:::-;2351:48;;2446:2;2435:9;2431:18;2418:32;2408:42;;2128:328;;;;;:::o;2461:666::-;2556:6;2564;2572;2580;2633:3;2621:9;2612:7;2608:23;2604:33;2601:53;;;2650:1;2647;2640:12;2601:53;2673:29;2692:9;2673:29;:::i;:::-;2663:39;;2721:38;2755:2;2744:9;2740:18;2721:38;:::i;:::-;2711:48;;2806:2;2795:9;2791:18;2778:32;2768:42;;2861:2;2850:9;2846:18;2833:32;-1:-1:-1;;;;;2880:6:1;2877:30;2874:50;;;2920:1;2917;2910:12;2874:50;2943:22;;2996:4;2988:13;;2984:27;-1:-1:-1;2974:55:1;;3025:1;3022;3015:12;2974:55;3048:73;3113:7;3108:2;3095:16;3090:2;3086;3082:11;3048:73;:::i;:::-;3038:83;;;2461:666;;;;;;;:::o;3132:254::-;3197:6;3205;3258:2;3246:9;3237:7;3233:23;3229:32;3226:52;;;3274:1;3271;3264:12;3226:52;3297:29;3316:9;3297:29;:::i;:::-;3287:39;;3345:35;3376:2;3365:9;3361:18;3345:35;:::i;3391:254::-;3459:6;3467;3520:2;3508:9;3499:7;3495:23;3491:32;3488:52;;;3536:1;3533;3526:12;3488:52;3559:29;3578:9;3559:29;:::i;:::-;3549:39;3635:2;3620:18;;;;3607:32;;-1:-1:-1;;;3391:254:1:o;3650:978::-;3743:6;3751;3804:2;3792:9;3783:7;3779:23;3775:32;3772:52;;;3820:1;3817;3810:12;3772:52;3860:9;3847:23;-1:-1:-1;;;;;3885:6:1;3882:30;3879:50;;;3925:1;3922;3915:12;3879:50;3948:22;;4001:4;3993:13;;3989:27;-1:-1:-1;3979:55:1;;4030:1;4027;4020:12;3979:55;4066:2;4053:16;4088:4;4112:60;4128:43;4168:2;4128:43;:::i;4112:60::-;4194:3;4218:2;4213:3;4206:15;4246:2;4241:3;4237:12;4230:19;;4277:2;4273;4269:11;4325:7;4320:2;4314;4311:1;4307:10;4303:2;4299:19;4295:28;4292:41;4289:61;;;4346:1;4343;4336:12;4289:61;4368:1;4359:10;;4378:169;4392:2;4389:1;4386:9;4378:169;;;4449:23;4468:3;4449:23;:::i;:::-;4437:36;;4410:1;4403:9;;;;;4493:12;;;;4525;;4378:169;;;-1:-1:-1;4566:5:1;4603:18;;;;4590:32;;-1:-1:-1;;;;;;3650:978:1:o;4633:416::-;4726:6;4734;4787:2;4775:9;4766:7;4762:23;4758:32;4755:52;;;4803:1;4800;4793:12;4755:52;4843:9;4830:23;-1:-1:-1;;;;;4868:6:1;4865:30;4862:50;;;4908:1;4905;4898:12;4862:50;4931:61;4984:7;4975:6;4964:9;4960:22;4931:61;:::i;:::-;4921:71;5039:2;5024:18;;;;5011:32;;-1:-1:-1;;;;4633:416:1:o;5054:180::-;5110:6;5163:2;5151:9;5142:7;5138:23;5134:32;5131:52;;;5179:1;5176;5169:12;5131:52;5202:26;5218:9;5202:26;:::i;5239:184::-;5309:6;5362:2;5350:9;5341:7;5337:23;5333:32;5330:52;;;5378:1;5375;5368:12;5330:52;-1:-1:-1;5401:16:1;;5239:184;-1:-1:-1;5239:184:1:o;5428:245::-;5486:6;5539:2;5527:9;5518:7;5514:23;5510:32;5507:52;;;5555:1;5552;5545:12;5507:52;5594:9;5581:23;5613:30;5637:5;5613:30;:::i;5678:249::-;5747:6;5800:2;5788:9;5779:7;5775:23;5771:32;5768:52;;;5816:1;5813;5806:12;5768:52;5848:9;5842:16;5867:30;5891:5;5867:30;:::i;5932:543::-;6020:6;6028;6081:2;6069:9;6060:7;6056:23;6052:32;6049:52;;;6097:1;6094;6087:12;6049:52;6137:9;6124:23;-1:-1:-1;;;;;6207:2:1;6199:6;6196:14;6193:34;;;6223:1;6220;6213:12;6193:34;6246:50;6288:7;6279:6;6268:9;6264:22;6246:50;:::i;:::-;6236:60;;6349:2;6338:9;6334:18;6321:32;6305:48;;6378:2;6368:8;6365:16;6362:36;;;6394:1;6391;6384:12;6362:36;;6417:52;6461:7;6450:8;6439:9;6435:24;6417:52;:::i;:::-;6407:62;;;5932:543;;;;;:::o;6480:180::-;6539:6;6592:2;6580:9;6571:7;6567:23;6563:32;6560:52;;;6608:1;6605;6598:12;6560:52;-1:-1:-1;6631:23:1;;6480:180;-1:-1:-1;6480:180:1:o;6665:416::-;6758:6;6766;6819:2;6807:9;6798:7;6794:23;6790:32;6787:52;;;6835:1;6832;6825:12;6787:52;6871:9;6858:23;6848:33;;6932:2;6921:9;6917:18;6904:32;-1:-1:-1;;;;;6951:6:1;6948:30;6945:50;;;6991:1;6988;6981:12;6945:50;7014:61;7067:7;7058:6;7047:9;7043:22;7014:61;:::i;7086:248::-;7154:6;7162;7215:2;7203:9;7194:7;7190:23;7186:32;7183:52;;;7231:1;7228;7221:12;7183:52;-1:-1:-1;;7254:23:1;;;7324:2;7309:18;;;7296:32;;-1:-1:-1;7086:248:1:o;7339:257::-;7380:3;7418:5;7412:12;7445:6;7440:3;7433:19;7461:63;7517:6;7510:4;7505:3;7501:14;7494:4;7487:5;7483:16;7461:63;:::i;:::-;7578:2;7557:15;-1:-1:-1;;7553:29:1;7544:39;;;;7585:4;7540:50;;7339:257;-1:-1:-1;;7339:257:1:o;7601:973::-;7686:12;;7651:3;;7741:1;7761:18;;;;7814;;;;7841:61;;7895:4;7887:6;7883:17;7873:27;;7841:61;7921:2;7969;7961:6;7958:14;7938:18;7935:38;7932:161;;;8015:10;8010:3;8006:20;8003:1;7996:31;8050:4;8047:1;8040:15;8078:4;8075:1;8068:15;7932:161;8109:18;8136:104;;;;8254:1;8249:319;;;;8102:466;;8136:104;-1:-1:-1;;8169:24:1;;8157:37;;8214:16;;;;-1:-1:-1;8136:104:1;;8249:319;26309:1;26302:14;;;26346:4;26333:18;;8343:1;8357:165;8371:6;8368:1;8365:13;8357:165;;;8449:14;;8436:11;;;8429:35;8492:16;;;;8386:10;;8357:165;;;8361:3;;8551:6;8546:3;8542:16;8535:23;;8102:466;;;;;;;7601:973;;;;:::o;8831:274::-;8960:3;8998:6;8992:13;9014:53;9060:6;9055:3;9048:4;9040:6;9036:17;9014:53;:::i;:::-;9083:16;;;;;8831:274;-1:-1:-1;;8831:274:1:o;9110:197::-;9238:3;9263:38;9297:3;9289:6;9263:38;:::i;9312:376::-;9488:3;9516:38;9550:3;9542:6;9516:38;:::i;:::-;9583:6;9577:13;9599:52;9644:6;9640:2;9633:4;9625:6;9621:17;9599:52;:::i;:::-;9667:15;;9312:376;-1:-1:-1;;;;9312:376:1:o;9901:488::-;-1:-1:-1;;;;;10170:15:1;;;10152:34;;10222:15;;10217:2;10202:18;;10195:43;10269:2;10254:18;;10247:34;;;10317:3;10312:2;10297:18;;10290:31;;;10095:4;;10338:45;;10363:19;;10355:6;10338:45;:::i;:::-;10330:53;9901:488;-1:-1:-1;;;;;;9901:488:1:o;10394:632::-;10565:2;10617:21;;;10687:13;;10590:18;;;10709:22;;;10536:4;;10565:2;10788:15;;;;10762:2;10747:18;;;10536:4;10831:169;10845:6;10842:1;10839:13;10831:169;;;10906:13;;10894:26;;10975:15;;;;10940:12;;;;10867:1;10860:9;10831:169;;;-1:-1:-1;11017:3:1;;10394:632;-1:-1:-1;;;;;;10394:632:1:o;11405:219::-;11554:2;11543:9;11536:21;11517:4;11574:44;11614:2;11603:9;11599:18;11591:6;11574:44;:::i;16607:420::-;16809:2;16791:21;;;16848:2;16828:18;;;16821:30;16887:34;16882:2;16867:18;;16860:62;16958:26;16953:2;16938:18;;16931:54;17017:3;17002:19;;16607:420::o;18202:356::-;18404:2;18386:21;;;18423:18;;;18416:30;18482:34;18477:2;18462:18;;18455:62;18549:2;18534:18;;18202:356::o;19753:411::-;19955:2;19937:21;;;19994:2;19974:18;;;19967:30;20033:34;20028:2;20013:18;;20006:62;-1:-1:-1;;;20099:2:1;20084:18;;20077:45;20154:3;20139:19;;19753:411::o;20572:415::-;20774:2;20756:21;;;20813:2;20793:18;;;20786:30;20852:34;20847:2;20832:18;;20825:62;-1:-1:-1;;;20918:2:1;20903:18;;20896:49;20977:3;20962:19;;20572:415::o;25768:275::-;25839:2;25833:9;25904:2;25885:13;;-1:-1:-1;;25881:27:1;25869:40;;-1:-1:-1;;;;;25924:34:1;;25960:22;;;25921:62;25918:88;;;25986:18;;:::i;:::-;26022:2;26015:22;25768:275;;-1:-1:-1;25768:275:1:o;26048:183::-;26108:4;-1:-1:-1;;;;;26133:6:1;26130:30;26127:56;;;26163:18;;:::i;:::-;-1:-1:-1;26208:1:1;26204:14;26220:4;26200:25;;26048:183::o;26362:253::-;26402:3;-1:-1:-1;;;;;26491:2:1;26488:1;26484:10;26521:2;26518:1;26514:10;26552:3;26548:2;26544:12;26539:3;26536:21;26533:47;;;26560:18;;:::i;26620:128::-;26660:3;26691:1;26687:6;26684:1;26681:13;26678:39;;;26697:18;;:::i;:::-;-1:-1:-1;26733:9:1;;26620:128::o;26753:120::-;26793:1;26819;26809:35;;26824:18;;:::i;:::-;-1:-1:-1;26858:9:1;;26753:120::o;26878:168::-;26918:7;26984:1;26980;26976:6;26972:14;26969:1;26966:21;26961:1;26954:9;26947:17;26943:45;26940:71;;;26991:18;;:::i;:::-;-1:-1:-1;27031:9:1;;26878:168::o;27051:246::-;27091:4;-1:-1:-1;;;;;27204:10:1;;;;27174;;27226:12;;;27223:38;;;27241:18;;:::i;:::-;27278:13;;27051:246;-1:-1:-1;;;27051:246:1:o;27302:125::-;27342:4;27370:1;27367;27364:8;27361:34;;;27375:18;;:::i;:::-;-1:-1:-1;27412:9:1;;27302:125::o;27432:258::-;27504:1;27514:113;27528:6;27525:1;27522:13;27514:113;;;27604:11;;;27598:18;27585:11;;;27578:39;27550:2;27543:10;27514:113;;;27645:6;27642:1;27639:13;27636:48;;;-1:-1:-1;;27680:1:1;27662:16;;27655:27;27432:258::o;27695:136::-;27734:3;27762:5;27752:39;;27771:18;;:::i;:::-;-1:-1:-1;;;27807:18:1;;27695:136::o;27836:380::-;27915:1;27911:12;;;;27958;;;27979:61;;28033:4;28025:6;28021:17;28011:27;;27979:61;28086:2;28078:6;28075:14;28055:18;28052:38;28049:161;;;28132:10;28127:3;28123:20;28120:1;28113:31;28167:4;28164:1;28157:15;28195:4;28192:1;28185:15;28049:161;;27836:380;;;:::o;28221:135::-;28260:3;-1:-1:-1;;28281:17:1;;28278:43;;;28301:18;;:::i;:::-;-1:-1:-1;28348:1:1;28337:13;;28221:135::o;28361:112::-;28393:1;28419;28409:35;;28424:18;;:::i;:::-;-1:-1:-1;28458:9:1;;28361:112::o;28478:127::-;28539:10;28534:3;28530:20;28527:1;28520:31;28570:4;28567:1;28560:15;28594:4;28591:1;28584:15;28610:127;28671:10;28666:3;28662:20;28659:1;28652:31;28702:4;28699:1;28692:15;28726:4;28723:1;28716:15;28742:127;28803:10;28798:3;28794:20;28791:1;28784:31;28834:4;28831:1;28824:15;28858:4;28855:1;28848:15;28874:127;28935:10;28930:3;28926:20;28923:1;28916:31;28966:4;28963:1;28956:15;28990:4;28987:1;28980:15;29006:131;-1:-1:-1;;;;;;29080:32:1;;29070:43;;29060:71;;29127:1;29124;29117:12

Swarm Source

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