ETH Price: $3,163.35 (+1.39%)
Gas: 2 Gwei

LionHeart (LH)
 

Overview

TokenID

640

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
LionHeart

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// Sources flattened with hardhat v2.6.4 https://hardhat.org

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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


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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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


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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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


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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


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


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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


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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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]


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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


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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}


// File contracts/Reveal.sol


pragma solidity >=0.4.22 <0.9.0;


contract Reveal is Ownable {
    using Strings for uint256;

    bool public revealed = false;

    string public baseURI;
    string public notRevealedUri;
    string public baseExtension = ".json";

    constructor() {

    }

    // Action
    function reveal() public onlyOwner {
        revealed = true;
    }
    // Set
    function setBaseURI(string calldata _tokenBaseURI) external onlyOwner {
        baseURI = _tokenBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }
    // View
    function getTokenURI(uint256 _tokenId, string memory _baseURI) internal view returns (string memory) {
        if (!revealed) {
            return notRevealedUri;
        }

        return
            bytes(_baseURI).length > 0
                ? string(
                    abi.encodePacked(
                        _baseURI,
                        _tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }
}


// File contracts/WhiteListSale.sol


pragma solidity >=0.4.22 <0.9.0;

contract WhiteListSale is Ownable {
    uint256 public constant PRE_MAX_QTY_PER_MINTER = 3; // 3

    bool public isWhiteListActive = false;
    
    mapping(address => uint256) public whiteList;
    mapping(address => bool) public whiteListBool;

    event WhiteListSetup(address[] addresses);
    event WhiteListDeleted(address[] addresses);

    constructor() {

    }

    modifier isWhiteListSaleActivity() {
        require(isWhiteListActive, "White list sale is not active.");
        _;
    }

    modifier nonWhiteListSaleActivity() {
        require(!isWhiteListActive, "White list sale is active,can't do it.");
        _;
    }
    // View
    function isWhiteListMinter(address _address) public view returns (bool) {
        return whiteListBool[_address];
    }
    // Action
    function setWhitListActive(bool _isAllowListActive) external onlyOwner {
        isWhiteListActive = _isAllowListActive;
    }

    function setWhiteList(address[] calldata addresses) external onlyOwner nonWhiteListSaleActivity {
        for (uint256 i = 0; i < addresses.length; i++) {
            whiteList[addresses[i]] = PRE_MAX_QTY_PER_MINTER;
            whiteListBool[addresses[i]] = true;
        }
        emit WhiteListSetup(addresses);
    }

    function deleteWhiteList(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            delete whiteList[addresses[i]];
            whiteListBool[addresses[i]] = false;
        }
        emit WhiteListDeleted(addresses);
    }
}


// File contracts/Withdrawable.sol


pragma solidity >=0.4.22 <0.9.0;

contract Withdrawable is Ownable {
    constructor() {}

    function withdrawAll() external onlyOwner {
        require(address(this).balance > 0, "Withdrawble: No amount to withdraw");
        payable(msg.sender).transfer(address(this).balance);
    }
}


// File contracts/LionHeart.sol


pragma solidity ^0.8.12;







contract LionHeart is
    ERC721,
    ERC721Pausable,
    ERC721Enumerable,
    Ownable,
    WhiteListSale,
    Reveal,
    Withdrawable
{
    using Strings for uint256;
    
    // QTY
    uint256 public constant TOTAL_MAX_QTY = 7300; // 7300
    uint256 public constant RESERVED_MAX_QTY = 15; // 15
    uint256 public constant PRESALE_MAX_QTY = 2190; // 2190
    uint256 public constant SALE_MAX_SUPPLY = TOTAL_MAX_QTY - PRESALE_MAX_QTY;
    // PerQTY
    uint256 public constant PUB_MAX_QTY_PER_MINTER = 7; // 7
    // Price
    uint256 public constant PRE_SALES_PRICE = PUBLIC_SALES_PRICE;
    uint256 public constant PUBLIC_SALES_PRICE = 0.3 ether;

    bool public isSaleActive = false;
    bool public isBurnEnabled = false;

    event SaleStarted();
    event SalePaused();
    event PubSaleMinted(address indexed minter, uint256 amount, uint256 supply);
    event PreSaleMinted(address indexed minter, uint256 amount, uint256 supply);

    constructor() ERC721("LionHeart", "LH") {
        
    }

    // Contract Status
    function startSale() external onlyOwner whenNotPaused {
        require(!isSaleActive, "Sale is already began");
        isSaleActive = true;
        isWhiteListActive = false;
        emit SaleStarted();
    }

    function pauseSale() external onlyOwner {
        require(isSaleActive, "Sale is already paused");
        isSaleActive = false;
        emit SalePaused();
    }
    
    // Action
    function reservedMint() external onlyOwner {
        uint256 supply = totalSupply();
        for (uint256 i = 0; i < RESERVED_MAX_QTY; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function preMint(uint256 _mintQty) external payable
        isWhiteListSaleActivity
    {
        uint256 supply = totalSupply();
        require(supply + _mintQty <= PRESALE_MAX_QTY, "Sale would exceed max supply");
        require(_mintQty <= PRE_MAX_QTY_PER_MINTER, "Sale would exceed max mint");
        require(_mintQty > 0, "Sale would exceed min mint");
        require(isWhiteListMinter(msg.sender), "Minter is not on the whitelist");
        require(whiteList[msg.sender] >= _mintQty, "Sale would exceed max presale quantity or remaining purchasable quantity");
        require(PRE_SALES_PRICE * _mintQty <= msg.value, "Not enough ether sent");
        
        for (uint256 i = 0; i < _mintQty; i++) {
            _safeMint(msg.sender, supply + i);
        }
        whiteList[msg.sender] -= _mintQty;

        emit PreSaleMinted(msg.sender, _mintQty, supply);
    }

    function mint(uint256 _mintQty) external payable {
        uint256 supply = totalSupply();
        require(isSaleActive, "Sale must be active to mint");
        require(supply + _mintQty <= TOTAL_MAX_QTY, "Sale would exceed max supply");
        require(_mintQty <= PUB_MAX_QTY_PER_MINTER, "Sale would exceed max mint");
        require(0 < _mintQty, "Sale would exceed min mint");
        uint256 QTY = PUB_MAX_QTY_PER_MINTER;
        if (whiteListBool[msg.sender]) {
            QTY = 10;
        }
        require(balanceOf(msg.sender) + _mintQty <= QTY, "Sale would exceed max balance");
        require(PUBLIC_SALES_PRICE * _mintQty <= msg.value, "Not enough ether sent");
        
        for (uint256 i = 0; i < _mintQty; i++) {
            _safeMint(msg.sender, supply + i);
        }

        emit PubSaleMinted(msg.sender, _mintQty, supply);
    }

    function setBurnEnabled(bool _isBurnEnabled) external onlyOwner {
        require(!isSaleActive, "Sale is in progress and cannot be burned NFT");
        isBurnEnabled = _isBurnEnabled;
    }

    function burn(uint256 tokenId) external {
        require(isBurnEnabled, "Burning disabled");
        require(_isApprovedOrOwner(msg.sender, tokenId), "Burn caller is not owner nor approved");
        _burn(tokenId);
    }

    /* Override */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable, ERC721Pausable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // EIP 165
    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    // TokenURI
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return getTokenURI(tokenId, _baseURI());
    }

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

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"supply","type":"uint256"}],"name":"PreSaleMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"supply","type":"uint256"}],"name":"PubSaleMinted","type":"event"},{"anonymous":false,"inputs":[],"name":"SalePaused","type":"event"},{"anonymous":false,"inputs":[],"name":"SaleStarted","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"WhiteListDeleted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"WhiteListSetup","type":"event"},{"inputs":[],"name":"PRESALE_MAX_QTY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRE_MAX_QTY_PER_MINTER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRE_SALES_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALES_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUB_MAX_QTY_PER_MINTER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_MAX_QTY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_MAX_QTY","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"deleteWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhiteListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhiteListMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintQty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintQty","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isBurnEnabled","type":"bool"}],"name":"setBurnEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setWhitListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":"address","name":"","type":"address"}],"name":"whiteList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListBool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600b805460ff60a01b19169055600e805460ff1916905560c06040526005608081905264173539b7b760d91b60a09081526200003f91601191906200012a565b506012805461ffff191690553480156200005857600080fd5b506040805180820182526009815268131a5bdb9219585c9d60ba1b602080830191825283518085019094526002845261098960f31b908401528151919291620000a4916000916200012a565b508051620000ba9060019060208401906200012a565b50506006805460ff1916905550620000d233620000d8565b6200020c565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013890620001d0565b90600052602060002090601f0160209004810192826200015c5760008555620001a7565b82601f106200017757805160ff1916838001178555620001a7565b82800160010185558215620001a7579182015b82811115620001a75782518255916020019190600101906200018a565b50620001b5929150620001b9565b5090565b5b80821115620001b55760008155600101620001ba565b600181811c90821680620001e557607f821691505b6020821081036200020657634e487b7160e01b600052602260045260246000fd5b50919050565b6138ab806200021c6000396000f3fe60806040526004361061034a5760003560e01c80636e04b2b0116101bb578063a22cb465116100f7578063d6eec46a11610095578063e985e9c51161006f578063e985e9c5146108be578063f2c4ce1e14610907578063f2fde38b14610927578063f8f674741461094757600080fd5b8063d6eec46a14610734578063da3ef23f14610888578063dee816e6146108a857600080fd5b8063b88d4fde116100d1578063b88d4fde1461081e578063b932dd641461083e578063c668286214610853578063c87b56dd1461086857600080fd5b8063a22cb465146107d4578063a475b5dd146107f4578063b66a0e5d1461080957600080fd5b806382afe550116101645780638d35aead1161013e5780638d35aead146107785780638da5cb5b1461078e57806395d89b41146107ac578063a0712d68146107c157600080fd5b806382afe55014610734578063853828b6146107505780638ad433ac1461076557600080fd5b8063775b9c1311610195578063775b9c13146106d45780637b2c835f146106f45780637e745aff1461071457600080fd5b80636e04b2b01461068a57806370a082311461069f578063715018a6146106bf57600080fd5b8063372c12b11161028a57806355f804b3116102335780635c975abb1161020d5780635c975abb146106285780636352211e146106405780636af3d238146106605780636c0360eb1461067557600080fd5b806355f804b3146105cd578063564566a8146105ed578063573f5dae1461060757600080fd5b80634f6ccce7116102645780634f6ccce71461057e578063518302271461059e57806355367ba9146105b857600080fd5b8063372c12b11461051157806342842e0e1461053e57806342966c681461055e57600080fd5b8063095ea7b3116102f75780632b5b5776116102d15780632b5b57761461048c5780632d871b73146104bc5780632f745c59146104dc57806335ac7af2146104fc57600080fd5b8063095ea7b31461043557806318160ddd1461045757806323b872dd1461046c57600080fd5b80630807f918116103285780630807f918146103c5578063081812fc146103e8578063081c8c441461042057600080fd5b806301ffc9a71461034f57806306fdde031461038457806307ebec27146103a6575b600080fd5b34801561035b57600080fd5b5061036f61036a3660046131e0565b610980565b60405190151581526020015b60405180910390f35b34801561039057600080fd5b50610399610991565b60405161037b9190613255565b3480156103b257600080fd5b5060125461036f90610100900460ff1681565b3480156103d157600080fd5b506103da610a23565b60405190815260200161037b565b3480156103f457600080fd5b50610408610403366004613268565b610a34565b6040516001600160a01b03909116815260200161037b565b34801561042c57600080fd5b50610399610ace565b34801561044157600080fd5b5061045561045036600461329d565b610b5c565b005b34801561046357600080fd5b506009546103da565b34801561047857600080fd5b506104556104873660046132c7565b610c8d565b34801561049857600080fd5b5061036f6104a7366004613303565b600d6020526000908152604090205460ff1681565b3480156104c857600080fd5b506104556104d736600461331e565b610d14565b3480156104e857600080fd5b506103da6104f736600461329d565b610e5b565b34801561050857600080fd5b506103da600781565b34801561051d57600080fd5b506103da61052c366004613303565b600c6020526000908152604090205481565b34801561054a57600080fd5b506104556105593660046132c7565b610f03565b34801561056a57600080fd5b50610455610579366004613268565b610f1e565b34801561058a57600080fd5b506103da610599366004613268565b610ffd565b3480156105aa57600080fd5b50600e5461036f9060ff1681565b3480156105c457600080fd5b506104556110a1565b3480156105d957600080fd5b506104556105e8366004613393565b611170565b3480156105f957600080fd5b5060125461036f9060ff1681565b34801561061357600080fd5b50600b5461036f90600160a01b900460ff1681565b34801561063457600080fd5b5060065460ff1661036f565b34801561064c57600080fd5b5061040861065b366004613268565b6111c4565b34801561066c57600080fd5b506103da600381565b34801561068157600080fd5b5061039961124f565b34801561069657600080fd5b5061045561125c565b3480156106ab57600080fd5b506103da6106ba366004613303565b6112e6565b3480156106cb57600080fd5b50610455611380565b3480156106e057600080fd5b506104556106ef36600461331e565b6113d4565b34801561070057600080fd5b5061045561070f366004613403565b611591565b34801561072057600080fd5b5061045561072f366004613403565b61166c565b34801561074057600080fd5b506103da670429d069189e000081565b34801561075c57600080fd5b506104556116d2565b610455610773366004613268565b6117bc565b34801561078457600080fd5b506103da61088e81565b34801561079a57600080fd5b50600b546001600160a01b0316610408565b3480156107b857600080fd5b50610399611b18565b6104556107cf366004613268565b611b27565b3480156107e057600080fd5b506104556107ef36600461341e565b611dd2565b34801561080057600080fd5b50610455611ddd565b34801561081557600080fd5b50610455611e34565b34801561082a57600080fd5b506104556108393660046134dd565b611f67565b34801561084a57600080fd5b506103da600f81565b34801561085f57600080fd5b50610399611ff5565b34801561087457600080fd5b50610399610883366004613268565b612002565b34801561089457600080fd5b506104556108a3366004613559565b6120a0565b3480156108b457600080fd5b506103da611c8481565b3480156108ca57600080fd5b5061036f6108d93660046135a2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561091357600080fd5b50610455610922366004613559565b6120fb565b34801561093357600080fd5b50610455610942366004613303565b612156565b34801561095357600080fd5b5061036f610962366004613303565b6001600160a01b03166000908152600d602052604090205460ff1690565b600061098b82612223565b92915050565b6060600080546109a0906135cc565b80601f01602080910402602001604051908101604052809291908181526020018280546109cc906135cc565b8015610a195780601f106109ee57610100808354040283529160200191610a19565b820191906000526020600020905b8154815290600101906020018083116109fc57829003601f168201915b5050505050905090565b610a3161088e611c8461361c565b81565b6000818152600260205260408120546001600160a01b0316610ab25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60108054610adb906135cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610b07906135cc565b8015610b545780601f10610b2957610100808354040283529160200191610b54565b820191906000526020600020905b815481529060010190602001808311610b3757829003601f168201915b505050505081565b6000610b67826111c4565b9050806001600160a01b0316836001600160a01b031603610bf05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610aa9565b336001600160a01b0382161480610c0c5750610c0c81336108d9565b610c7e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610aa9565b610c888383612261565b505050565b610c9733826122cf565b610d095760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610aa9565b610c888383836123c6565b600b546001600160a01b03163314610d5c5760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b60005b81811015610e1d57600c6000848484818110610d7d57610d7d613633565b9050602002016020810190610d929190613303565b6001600160a01b03166001600160a01b03168152602001908152602001600020600090556000600d6000858585818110610dce57610dce613633565b9050602002016020810190610de39190613303565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610e1581613649565b915050610d5f565b507f94b464c54f1d571efc887394dac758bca1097019f13bf5fe2fe34d59d7e36ab68282604051610e4f929190613662565b60405180910390a15050565b6000610e66836112e6565b8210610eda5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610aa9565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610c8883838360405180602001604052806000815250611f67565b601254610100900460ff16610f755760405162461bcd60e51b815260206004820152601060248201527f4275726e696e672064697361626c6564000000000000000000000000000000006044820152606401610aa9565b610f7f33826122cf565b610ff15760405162461bcd60e51b815260206004820152602560248201527f4275726e2063616c6c6572206973206e6f74206f776e6572206e6f722061707060448201527f726f7665640000000000000000000000000000000000000000000000000000006064820152608401610aa9565b610ffa8161259e565b50565b600061100860095490565b821061107c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610aa9565b6009828154811061108f5761108f613633565b90600052602060002001549050919050565b600b546001600160a01b031633146110e95760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b60125460ff1661113b5760405162461bcd60e51b815260206004820152601660248201527f53616c6520697320616c726561647920706175736564000000000000000000006044820152606401610aa9565b6012805460ff191690556040517f8a98cbd0cab14e33b8a5e5710b9b59bceec8af9a5b4b3bb32fb275cf04ea048d90600090a1565b600b546001600160a01b031633146111b85760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b610c88600f83836130bd565b6000818152600260205260408120546001600160a01b03168061098b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610aa9565b600f8054610adb906135cc565b600b546001600160a01b031633146112a45760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b60006112af60095490565b905060005b600f8110156112e2576112d0336112cb83856136ae565b612645565b806112da81613649565b9150506112b4565b5050565b60006001600160a01b0382166113645760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610aa9565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146113c85760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b6113d2600061265f565b565b600b546001600160a01b0316331461141c5760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b600b54600160a01b900460ff161561149c5760405162461bcd60e51b815260206004820152602660248201527f5768697465206c6973742073616c65206973206163746976652c63616e27742060448201527f646f2069742e00000000000000000000000000000000000000000000000000006064820152608401610aa9565b60005b8181101561155f576003600c60008585858181106114bf576114bf613633565b90506020020160208101906114d49190613303565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506001600d600085858581811061151057611510613633565b90506020020160208101906115259190613303565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061155781613649565b91505061149f565b507fffc59ad11e3b9d927999b956460f373be0ad524825e41c5c2fa16881b4e5085b8282604051610e4f929190613662565b600b546001600160a01b031633146115d95760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b60125460ff16156116525760405162461bcd60e51b815260206004820152602c60248201527f53616c6520697320696e2070726f677265737320616e642063616e6e6f74206260448201527f65206275726e6564204e465400000000000000000000000000000000000000006064820152608401610aa9565b601280549115156101000261ff0019909216919091179055565b600b546001600160a01b031633146116b45760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b600b546001600160a01b0316331461171a5760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b600047116117905760405162461bcd60e51b815260206004820152602260248201527f5769746864726177626c653a204e6f20616d6f756e7420746f2077697468647260448201527f61770000000000000000000000000000000000000000000000000000000000006064820152608401610aa9565b60405133904780156108fc02916000818181858888f19350505050158015610ffa573d6000803e3d6000fd5b600b54600160a01b900460ff166118155760405162461bcd60e51b815260206004820152601e60248201527f5768697465206c6973742073616c65206973206e6f74206163746976652e00006044820152606401610aa9565b600061182060095490565b905061088e61182f83836136ae565b111561187d5760405162461bcd60e51b815260206004820152601c60248201527f53616c6520776f756c6420657863656564206d617820737570706c79000000006044820152606401610aa9565b60038211156118ce5760405162461bcd60e51b815260206004820152601a60248201527f53616c6520776f756c6420657863656564206d6178206d696e740000000000006044820152606401610aa9565b6000821161191e5760405162461bcd60e51b815260206004820152601a60248201527f53616c6520776f756c6420657863656564206d696e206d696e740000000000006044820152606401610aa9565b336000908152600d602052604090205460ff1661197d5760405162461bcd60e51b815260206004820152601e60248201527f4d696e746572206973206e6f74206f6e207468652077686974656c69737400006044820152606401610aa9565b336000908152600c6020526040902054821115611a285760405162461bcd60e51b815260206004820152604860248201527f53616c6520776f756c6420657863656564206d61782070726573616c6520717560448201527f616e74697479206f722072656d61696e696e67207075726368617361626c652060648201527f7175616e74697479000000000000000000000000000000000000000000000000608482015260a401610aa9565b34611a3b83670429d069189e00006136c6565b1115611a895760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401610aa9565b60005b82811015611ab457611aa2336112cb83856136ae565b80611aac81613649565b915050611a8c565b50336000908152600c602052604081208054849290611ad490849061361c565b9091555050604080518381526020810183905233917f62085c87aaa3db85275e099905c0e2bb1416e4e07f59b167557da8b0cf534b8f910160405180910390a25050565b6060600180546109a0906135cc565b6000611b3260095490565b60125490915060ff16611b875760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610aa9565b611c84611b9483836136ae565b1115611be25760405162461bcd60e51b815260206004820152601c60248201527f53616c6520776f756c6420657863656564206d617820737570706c79000000006044820152606401610aa9565b6007821115611c335760405162461bcd60e51b815260206004820152601a60248201527f53616c6520776f756c6420657863656564206d6178206d696e740000000000006044820152606401610aa9565b81600010611c835760405162461bcd60e51b815260206004820152601a60248201527f53616c6520776f756c6420657863656564206d696e206d696e740000000000006044820152606401610aa9565b336000908152600d602052604090205460079060ff1615611ca25750600a5b8083611cad336112e6565b611cb791906136ae565b1115611d055760405162461bcd60e51b815260206004820152601d60248201527f53616c6520776f756c6420657863656564206d61782062616c616e63650000006044820152606401610aa9565b34611d1884670429d069189e00006136c6565b1115611d665760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401610aa9565b60005b83811015611d9157611d7f336112cb83866136ae565b80611d8981613649565b915050611d69565b50604080518481526020810184905233917f28dd348df32d72a0a2105cdd3cb91e4d6c715c6b455570901e116e26e146c03f910160405180910390a2505050565b6112e23383836126b1565b600b546001600160a01b03163314611e255760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b600e805460ff19166001179055565b600b546001600160a01b03163314611e7c5760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b60065460ff1615611ecf5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610aa9565b60125460ff1615611f225760405162461bcd60e51b815260206004820152601560248201527f53616c6520697320616c726561647920626567616e00000000000000000000006044820152606401610aa9565b6012805460ff19166001179055600b805460ff60a01b191690556040517f912ee23dde46ec889d6748212cce445d667f7041597691dc89e8549ad8bc0acb90600090a1565b611f7133836122cf565b611fe35760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610aa9565b611fef8484848461277f565b50505050565b60118054610adb906135cc565b6000818152600260205260409020546060906001600160a01b031661208f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610aa9565b61098b8261209b6127fd565b61280c565b600b546001600160a01b031633146120e85760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b80516112e2906011906020840190613141565b600b546001600160a01b031633146121435760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b80516112e2906010906020840190613141565b600b546001600160a01b0316331461219e5760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b6001600160a01b03811661221a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610aa9565b610ffa8161265f565b60006001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000148061098b575061098b826128fe565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612296826111c4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166123485760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610aa9565b6000612353836111c4565b9050806001600160a01b0316846001600160a01b0316148061238e5750836001600160a01b031661238384610a34565b6001600160a01b0316145b806123be57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166123d9826111c4565b6001600160a01b0316146124555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610aa9565b6001600160a01b0382166124d05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610aa9565b6124db838383612999565b6124e6600082612261565b6001600160a01b038316600090815260036020526040812080546001929061250f90849061361c565b90915550506001600160a01b038216600090815260036020526040812080546001929061253d9084906136ae565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006125a9826111c4565b90506125b781600084612999565b6125c2600083612261565b6001600160a01b03811660009081526003602052604081208054600192906125eb90849061361c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6112e28282604051806020016040528060008152506129a4565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036127125760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610aa9565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61278a8484846123c6565b61279684848484612a22565b611fef5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610aa9565b6060600f80546109a0906135cc565b600e5460609060ff166128ab5760108054612826906135cc565b80601f0160208091040260200160405190810160405280929190818152602001828054612852906135cc565b801561289f5780601f106128745761010080835404028352916020019161289f565b820191906000526020600020905b81548152906001019060200180831161288257829003601f168201915b5050505050905061098b565b60008251116128c957604051806020016040528060008152506128f7565b816128d384612b6e565b60116040516020016128e7939291906136e5565b6040516020818303038152906040525b9392505050565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061296157506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061098b57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161461098b565b610c88838383612ca3565b6129ae8383612d66565b6129bb6000848484612a22565b610c885760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610aa9565b60006001600160a01b0384163b15612b6357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a669033908990889088906004016137a8565b6020604051808303816000875af1925050508015612aa1575060408051601f3d908101601f19168201909252612a9e918101906137e4565b60015b612b49573d808015612acf576040519150601f19603f3d011682016040523d82523d6000602084013e612ad4565b606091505b508051600003612b415760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610aa9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506123be565b506001949350505050565b606081600003612bb157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612bdb5780612bc581613649565b9150612bd49050600a83613817565b9150612bb5565b60008167ffffffffffffffff811115612bf657612bf6613451565b6040519080825280601f01601f191660200182016040528015612c20576020820181803683370190505b5090505b84156123be57612c3560018361361c565b9150612c42600a8661382b565b612c4d9060306136ae565b60f81b818381518110612c6257612c62613633565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612c9c600a86613817565b9450612c24565b612cae838383612eb4565b6001600160a01b038316612d0957612d0481600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612d2c565b816001600160a01b0316836001600160a01b031614612d2c57612d2c8382612f2d565b6001600160a01b038216612d4357610c8881612fca565b826001600160a01b0316826001600160a01b031614610c8857610c888282613079565b6001600160a01b038216612dbc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610aa9565b6000818152600260205260409020546001600160a01b031615612e215760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610aa9565b612e2d60008383612999565b6001600160a01b0382166000908152600360205260408120805460019290612e569084906136ae565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60065460ff1615610c885760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201527f68696c65207061757365640000000000000000000000000000000000000000006064820152608401610aa9565b60006001612f3a846112e6565b612f44919061361c565b600083815260086020526040902054909150808214612f97576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612fdc9060019061361c565b6000838152600a60205260408120546009805493945090928490811061300457613004613633565b90600052602060002001549050806009838154811061302557613025613633565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061305d5761305d61383f565b6001900381819060005260206000200160009055905550505050565b6000613084836112e6565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546130c9906135cc565b90600052602060002090601f0160209004810192826130eb5760008555613131565b82601f106131045782800160ff19823516178555613131565b82800160010185558215613131579182015b82811115613131578235825591602001919060010190613116565b5061313d9291506131b5565b5090565b82805461314d906135cc565b90600052602060002090601f01602090048101928261316f5760008555613131565b82601f1061318857805160ff1916838001178555613131565b82800160010185558215613131579182015b8281111561313157825182559160200191906001019061319a565b5b8082111561313d57600081556001016131b6565b6001600160e01b031981168114610ffa57600080fd5b6000602082840312156131f257600080fd5b81356128f7816131ca565b60005b83811015613218578181015183820152602001613200565b83811115611fef5750506000910152565b600081518084526132418160208601602086016131fd565b601f01601f19169290920160200192915050565b6020815260006128f76020830184613229565b60006020828403121561327a57600080fd5b5035919050565b80356001600160a01b038116811461329857600080fd5b919050565b600080604083850312156132b057600080fd5b6132b983613281565b946020939093013593505050565b6000806000606084860312156132dc57600080fd5b6132e584613281565b92506132f360208501613281565b9150604084013590509250925092565b60006020828403121561331557600080fd5b6128f782613281565b6000806020838503121561333157600080fd5b823567ffffffffffffffff8082111561334957600080fd5b818501915085601f83011261335d57600080fd5b81358181111561336c57600080fd5b8660208260051b850101111561338157600080fd5b60209290920196919550909350505050565b600080602083850312156133a657600080fd5b823567ffffffffffffffff808211156133be57600080fd5b818501915085601f8301126133d257600080fd5b8135818111156133e157600080fd5b86602082850101111561338157600080fd5b8035801515811461329857600080fd5b60006020828403121561341557600080fd5b6128f7826133f3565b6000806040838503121561343157600080fd5b61343a83613281565b9150613448602084016133f3565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561348257613482613451565b604051601f8501601f19908116603f011681019082821181831017156134aa576134aa613451565b816040528093508581528686860111156134c357600080fd5b858560208301376000602087830101525050509392505050565b600080600080608085870312156134f357600080fd5b6134fc85613281565b935061350a60208601613281565b925060408501359150606085013567ffffffffffffffff81111561352d57600080fd5b8501601f8101871361353e57600080fd5b61354d87823560208401613467565b91505092959194509250565b60006020828403121561356b57600080fd5b813567ffffffffffffffff81111561358257600080fd5b8201601f8101841361359357600080fd5b6123be84823560208401613467565b600080604083850312156135b557600080fd5b6135be83613281565b915061344860208401613281565b600181811c908216806135e057607f821691505b60208210810361360057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561362e5761362e613606565b500390565b634e487b7160e01b600052603260045260246000fd5b60006001820161365b5761365b613606565b5060010190565b60208082528181018390526000908460408401835b868110156136a3576001600160a01b0361369084613281565b1682529183019190830190600101613677565b509695505050505050565b600082198211156136c1576136c1613606565b500190565b60008160001904831182151516156136e0576136e0613606565b500290565b6000845160206136f88285838a016131fd565b85519184019161370b8184848a016131fd565b8554920191600090600181811c908083168061372857607f831692505b858310810361374557634e487b7160e01b85526022600452602485fd5b808015613759576001811461376a57613797565b60ff19851688528388019550613797565b60008b81526020902060005b8581101561378f5781548a820152908401908801613776565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526137da6080830184613229565b9695505050505050565b6000602082840312156137f657600080fd5b81516128f7816131ca565b634e487b7160e01b600052601260045260246000fd5b60008261382657613826613801565b500490565b60008261383a5761383a613801565b500690565b634e487b7160e01b600052603160045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212203669b743f7929db286dfc722823b63030a35b9df931f55a79afd8f55589d7fb264736f6c634300080d0033

Deployed Bytecode

0x60806040526004361061034a5760003560e01c80636e04b2b0116101bb578063a22cb465116100f7578063d6eec46a11610095578063e985e9c51161006f578063e985e9c5146108be578063f2c4ce1e14610907578063f2fde38b14610927578063f8f674741461094757600080fd5b8063d6eec46a14610734578063da3ef23f14610888578063dee816e6146108a857600080fd5b8063b88d4fde116100d1578063b88d4fde1461081e578063b932dd641461083e578063c668286214610853578063c87b56dd1461086857600080fd5b8063a22cb465146107d4578063a475b5dd146107f4578063b66a0e5d1461080957600080fd5b806382afe550116101645780638d35aead1161013e5780638d35aead146107785780638da5cb5b1461078e57806395d89b41146107ac578063a0712d68146107c157600080fd5b806382afe55014610734578063853828b6146107505780638ad433ac1461076557600080fd5b8063775b9c1311610195578063775b9c13146106d45780637b2c835f146106f45780637e745aff1461071457600080fd5b80636e04b2b01461068a57806370a082311461069f578063715018a6146106bf57600080fd5b8063372c12b11161028a57806355f804b3116102335780635c975abb1161020d5780635c975abb146106285780636352211e146106405780636af3d238146106605780636c0360eb1461067557600080fd5b806355f804b3146105cd578063564566a8146105ed578063573f5dae1461060757600080fd5b80634f6ccce7116102645780634f6ccce71461057e578063518302271461059e57806355367ba9146105b857600080fd5b8063372c12b11461051157806342842e0e1461053e57806342966c681461055e57600080fd5b8063095ea7b3116102f75780632b5b5776116102d15780632b5b57761461048c5780632d871b73146104bc5780632f745c59146104dc57806335ac7af2146104fc57600080fd5b8063095ea7b31461043557806318160ddd1461045757806323b872dd1461046c57600080fd5b80630807f918116103285780630807f918146103c5578063081812fc146103e8578063081c8c441461042057600080fd5b806301ffc9a71461034f57806306fdde031461038457806307ebec27146103a6575b600080fd5b34801561035b57600080fd5b5061036f61036a3660046131e0565b610980565b60405190151581526020015b60405180910390f35b34801561039057600080fd5b50610399610991565b60405161037b9190613255565b3480156103b257600080fd5b5060125461036f90610100900460ff1681565b3480156103d157600080fd5b506103da610a23565b60405190815260200161037b565b3480156103f457600080fd5b50610408610403366004613268565b610a34565b6040516001600160a01b03909116815260200161037b565b34801561042c57600080fd5b50610399610ace565b34801561044157600080fd5b5061045561045036600461329d565b610b5c565b005b34801561046357600080fd5b506009546103da565b34801561047857600080fd5b506104556104873660046132c7565b610c8d565b34801561049857600080fd5b5061036f6104a7366004613303565b600d6020526000908152604090205460ff1681565b3480156104c857600080fd5b506104556104d736600461331e565b610d14565b3480156104e857600080fd5b506103da6104f736600461329d565b610e5b565b34801561050857600080fd5b506103da600781565b34801561051d57600080fd5b506103da61052c366004613303565b600c6020526000908152604090205481565b34801561054a57600080fd5b506104556105593660046132c7565b610f03565b34801561056a57600080fd5b50610455610579366004613268565b610f1e565b34801561058a57600080fd5b506103da610599366004613268565b610ffd565b3480156105aa57600080fd5b50600e5461036f9060ff1681565b3480156105c457600080fd5b506104556110a1565b3480156105d957600080fd5b506104556105e8366004613393565b611170565b3480156105f957600080fd5b5060125461036f9060ff1681565b34801561061357600080fd5b50600b5461036f90600160a01b900460ff1681565b34801561063457600080fd5b5060065460ff1661036f565b34801561064c57600080fd5b5061040861065b366004613268565b6111c4565b34801561066c57600080fd5b506103da600381565b34801561068157600080fd5b5061039961124f565b34801561069657600080fd5b5061045561125c565b3480156106ab57600080fd5b506103da6106ba366004613303565b6112e6565b3480156106cb57600080fd5b50610455611380565b3480156106e057600080fd5b506104556106ef36600461331e565b6113d4565b34801561070057600080fd5b5061045561070f366004613403565b611591565b34801561072057600080fd5b5061045561072f366004613403565b61166c565b34801561074057600080fd5b506103da670429d069189e000081565b34801561075c57600080fd5b506104556116d2565b610455610773366004613268565b6117bc565b34801561078457600080fd5b506103da61088e81565b34801561079a57600080fd5b50600b546001600160a01b0316610408565b3480156107b857600080fd5b50610399611b18565b6104556107cf366004613268565b611b27565b3480156107e057600080fd5b506104556107ef36600461341e565b611dd2565b34801561080057600080fd5b50610455611ddd565b34801561081557600080fd5b50610455611e34565b34801561082a57600080fd5b506104556108393660046134dd565b611f67565b34801561084a57600080fd5b506103da600f81565b34801561085f57600080fd5b50610399611ff5565b34801561087457600080fd5b50610399610883366004613268565b612002565b34801561089457600080fd5b506104556108a3366004613559565b6120a0565b3480156108b457600080fd5b506103da611c8481565b3480156108ca57600080fd5b5061036f6108d93660046135a2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561091357600080fd5b50610455610922366004613559565b6120fb565b34801561093357600080fd5b50610455610942366004613303565b612156565b34801561095357600080fd5b5061036f610962366004613303565b6001600160a01b03166000908152600d602052604090205460ff1690565b600061098b82612223565b92915050565b6060600080546109a0906135cc565b80601f01602080910402602001604051908101604052809291908181526020018280546109cc906135cc565b8015610a195780601f106109ee57610100808354040283529160200191610a19565b820191906000526020600020905b8154815290600101906020018083116109fc57829003601f168201915b5050505050905090565b610a3161088e611c8461361c565b81565b6000818152600260205260408120546001600160a01b0316610ab25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60108054610adb906135cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610b07906135cc565b8015610b545780601f10610b2957610100808354040283529160200191610b54565b820191906000526020600020905b815481529060010190602001808311610b3757829003601f168201915b505050505081565b6000610b67826111c4565b9050806001600160a01b0316836001600160a01b031603610bf05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610aa9565b336001600160a01b0382161480610c0c5750610c0c81336108d9565b610c7e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610aa9565b610c888383612261565b505050565b610c9733826122cf565b610d095760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610aa9565b610c888383836123c6565b600b546001600160a01b03163314610d5c5760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b60005b81811015610e1d57600c6000848484818110610d7d57610d7d613633565b9050602002016020810190610d929190613303565b6001600160a01b03166001600160a01b03168152602001908152602001600020600090556000600d6000858585818110610dce57610dce613633565b9050602002016020810190610de39190613303565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610e1581613649565b915050610d5f565b507f94b464c54f1d571efc887394dac758bca1097019f13bf5fe2fe34d59d7e36ab68282604051610e4f929190613662565b60405180910390a15050565b6000610e66836112e6565b8210610eda5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610aa9565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610c8883838360405180602001604052806000815250611f67565b601254610100900460ff16610f755760405162461bcd60e51b815260206004820152601060248201527f4275726e696e672064697361626c6564000000000000000000000000000000006044820152606401610aa9565b610f7f33826122cf565b610ff15760405162461bcd60e51b815260206004820152602560248201527f4275726e2063616c6c6572206973206e6f74206f776e6572206e6f722061707060448201527f726f7665640000000000000000000000000000000000000000000000000000006064820152608401610aa9565b610ffa8161259e565b50565b600061100860095490565b821061107c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610aa9565b6009828154811061108f5761108f613633565b90600052602060002001549050919050565b600b546001600160a01b031633146110e95760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b60125460ff1661113b5760405162461bcd60e51b815260206004820152601660248201527f53616c6520697320616c726561647920706175736564000000000000000000006044820152606401610aa9565b6012805460ff191690556040517f8a98cbd0cab14e33b8a5e5710b9b59bceec8af9a5b4b3bb32fb275cf04ea048d90600090a1565b600b546001600160a01b031633146111b85760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b610c88600f83836130bd565b6000818152600260205260408120546001600160a01b03168061098b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610aa9565b600f8054610adb906135cc565b600b546001600160a01b031633146112a45760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b60006112af60095490565b905060005b600f8110156112e2576112d0336112cb83856136ae565b612645565b806112da81613649565b9150506112b4565b5050565b60006001600160a01b0382166113645760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610aa9565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146113c85760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b6113d2600061265f565b565b600b546001600160a01b0316331461141c5760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b600b54600160a01b900460ff161561149c5760405162461bcd60e51b815260206004820152602660248201527f5768697465206c6973742073616c65206973206163746976652c63616e27742060448201527f646f2069742e00000000000000000000000000000000000000000000000000006064820152608401610aa9565b60005b8181101561155f576003600c60008585858181106114bf576114bf613633565b90506020020160208101906114d49190613303565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506001600d600085858581811061151057611510613633565b90506020020160208101906115259190613303565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061155781613649565b91505061149f565b507fffc59ad11e3b9d927999b956460f373be0ad524825e41c5c2fa16881b4e5085b8282604051610e4f929190613662565b600b546001600160a01b031633146115d95760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b60125460ff16156116525760405162461bcd60e51b815260206004820152602c60248201527f53616c6520697320696e2070726f677265737320616e642063616e6e6f74206260448201527f65206275726e6564204e465400000000000000000000000000000000000000006064820152608401610aa9565b601280549115156101000261ff0019909216919091179055565b600b546001600160a01b031633146116b45760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b600b546001600160a01b0316331461171a5760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b600047116117905760405162461bcd60e51b815260206004820152602260248201527f5769746864726177626c653a204e6f20616d6f756e7420746f2077697468647260448201527f61770000000000000000000000000000000000000000000000000000000000006064820152608401610aa9565b60405133904780156108fc02916000818181858888f19350505050158015610ffa573d6000803e3d6000fd5b600b54600160a01b900460ff166118155760405162461bcd60e51b815260206004820152601e60248201527f5768697465206c6973742073616c65206973206e6f74206163746976652e00006044820152606401610aa9565b600061182060095490565b905061088e61182f83836136ae565b111561187d5760405162461bcd60e51b815260206004820152601c60248201527f53616c6520776f756c6420657863656564206d617820737570706c79000000006044820152606401610aa9565b60038211156118ce5760405162461bcd60e51b815260206004820152601a60248201527f53616c6520776f756c6420657863656564206d6178206d696e740000000000006044820152606401610aa9565b6000821161191e5760405162461bcd60e51b815260206004820152601a60248201527f53616c6520776f756c6420657863656564206d696e206d696e740000000000006044820152606401610aa9565b336000908152600d602052604090205460ff1661197d5760405162461bcd60e51b815260206004820152601e60248201527f4d696e746572206973206e6f74206f6e207468652077686974656c69737400006044820152606401610aa9565b336000908152600c6020526040902054821115611a285760405162461bcd60e51b815260206004820152604860248201527f53616c6520776f756c6420657863656564206d61782070726573616c6520717560448201527f616e74697479206f722072656d61696e696e67207075726368617361626c652060648201527f7175616e74697479000000000000000000000000000000000000000000000000608482015260a401610aa9565b34611a3b83670429d069189e00006136c6565b1115611a895760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401610aa9565b60005b82811015611ab457611aa2336112cb83856136ae565b80611aac81613649565b915050611a8c565b50336000908152600c602052604081208054849290611ad490849061361c565b9091555050604080518381526020810183905233917f62085c87aaa3db85275e099905c0e2bb1416e4e07f59b167557da8b0cf534b8f910160405180910390a25050565b6060600180546109a0906135cc565b6000611b3260095490565b60125490915060ff16611b875760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610aa9565b611c84611b9483836136ae565b1115611be25760405162461bcd60e51b815260206004820152601c60248201527f53616c6520776f756c6420657863656564206d617820737570706c79000000006044820152606401610aa9565b6007821115611c335760405162461bcd60e51b815260206004820152601a60248201527f53616c6520776f756c6420657863656564206d6178206d696e740000000000006044820152606401610aa9565b81600010611c835760405162461bcd60e51b815260206004820152601a60248201527f53616c6520776f756c6420657863656564206d696e206d696e740000000000006044820152606401610aa9565b336000908152600d602052604090205460079060ff1615611ca25750600a5b8083611cad336112e6565b611cb791906136ae565b1115611d055760405162461bcd60e51b815260206004820152601d60248201527f53616c6520776f756c6420657863656564206d61782062616c616e63650000006044820152606401610aa9565b34611d1884670429d069189e00006136c6565b1115611d665760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401610aa9565b60005b83811015611d9157611d7f336112cb83866136ae565b80611d8981613649565b915050611d69565b50604080518481526020810184905233917f28dd348df32d72a0a2105cdd3cb91e4d6c715c6b455570901e116e26e146c03f910160405180910390a2505050565b6112e23383836126b1565b600b546001600160a01b03163314611e255760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b600e805460ff19166001179055565b600b546001600160a01b03163314611e7c5760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b60065460ff1615611ecf5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610aa9565b60125460ff1615611f225760405162461bcd60e51b815260206004820152601560248201527f53616c6520697320616c726561647920626567616e00000000000000000000006044820152606401610aa9565b6012805460ff19166001179055600b805460ff60a01b191690556040517f912ee23dde46ec889d6748212cce445d667f7041597691dc89e8549ad8bc0acb90600090a1565b611f7133836122cf565b611fe35760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610aa9565b611fef8484848461277f565b50505050565b60118054610adb906135cc565b6000818152600260205260409020546060906001600160a01b031661208f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610aa9565b61098b8261209b6127fd565b61280c565b600b546001600160a01b031633146120e85760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b80516112e2906011906020840190613141565b600b546001600160a01b031633146121435760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b80516112e2906010906020840190613141565b600b546001600160a01b0316331461219e5760405162461bcd60e51b815260206004820181905260248201526000805160206138568339815191526044820152606401610aa9565b6001600160a01b03811661221a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610aa9565b610ffa8161265f565b60006001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000148061098b575061098b826128fe565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612296826111c4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166123485760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610aa9565b6000612353836111c4565b9050806001600160a01b0316846001600160a01b0316148061238e5750836001600160a01b031661238384610a34565b6001600160a01b0316145b806123be57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166123d9826111c4565b6001600160a01b0316146124555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610aa9565b6001600160a01b0382166124d05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610aa9565b6124db838383612999565b6124e6600082612261565b6001600160a01b038316600090815260036020526040812080546001929061250f90849061361c565b90915550506001600160a01b038216600090815260036020526040812080546001929061253d9084906136ae565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006125a9826111c4565b90506125b781600084612999565b6125c2600083612261565b6001600160a01b03811660009081526003602052604081208054600192906125eb90849061361c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6112e28282604051806020016040528060008152506129a4565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036127125760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610aa9565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61278a8484846123c6565b61279684848484612a22565b611fef5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610aa9565b6060600f80546109a0906135cc565b600e5460609060ff166128ab5760108054612826906135cc565b80601f0160208091040260200160405190810160405280929190818152602001828054612852906135cc565b801561289f5780601f106128745761010080835404028352916020019161289f565b820191906000526020600020905b81548152906001019060200180831161288257829003601f168201915b5050505050905061098b565b60008251116128c957604051806020016040528060008152506128f7565b816128d384612b6e565b60116040516020016128e7939291906136e5565b6040516020818303038152906040525b9392505050565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061296157506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061098b57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161461098b565b610c88838383612ca3565b6129ae8383612d66565b6129bb6000848484612a22565b610c885760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610aa9565b60006001600160a01b0384163b15612b6357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a669033908990889088906004016137a8565b6020604051808303816000875af1925050508015612aa1575060408051601f3d908101601f19168201909252612a9e918101906137e4565b60015b612b49573d808015612acf576040519150601f19603f3d011682016040523d82523d6000602084013e612ad4565b606091505b508051600003612b415760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610aa9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506123be565b506001949350505050565b606081600003612bb157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612bdb5780612bc581613649565b9150612bd49050600a83613817565b9150612bb5565b60008167ffffffffffffffff811115612bf657612bf6613451565b6040519080825280601f01601f191660200182016040528015612c20576020820181803683370190505b5090505b84156123be57612c3560018361361c565b9150612c42600a8661382b565b612c4d9060306136ae565b60f81b818381518110612c6257612c62613633565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612c9c600a86613817565b9450612c24565b612cae838383612eb4565b6001600160a01b038316612d0957612d0481600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612d2c565b816001600160a01b0316836001600160a01b031614612d2c57612d2c8382612f2d565b6001600160a01b038216612d4357610c8881612fca565b826001600160a01b0316826001600160a01b031614610c8857610c888282613079565b6001600160a01b038216612dbc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610aa9565b6000818152600260205260409020546001600160a01b031615612e215760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610aa9565b612e2d60008383612999565b6001600160a01b0382166000908152600360205260408120805460019290612e569084906136ae565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60065460ff1615610c885760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201527f68696c65207061757365640000000000000000000000000000000000000000006064820152608401610aa9565b60006001612f3a846112e6565b612f44919061361c565b600083815260086020526040902054909150808214612f97576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612fdc9060019061361c565b6000838152600a60205260408120546009805493945090928490811061300457613004613633565b90600052602060002001549050806009838154811061302557613025613633565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061305d5761305d61383f565b6001900381819060005260206000200160009055905550505050565b6000613084836112e6565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546130c9906135cc565b90600052602060002090601f0160209004810192826130eb5760008555613131565b82601f106131045782800160ff19823516178555613131565b82800160010185558215613131579182015b82811115613131578235825591602001919060010190613116565b5061313d9291506131b5565b5090565b82805461314d906135cc565b90600052602060002090601f01602090048101928261316f5760008555613131565b82601f1061318857805160ff1916838001178555613131565b82800160010185558215613131579182015b8281111561313157825182559160200191906001019061319a565b5b8082111561313d57600081556001016131b6565b6001600160e01b031981168114610ffa57600080fd5b6000602082840312156131f257600080fd5b81356128f7816131ca565b60005b83811015613218578181015183820152602001613200565b83811115611fef5750506000910152565b600081518084526132418160208601602086016131fd565b601f01601f19169290920160200192915050565b6020815260006128f76020830184613229565b60006020828403121561327a57600080fd5b5035919050565b80356001600160a01b038116811461329857600080fd5b919050565b600080604083850312156132b057600080fd5b6132b983613281565b946020939093013593505050565b6000806000606084860312156132dc57600080fd5b6132e584613281565b92506132f360208501613281565b9150604084013590509250925092565b60006020828403121561331557600080fd5b6128f782613281565b6000806020838503121561333157600080fd5b823567ffffffffffffffff8082111561334957600080fd5b818501915085601f83011261335d57600080fd5b81358181111561336c57600080fd5b8660208260051b850101111561338157600080fd5b60209290920196919550909350505050565b600080602083850312156133a657600080fd5b823567ffffffffffffffff808211156133be57600080fd5b818501915085601f8301126133d257600080fd5b8135818111156133e157600080fd5b86602082850101111561338157600080fd5b8035801515811461329857600080fd5b60006020828403121561341557600080fd5b6128f7826133f3565b6000806040838503121561343157600080fd5b61343a83613281565b9150613448602084016133f3565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561348257613482613451565b604051601f8501601f19908116603f011681019082821181831017156134aa576134aa613451565b816040528093508581528686860111156134c357600080fd5b858560208301376000602087830101525050509392505050565b600080600080608085870312156134f357600080fd5b6134fc85613281565b935061350a60208601613281565b925060408501359150606085013567ffffffffffffffff81111561352d57600080fd5b8501601f8101871361353e57600080fd5b61354d87823560208401613467565b91505092959194509250565b60006020828403121561356b57600080fd5b813567ffffffffffffffff81111561358257600080fd5b8201601f8101841361359357600080fd5b6123be84823560208401613467565b600080604083850312156135b557600080fd5b6135be83613281565b915061344860208401613281565b600181811c908216806135e057607f821691505b60208210810361360057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561362e5761362e613606565b500390565b634e487b7160e01b600052603260045260246000fd5b60006001820161365b5761365b613606565b5060010190565b60208082528181018390526000908460408401835b868110156136a3576001600160a01b0361369084613281565b1682529183019190830190600101613677565b509695505050505050565b600082198211156136c1576136c1613606565b500190565b60008160001904831182151516156136e0576136e0613606565b500290565b6000845160206136f88285838a016131fd565b85519184019161370b8184848a016131fd565b8554920191600090600181811c908083168061372857607f831692505b858310810361374557634e487b7160e01b85526022600452602485fd5b808015613759576001811461376a57613797565b60ff19851688528388019550613797565b60008b81526020902060005b8581101561378f5781548a820152908401908801613776565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526137da6080830184613229565b9695505050505050565b6000602082840312156137f657600080fd5b81516128f7816131ca565b634e487b7160e01b600052601260045260246000fd5b60008261382657613826613801565b500490565b60008261383a5761383a613801565b500690565b634e487b7160e01b600052603160045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212203669b743f7929db286dfc722823b63030a35b9df931f55a79afd8f55589d7fb264736f6c634300080d0033

Deployed Bytecode Sourcemap

51293:4766:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55478:212;;;;;;;;;;-1:-1:-1;55478:212:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;55478:212:0;;;;;;;;24852:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;52013:33::-;;;;;;;;;;-1:-1:-1;52013:33:0;;;;;;;;;;;51673:73;;;;;;;;;;;;;:::i;:::-;;;1535:25:1;;;1523:2;1508:18;51673:73:0;1389:177:1;26411:221:0;;;;;;;;;;-1:-1:-1;26411:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1920:55:1;;;1902:74;;1890:2;1875:18;26411:221:0;1756:226:1;48088:28:0;;;;;;;;;;;;;:::i;25934:411::-;;;;;;;;;;-1:-1:-1;25934:411:0;;;;;:::i;:::-;;:::i;:::-;;39083:113;;;;;;;;;;-1:-1:-1;39171:10:0;:17;39083:113;;27161:339;;;;;;;;;;-1:-1:-1;27161:339:0;;;;;:::i;:::-;;:::i;49487:45::-;;;;;;;;;;-1:-1:-1;49487:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;50574:289;;;;;;;;;;-1:-1:-1;50574:289:0;;;;;:::i;:::-;;:::i;38751:256::-;;;;;;;;;;-1:-1:-1;38751:256:0;;;;;:::i;:::-;;:::i;51768:50::-;;;;;;;;;;;;51817:1;51768:50;;49436:44;;;;;;;;;;-1:-1:-1;49436:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;27571:185;;;;;;;;;;-1:-1:-1;27571:185:0;;;;;:::i;:::-;;:::i;54980:226::-;;;;;;;;;;-1:-1:-1;54980:226:0;;;;;:::i;:::-;;:::i;39273:233::-;;;;;;;;;;-1:-1:-1;39273:233:0;;;;;:::i;:::-;;:::i;48023:28::-;;;;;;;;;;-1:-1:-1;48023:28:0;;;;;;;;52585:165;;;;;;;;;;;;;:::i;48303:112::-;;;;;;;;;;-1:-1:-1;48303:112:0;;;;;:::i;:::-;;:::i;51974:32::-;;;;;;;;;;-1:-1:-1;51974:32:0;;;;;;;;49386:37;;;;;;;;;;-1:-1:-1;49386:37:0;;;;-1:-1:-1;;;49386:37:0;;;;;;45729:86;;;;;;;;;;-1:-1:-1;45800:7:0;;;;45729:86;;24546:239;;;;;;;;;;-1:-1:-1;24546:239:0;;;;;:::i;:::-;;:::i;49322:50::-;;;;;;;;;;;;49371:1;49322:50;;48060:21;;;;;;;;;;;;;:::i;52777:209::-;;;;;;;;;;;;;:::i;24276:208::-;;;;;;;;;;-1:-1:-1;24276:208:0;;;;;:::i;:::-;;:::i;4847:103::-;;;;;;;;;;;;;:::i;50240:326::-;;;;;;;;;;-1:-1:-1;50240:326:0;;;;;:::i;:::-;;:::i;54778:194::-;;;;;;;;;;-1:-1:-1;54778:194:0;;;;;:::i;:::-;;:::i;50104:128::-;;;;;;;;;;-1:-1:-1;50104:128:0;;;;;:::i;:::-;;:::i;51844:60::-;;;;;;;;;;;;51956:9;51844:60;;51012:195;;;;;;;;;;;;;:::i;52994:893::-;;;;;;:::i;:::-;;:::i;51612:46::-;;;;;;;;;;;;51654:4;51612:46;;4196:87;;;;;;;;;;-1:-1:-1;4269:6:0;;-1:-1:-1;;;;;4269:6:0;4196:87;;25021:104;;;;;;;;;;;;;:::i;53895:875::-;;;;;;:::i;:::-;;:::i;26704:155::-;;;;;;;;;;-1:-1:-1;26704:155:0;;;;;:::i;:::-;;:::i;48216:69::-;;;;;;;;;;;;;:::i;52362:215::-;;;;;;;;;;;;;:::i;27827:328::-;;;;;;;;;;-1:-1:-1;27827:328:0;;;;;:::i;:::-;;:::i;51554:45::-;;;;;;;;;;;;51597:2;51554:45;;48123:37;;;;;;;;;;;;;:::i;55715:233::-;;;;;;;;;;-1:-1:-1;55715:233:0;;;;;:::i;:::-;;:::i;48423:128::-;;;;;;;;;;-1:-1:-1;48423:128:0;;;;;:::i;:::-;;:::i;51495:44::-;;;;;;;;;;;;51535:4;51495:44;;26930:164;;;;;;;;;;-1:-1:-1;26930:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27051:25:0;;;27027:4;27051:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26930:164;48559:126;;;;;;;;;;-1:-1:-1;48559:126:0;;;;;:::i;:::-;;:::i;5105:201::-;;;;;;;;;;-1:-1:-1;5105:201:0;;;;;:::i;:::-;;:::i;49962:121::-;;;;;;;;;;-1:-1:-1;49962:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;50052:23:0;50028:4;50052:23;;;:13;:23;;;;;;;;;49962:121;55478:212;55617:4;55646:36;55670:11;55646:23;:36::i;:::-;55639:43;55478:212;-1:-1:-1;;55478:212:0:o;24852:100::-;24906:13;24939:5;24932:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24852:100;:::o;51673:73::-;51715:31;51654:4;51535;51715:31;:::i;:::-;51673:73;:::o;26411:221::-;26487:7;29754:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29754:16:0;26507:73;;;;-1:-1:-1;;;26507:73:0;;7976:2:1;26507:73:0;;;7958:21:1;8015:2;7995:18;;;7988:30;8054:34;8034:18;;;8027:62;-1:-1:-1;;;8105:18:1;;;8098:42;8157:19;;26507:73:0;;;;;;;;;-1:-1:-1;26600:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26600:24:0;;26411:221::o;48088:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25934:411::-;26015:13;26031:23;26046:7;26031:14;:23::i;:::-;26015:39;;26079:5;-1:-1:-1;;;;;26073:11:0;:2;-1:-1:-1;;;;;26073:11:0;;26065:57;;;;-1:-1:-1;;;26065:57:0;;8389:2:1;26065:57:0;;;8371:21:1;8428:2;8408:18;;;8401:30;8467:34;8447:18;;;8440:62;8538:3;8518:18;;;8511:31;8559:19;;26065:57:0;8187:397:1;26065:57:0;2994:10;-1:-1:-1;;;;;26157:21:0;;;;:62;;-1:-1:-1;26182:37:0;26199:5;2994:10;26930:164;:::i;26182:37::-;26135:168;;;;-1:-1:-1;;;26135:168:0;;8791:2:1;26135:168:0;;;8773:21:1;8830:2;8810:18;;;8803:30;8869:34;8849:18;;;8842:62;8940:26;8920:18;;;8913:54;8984:19;;26135:168:0;8589:420:1;26135:168:0;26316:21;26325:2;26329:7;26316:8;:21::i;:::-;26004:341;25934:411;;:::o;27161:339::-;27356:41;2994:10;27389:7;27356:18;:41::i;:::-;27348:103;;;;-1:-1:-1;;;27348:103:0;;9216:2:1;27348:103:0;;;9198:21:1;9255:2;9235:18;;;9228:30;9294:34;9274:18;;;9267:62;9365:19;9345:18;;;9338:47;9402:19;;27348:103:0;9014:413:1;27348:103:0;27464:28;27474:4;27480:2;27484:7;27464:9;:28::i;50574:289::-;4269:6;;-1:-1:-1;;;;;4269:6:0;2994:10;4416:23;4408:68;;;;-1:-1:-1;;;4408:68:0;;9634:2:1;4408:68:0;;;9616:21:1;;;9653:18;;;9646:30;-1:-1:-1;;;;;;;;;;;9692:18:1;;;9685:62;9764:18;;4408:68:0;9432:356:1;4408:68:0;50664:9:::1;50659:154;50679:20:::0;;::::1;50659:154;;;50728:9;:23;50738:9;;50748:1;50738:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50728:23:0::1;-1:-1:-1::0;;;;;50728:23:0::1;;;;;;;;;;;;50721:30;;;50796:5;50766:13;:27;50780:9;;50790:1;50780:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50766:27:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;50766:27:0;:35;;-1:-1:-1;;50766:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50701:3;::::1;::::0;::::1;:::i;:::-;;;;50659:154;;;;50828:27;50845:9;;50828:27;;;;;;;:::i;:::-;;;;;;;;50574:289:::0;;:::o;38751:256::-;38848:7;38884:23;38901:5;38884:16;:23::i;:::-;38876:5;:31;38868:87;;;;-1:-1:-1;;;38868:87:0;;10988:2:1;38868:87:0;;;10970:21:1;11027:2;11007:18;;;11000:30;11066:34;11046:18;;;11039:62;11137:13;11117:18;;;11110:41;11168:19;;38868:87:0;10786:407:1;38868:87:0;-1:-1:-1;;;;;;38973:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38751:256::o;27571:185::-;27709:39;27726:4;27732:2;27736:7;27709:39;;;;;;;;;;;;:16;:39::i;54980:226::-;55039:13;;;;;;;55031:42;;;;-1:-1:-1;;;55031:42:0;;11400:2:1;55031:42:0;;;11382:21:1;11439:2;11419:18;;;11412:30;11478:18;11458;;;11451:46;11514:18;;55031:42:0;11198:340:1;55031:42:0;55092:39;55111:10;55123:7;55092:18;:39::i;:::-;55084:89;;;;-1:-1:-1;;;55084:89:0;;11745:2:1;55084:89:0;;;11727:21:1;11784:2;11764:18;;;11757:30;11823:34;11803:18;;;11796:62;11894:7;11874:18;;;11867:35;11919:19;;55084:89:0;11543:401:1;55084:89:0;55184:14;55190:7;55184:5;:14::i;:::-;54980:226;:::o;39273:233::-;39348:7;39384:30;39171:10;:17;;39083:113;39384:30;39376:5;:38;39368:95;;;;-1:-1:-1;;;39368:95:0;;12151:2:1;39368:95:0;;;12133:21:1;12190:2;12170:18;;;12163:30;12229:34;12209:18;;;12202:62;12300:14;12280:18;;;12273:42;12332:19;;39368:95:0;11949:408:1;39368:95:0;39481:10;39492:5;39481:17;;;;;;;;:::i;:::-;;;;;;;;;39474:24;;39273:233;;;:::o;52585:165::-;4269:6;;-1:-1:-1;;;;;4269:6:0;2994:10;4416:23;4408:68;;;;-1:-1:-1;;;4408:68:0;;9634:2:1;4408:68:0;;;9616:21:1;;;9653:18;;;9646:30;-1:-1:-1;;;;;;;;;;;9692:18:1;;;9685:62;9764:18;;4408:68:0;9432:356:1;4408:68:0;52644:12:::1;::::0;::::1;;52636:47;;;::::0;-1:-1:-1;;;52636:47:0;;12564:2:1;52636:47:0::1;::::0;::::1;12546:21:1::0;12603:2;12583:18;;;12576:30;12642:24;12622:18;;;12615:52;12684:18;;52636:47:0::1;12362:346:1::0;52636:47:0::1;52694:12;:20:::0;;-1:-1:-1;;52694:20:0::1;::::0;;52730:12:::1;::::0;::::1;::::0;52709:5:::1;::::0;52730:12:::1;52585:165::o:0;48303:112::-;4269:6;;-1:-1:-1;;;;;4269:6:0;2994:10;4416:23;4408:68;;;;-1:-1:-1;;;4408:68:0;;9634:2:1;4408:68:0;;;9616:21:1;;;9653:18;;;9646:30;-1:-1:-1;;;;;;;;;;;9692:18:1;;;9685:62;9764:18;;4408:68:0;9432:356:1;4408:68:0;48384:23:::1;:7;48394:13:::0;;48384:23:::1;:::i;24546:239::-:0;24618:7;24654:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24654:16:0;;24681:73;;;;-1:-1:-1;;;24681:73:0;;12915:2:1;24681:73:0;;;12897:21:1;12954:2;12934:18;;;12927:30;12993:34;12973:18;;;12966:62;13064:11;13044:18;;;13037:39;13093:19;;24681:73:0;12713:405:1;48060:21:0;;;;;;;:::i;52777:209::-;4269:6;;-1:-1:-1;;;;;4269:6:0;2994:10;4416:23;4408:68;;;;-1:-1:-1;;;4408:68:0;;9634:2:1;4408:68:0;;;9616:21:1;;;9653:18;;;9646:30;-1:-1:-1;;;;;;;;;;;9692:18:1;;;9685:62;9764:18;;4408:68:0;9432:356:1;4408:68:0;52831:14:::1;52848:13;39171:10:::0;:17;;39083:113;52848:13:::1;52831:30;;52877:9;52872:107;51597:2;52892:1;:20;52872:107;;;52934:33;52944:10;52956;52965:1:::0;52956:6;:10:::1;:::i;:::-;52934:9;:33::i;:::-;52914:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52872:107;;;;52820:166;52777:209::o:0;24276:208::-;24348:7;-1:-1:-1;;;;;24376:19:0;;24368:74;;;;-1:-1:-1;;;24368:74:0;;13458:2:1;24368:74:0;;;13440:21:1;13497:2;13477:18;;;13470:30;13536:34;13516:18;;;13509:62;13607:12;13587:18;;;13580:40;13637:19;;24368:74:0;13256:406:1;24368:74:0;-1:-1:-1;;;;;;24460:16:0;;;;;:9;:16;;;;;;;24276:208::o;4847:103::-;4269:6;;-1:-1:-1;;;;;4269:6:0;2994:10;4416:23;4408:68;;;;-1:-1:-1;;;4408:68:0;;9634:2:1;4408:68:0;;;9616:21:1;;;9653:18;;;9646:30;-1:-1:-1;;;;;;;;;;;9692:18:1;;;9685:62;9764:18;;4408:68:0;9432:356:1;4408:68:0;4912:30:::1;4939:1;4912:18;:30::i;:::-;4847:103::o:0;50240:326::-;4269:6;;-1:-1:-1;;;;;4269:6:0;2994:10;4416:23;4408:68;;;;-1:-1:-1;;;4408:68:0;;9634:2:1;4408:68:0;;;9616:21:1;;;9653:18;;;9646:30;-1:-1:-1;;;;;;;;;;;9692:18:1;;;9685:62;9764:18;;4408:68:0;9432:356:1;4408:68:0;49863:17:::1;::::0;-1:-1:-1;;;49863:17:0;::::1;;;49862:18;49854:69;;;::::0;-1:-1:-1;;;49854:69:0;;13869:2:1;49854:69:0::1;::::0;::::1;13851:21:1::0;13908:2;13888:18;;;13881:30;13947:34;13927:18;;;13920:62;14018:8;13998:18;;;13991:36;14044:19;;49854:69:0::1;13667:402:1::0;49854:69:0::1;50352:9:::2;50347:171;50367:20:::0;;::::2;50347:171;;;49371:1;50409:9;:23;50419:9;;50429:1;50419:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50409:23:0::2;-1:-1:-1::0;;;;;50409:23:0::2;;;;;;;;;;;;:48;;;;50502:4;50472:13;:27;50486:9;;50496:1;50486:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50472:27:0::2;::::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;50472:27:0;:34;;-1:-1:-1;;50472:34:0::2;::::0;::::2;;::::0;;;::::2;::::0;;50389:3;::::2;::::0;::::2;:::i;:::-;;;;50347:171;;;;50533:25;50548:9;;50533:25;;;;;;;:::i;54778:194::-:0;4269:6;;-1:-1:-1;;;;;4269:6:0;2994:10;4416:23;4408:68;;;;-1:-1:-1;;;4408:68:0;;9634:2:1;4408:68:0;;;9616:21:1;;;9653:18;;;9646:30;-1:-1:-1;;;;;;;;;;;9692:18:1;;;9685:62;9764:18;;4408:68:0;9432:356:1;4408:68:0;54862:12:::1;::::0;::::1;;54861:13;54853:70;;;::::0;-1:-1:-1;;;54853:70:0;;14276:2:1;54853:70:0::1;::::0;::::1;14258:21:1::0;14315:2;14295:18;;;14288:30;14354:34;14334:18;;;14327:62;14425:14;14405:18;;;14398:42;14457:19;;54853:70:0::1;14074:408:1::0;54853:70:0::1;54934:13;:30:::0;;;::::1;;;;-1:-1:-1::0;;54934:30:0;;::::1;::::0;;;::::1;::::0;;54778:194::o;50104:128::-;4269:6;;-1:-1:-1;;;;;4269:6:0;2994:10;4416:23;4408:68;;;;-1:-1:-1;;;4408:68:0;;9634:2:1;4408:68:0;;;9616:21:1;;;9653:18;;;9646:30;-1:-1:-1;;;;;;;;;;;9692:18:1;;;9685:62;9764:18;;4408:68:0;9432:356:1;4408:68:0;50186:17:::1;:38:::0;;;::::1;;-1:-1:-1::0;;;50186:38:0::1;-1:-1:-1::0;;;;50186:38:0;;::::1;::::0;;;::::1;::::0;;50104:128::o;51012:195::-;4269:6;;-1:-1:-1;;;;;4269:6:0;2994:10;4416:23;4408:68;;;;-1:-1:-1;;;4408:68:0;;9634:2:1;4408:68:0;;;9616:21:1;;;9653:18;;;9646:30;-1:-1:-1;;;;;;;;;;;9692:18:1;;;9685:62;9764:18;;4408:68:0;9432:356:1;4408:68:0;51097:1:::1;51073:21;:25;51065:72;;;::::0;-1:-1:-1;;;51065:72:0;;14689:2:1;51065:72:0::1;::::0;::::1;14671:21:1::0;14728:2;14708:18;;;14701:30;14767:34;14747:18;;;14740:62;14838:4;14818:18;;;14811:32;14860:19;;51065:72:0::1;14487:398:1::0;51065:72:0::1;51148:51;::::0;51156:10:::1;::::0;51177:21:::1;51148:51:::0;::::1;;;::::0;::::1;::::0;;;51177:21;51156:10;51148:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;52994:893:::0;49727:17;;-1:-1:-1;;;49727:17:0;;;;49719:60;;;;-1:-1:-1;;;49719:60:0;;15092:2:1;49719:60:0;;;15074:21:1;15131:2;15111:18;;;15104:30;15170:32;15150:18;;;15143:60;15220:18;;49719:60:0;14890:354:1;49719:60:0;53095:14:::1;53112:13;39171:10:::0;:17;;39083:113;53112:13:::1;53095:30:::0;-1:-1:-1;51654:4:0::1;53144:17;53153:8:::0;53095:30;53144:17:::1;:::i;:::-;:36;;53136:77;;;::::0;-1:-1:-1;;;53136:77:0;;15451:2:1;53136:77:0::1;::::0;::::1;15433:21:1::0;15490:2;15470:18;;;15463:30;15529;15509:18;;;15502:58;15577:18;;53136:77:0::1;15249:352:1::0;53136:77:0::1;49371:1;53232:8;:34;;53224:73;;;::::0;-1:-1:-1;;;53224:73:0;;15808:2:1;53224:73:0::1;::::0;::::1;15790:21:1::0;15847:2;15827:18;;;15820:30;15886:28;15866:18;;;15859:56;15932:18;;53224:73:0::1;15606:350:1::0;53224:73:0::1;53327:1;53316:8;:12;53308:51;;;::::0;-1:-1:-1;;;53308:51:0;;16163:2:1;53308:51:0::1;::::0;::::1;16145:21:1::0;16202:2;16182:18;;;16175:30;16241:28;16221:18;;;16214:56;16287:18;;53308:51:0::1;15961:350:1::0;53308:51:0::1;53396:10;50028:4:::0;50052:23;;;:13;:23;;;;;;;;53370:72:::1;;;::::0;-1:-1:-1;;;53370:72:0;;16518:2:1;53370:72:0::1;::::0;::::1;16500:21:1::0;16557:2;16537:18;;;16530:30;16596:32;16576:18;;;16569:60;16646:18;;53370:72:0::1;16316:354:1::0;53370:72:0::1;53471:10;53461:21;::::0;;;:9:::1;:21;::::0;;;;;:33;-1:-1:-1;53461:33:0::1;53453:118;;;::::0;-1:-1:-1;;;53453:118:0;;16877:2:1;53453:118:0::1;::::0;::::1;16859:21:1::0;16916:2;16896:18;;;16889:30;16955:34;16935:18;;;16928:62;17026:34;17006:18;;;16999:62;17098:10;17077:19;;;17070:39;17126:19;;53453:118:0::1;16675:476:1::0;53453:118:0::1;53620:9;53590:26;53608:8:::0;51956:9:::1;53590:26;:::i;:::-;:39;;53582:73;;;::::0;-1:-1:-1;;;53582:73:0;;17531:2:1;53582:73:0::1;::::0;::::1;17513:21:1::0;17570:2;17550:18;;;17543:30;17609:23;17589:18;;;17582:51;17650:18;;53582:73:0::1;17329:345:1::0;53582:73:0::1;53681:9;53676:99;53700:8;53696:1;:12;53676:99;;;53730:33;53740:10;53752;53761:1:::0;53752:6;:10:::1;:::i;53730:33::-;53710:3:::0;::::1;::::0;::::1;:::i;:::-;;;;53676:99;;;-1:-1:-1::0;53795:10:0::1;53785:21;::::0;;;:9:::1;:21;::::0;;;;:33;;53810:8;;53785:21;:33:::1;::::0;53810:8;;53785:33:::1;:::i;:::-;::::0;;;-1:-1:-1;;53836:43:0::1;::::0;;17853:25:1;;;17909:2;17894:18;;17887:34;;;53850:10:0::1;::::0;53836:43:::1;::::0;17826:18:1;53836:43:0::1;;;;;;;53084:803;52994:893:::0;:::o;25021:104::-;25077:13;25110:7;25103:14;;;;;:::i;53895:875::-;53955:14;53972:13;39171:10;:17;;39083:113;53972:13;54004:12;;53955:30;;-1:-1:-1;54004:12:0;;53996:52;;;;-1:-1:-1;;;53996:52:0;;18134:2:1;53996:52:0;;;18116:21:1;18173:2;18153:18;;;18146:30;18212:29;18192:18;;;18185:57;18259:18;;53996:52:0;17932:351:1;53996:52:0;51535:4;54067:17;54076:8;54067:6;:17;:::i;:::-;:34;;54059:75;;;;-1:-1:-1;;;54059:75:0;;15451:2:1;54059:75:0;;;15433:21:1;15490:2;15470:18;;;15463:30;15529;15509:18;;;15502:58;15577:18;;54059:75:0;15249:352:1;54059:75:0;51817:1;54153:8;:34;;54145:73;;;;-1:-1:-1;;;54145:73:0;;15808:2:1;54145:73:0;;;15790:21:1;15847:2;15827:18;;;15820:30;15886:28;15866:18;;;15859:56;15932:18;;54145:73:0;15606:350:1;54145:73:0;54241:8;54237:1;:12;54229:51;;;;-1:-1:-1;;;54229:51:0;;16163:2:1;54229:51:0;;;16145:21:1;16202:2;16182:18;;;16175:30;16241:28;16221:18;;;16214:56;16287:18;;54229:51:0;15961:350:1;54229:51:0;54356:10;54291:11;54342:25;;;:13;:25;;;;;;51817:1;;54342:25;;54338:66;;;-1:-1:-1;54390:2:0;54338:66;54458:3;54446:8;54422:21;54432:10;54422:9;:21::i;:::-;:32;;;;:::i;:::-;:39;;54414:81;;;;-1:-1:-1;;;54414:81:0;;18490:2:1;54414:81:0;;;18472:21:1;18529:2;18509:18;;;18502:30;18568:31;18548:18;;;18541:59;18617:18;;54414:81:0;18288:353:1;54414:81:0;54547:9;54514:29;54535:8;51956:9;54514:29;:::i;:::-;:42;;54506:76;;;;-1:-1:-1;;;54506:76:0;;17531:2:1;54506:76:0;;;17513:21:1;17570:2;17550:18;;;17543:30;17609:23;17589:18;;;17582:51;17650:18;;54506:76:0;17329:345:1;54506:76:0;54608:9;54603:99;54627:8;54623:1;:12;54603:99;;;54657:33;54667:10;54679;54688:1;54679:6;:10;:::i;54657:33::-;54637:3;;;;:::i;:::-;;;;54603:99;;;-1:-1:-1;54719:43:0;;;17853:25:1;;;17909:2;17894:18;;17887:34;;;54733:10:0;;54719:43;;17826:18:1;54719:43:0;;;;;;;53944:826;;53895:875;:::o;26704:155::-;26799:52;2994:10;26832:8;26842;26799:18;:52::i;48216:69::-;4269:6;;-1:-1:-1;;;;;4269:6:0;2994:10;4416:23;4408:68;;;;-1:-1:-1;;;4408:68:0;;9634:2:1;4408:68:0;;;9616:21:1;;;9653:18;;;9646:30;-1:-1:-1;;;;;;;;;;;9692:18:1;;;9685:62;9764:18;;4408:68:0;9432:356:1;4408:68:0;48262:8:::1;:15:::0;;-1:-1:-1;;48262:15:0::1;48273:4;48262:15;::::0;;48216:69::o;52362:215::-;4269:6;;-1:-1:-1;;;;;4269:6:0;2994:10;4416:23;4408:68;;;;-1:-1:-1;;;4408:68:0;;9634:2:1;4408:68:0;;;9616:21:1;;;9653:18;;;9646:30;-1:-1:-1;;;;;;;;;;;9692:18:1;;;9685:62;9764:18;;4408:68:0;9432:356:1;4408:68:0;45800:7;;;;46054:9:::1;46046:38;;;::::0;-1:-1:-1;;;46046:38:0;;18848:2:1;46046:38:0::1;::::0;::::1;18830:21:1::0;18887:2;18867:18;;;18860:30;18926:18;18906;;;18899:46;18962:18;;46046:38:0::1;18646:340:1::0;46046:38:0::1;52436:12:::2;::::0;::::2;;52435:13;52427:47;;;::::0;-1:-1:-1;;;52427:47:0;;19193:2:1;52427:47:0::2;::::0;::::2;19175:21:1::0;19232:2;19212:18;;;19205:30;19271:23;19251:18;;;19244:51;19312:18;;52427:47:0::2;18991:345:1::0;52427:47:0::2;52485:12;:19:::0;;-1:-1:-1;;52485:19:0::2;52500:4;52485:19;::::0;;52515:17:::2;:25:::0;;-1:-1:-1;;;;52515:25:0::2;::::0;;52556:13:::2;::::0;::::2;::::0;52485:12:::2;::::0;52556:13:::2;52362:215::o:0;27827:328::-;28002:41;2994:10;28035:7;28002:18;:41::i;:::-;27994:103;;;;-1:-1:-1;;;27994:103:0;;9216:2:1;27994:103:0;;;9198:21:1;9255:2;9235:18;;;9228:30;9294:34;9274:18;;;9267:62;9365:19;9345:18;;;9338:47;9402:19;;27994:103:0;9014:413:1;27994:103:0;28108:39;28122:4;28128:2;28132:7;28141:5;28108:13;:39::i;:::-;27827:328;;;;:::o;48123:37::-;;;;;;;:::i;55715:233::-;29730:4;29754:16;;;:7;:16;;;;;;55788:13;;-1:-1:-1;;;;;29754:16:0;55814:76;;;;-1:-1:-1;;;55814:76:0;;19543:2:1;55814:76:0;;;19525:21:1;19582:2;19562:18;;;19555:30;19621:34;19601:18;;;19594:62;19692:17;19672:18;;;19665:45;19727:19;;55814:76:0;19341:411:1;55814:76:0;55908:32;55920:7;55929:10;:8;:10::i;:::-;55908:11;:32::i;48423:128::-;4269:6;;-1:-1:-1;;;;;4269:6:0;2994:10;4416:23;4408:68;;;;-1:-1:-1;;;4408:68:0;;9634:2:1;4408:68:0;;;9616:21:1;;;9653:18;;;9646:30;-1:-1:-1;;;;;;;;;;;9692:18:1;;;9685:62;9764:18;;4408:68:0;9432:356:1;4408:68:0;48510:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;48559:126::-:0;4269:6;;-1:-1:-1;;;;;4269:6:0;2994:10;4416:23;4408:68;;;;-1:-1:-1;;;4408:68:0;;9634:2:1;4408:68:0;;;9616:21:1;;;9653:18;;;9646:30;-1:-1:-1;;;;;;;;;;;9692:18:1;;;9685:62;9764:18;;4408:68:0;9432:356:1;4408:68:0;48645:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;5105:201::-:0;4269:6;;-1:-1:-1;;;;;4269:6:0;2994:10;4416:23;4408:68;;;;-1:-1:-1;;;4408:68:0;;9634:2:1;4408:68:0;;;9616:21:1;;;9653:18;;;9646:30;-1:-1:-1;;;;;;;;;;;9692:18:1;;;9685:62;9764:18;;4408:68:0;9432:356:1;4408:68:0;-1:-1:-1;;;;;5194:22:0;::::1;5186:73;;;::::0;-1:-1:-1;;;5186:73:0;;19959:2:1;5186:73:0::1;::::0;::::1;19941:21:1::0;19998:2;19978:18;;;19971:30;20037:34;20017:18;;;20010:62;20108:8;20088:18;;;20081:36;20134:19;;5186:73:0::1;19757:402:1::0;5186:73:0::1;5270:28;5289:8;5270:18;:28::i;38443:224::-:0;38545:4;-1:-1:-1;;;;;;38569:50:0;;38584:35;38569:50;;:90;;;38623:36;38647:11;38623:23;:36::i;33647:174::-;33722:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33722:29:0;-1:-1:-1;;;;;33722:29:0;;;;;;;;:24;;33776:23;33722:24;33776:14;:23::i;:::-;-1:-1:-1;;;;;33767:46:0;;;;;;;;;;;33647:174;;:::o;29959:348::-;30052:4;29754:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29754:16:0;30069:73;;;;-1:-1:-1;;;30069:73:0;;20366:2:1;30069:73:0;;;20348:21:1;20405:2;20385:18;;;20378:30;20444:34;20424:18;;;20417:62;-1:-1:-1;;;20495:18:1;;;20488:42;20547:19;;30069:73:0;20164:408:1;30069:73:0;30153:13;30169:23;30184:7;30169:14;:23::i;:::-;30153:39;;30222:5;-1:-1:-1;;;;;30211:16:0;:7;-1:-1:-1;;;;;30211:16:0;;:51;;;;30255:7;-1:-1:-1;;;;;30231:31:0;:20;30243:7;30231:11;:20::i;:::-;-1:-1:-1;;;;;30231:31:0;;30211:51;:87;;;-1:-1:-1;;;;;;27051:25:0;;;27027:4;27051:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30266:32;30203:96;29959:348;-1:-1:-1;;;;29959:348:0:o;32951:578::-;33110:4;-1:-1:-1;;;;;33083:31:0;:23;33098:7;33083:14;:23::i;:::-;-1:-1:-1;;;;;33083:31:0;;33075:85;;;;-1:-1:-1;;;33075:85:0;;20779:2:1;33075:85:0;;;20761:21:1;20818:2;20798:18;;;20791:30;20857:34;20837:18;;;20830:62;20928:11;20908:18;;;20901:39;20957:19;;33075:85:0;20577:405:1;33075:85:0;-1:-1:-1;;;;;33179:16:0;;33171:65;;;;-1:-1:-1;;;33171:65:0;;21189:2:1;33171:65:0;;;21171:21:1;21228:2;21208:18;;;21201:30;21267:34;21247:18;;;21240:62;21338:6;21318:18;;;21311:34;21362:19;;33171:65:0;20987:400:1;33171:65:0;33249:39;33270:4;33276:2;33280:7;33249:20;:39::i;:::-;33353:29;33370:1;33374:7;33353:8;:29::i;:::-;-1:-1:-1;;;;;33395:15:0;;;;;;:9;:15;;;;;:20;;33414:1;;33395:15;:20;;33414:1;;33395:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33426:13:0;;;;;;:9;:13;;;;;:18;;33443:1;;33426:13;:18;;33443:1;;33426:18;:::i;:::-;;;;-1:-1:-1;;33455:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33455:21:0;-1:-1:-1;;;;;33455:21:0;;;;;;;;;33494:27;;33455:16;;33494:27;;;;;;;32951:578;;;:::o;32254:360::-;32314:13;32330:23;32345:7;32330:14;:23::i;:::-;32314:39;;32366:48;32387:5;32402:1;32406:7;32366:20;:48::i;:::-;32455:29;32472:1;32476:7;32455:8;:29::i;:::-;-1:-1:-1;;;;;32497:16:0;;;;;;:9;:16;;;;;:21;;32517:1;;32497:16;:21;;32517:1;;32497:21;:::i;:::-;;;;-1:-1:-1;;32536:16:0;;;;:7;:16;;;;;;32529:23;;-1:-1:-1;;;;;;32529:23:0;;;32570:36;32544:7;;32536:16;-1:-1:-1;;;;;32570:36:0;;;;;32536:16;;32570:36;32303:311;32254:360;:::o;30649:110::-;30725:26;30735:2;30739:7;30725:26;;;;;;;;;;;;:9;:26::i;5466:191::-;5559:6;;;-1:-1:-1;;;;;5576:17:0;;;-1:-1:-1;;;;;;5576:17:0;;;;;;;5609:40;;5559:6;;;5576:17;5559:6;;5609:40;;5540:16;;5609:40;5529:128;5466:191;:::o;33963:315::-;34118:8;-1:-1:-1;;;;;34109:17:0;:5;-1:-1:-1;;;;;34109:17:0;;34101:55;;;;-1:-1:-1;;;34101:55:0;;21594:2:1;34101:55:0;;;21576:21:1;21633:2;21613:18;;;21606:30;21672:27;21652:18;;;21645:55;21717:18;;34101:55:0;21392:349:1;34101:55:0;-1:-1:-1;;;;;34167:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34167:46:0;;;;;;;;;;34229:41;;586::1;;;34229::0;;559:18:1;34229:41:0;;;;;;;33963:315;;;:::o;29037:::-;29194:28;29204:4;29210:2;29214:7;29194:9;:28::i;:::-;29241:48;29264:4;29270:2;29274:7;29283:5;29241:22;:48::i;:::-;29233:111;;;;-1:-1:-1;;;29233:111:0;;21948:2:1;29233:111:0;;;21930:21:1;21987:2;21967:18;;;21960:30;22026:34;22006:18;;;21999:62;-1:-1:-1;;;22077:18:1;;;22070:48;22135:19;;29233:111:0;21746:414:1;55956:100:0;56008:13;56041:7;56034:14;;;;;:::i;48704:491::-;48821:8;;48790:13;;48821:8;;48816:63;;48853:14;48846:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48816:63;48936:1;48917:8;48911:22;:26;:276;;;;;;;;;;;;;;;;;49029:8;49064:19;:8;:17;:19::i;:::-;49110:13;48986:160;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48911:276;48891:296;48704:491;-1:-1:-1;;;48704:491:0:o;23907:305::-;24009:4;-1:-1:-1;;;;;;24046:40:0;;24061:25;24046:40;;:105;;-1:-1:-1;;;;;;;24103:48:0;;24118:33;24103:48;24046:105;:158;;;-1:-1:-1;22469:25:0;-1:-1:-1;;;;;;22454:40:0;;;24168:36;22345:157;55234:220;55401:45;55428:4;55434:2;55438:7;55401:26;:45::i;30986:321::-;31116:18;31122:2;31126:7;31116:5;:18::i;:::-;31167:54;31198:1;31202:2;31206:7;31215:5;31167:22;:54::i;:::-;31145:154;;;;-1:-1:-1;;;31145:154:0;;21948:2:1;31145:154:0;;;21930:21:1;21987:2;21967:18;;;21960:30;22026:34;22006:18;;;21999:62;-1:-1:-1;;;22077:18:1;;;22070:48;22135:19;;31145:154:0;21746:414:1;34843:799:0;34998:4;-1:-1:-1;;;;;35019:13:0;;14466:20;14514:8;35015:620;;35055:72;;-1:-1:-1;;;35055:72:0;;-1:-1:-1;;;;;35055:36:0;;;;;:72;;2994:10;;35106:4;;35112:7;;35121:5;;35055:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35055:72:0;;;;;;;;-1:-1:-1;;35055:72:0;;;;;;;;;;;;:::i;:::-;;;35051:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35297:6;:13;35314:1;35297:18;35293:272;;35340:60;;-1:-1:-1;;;35340:60:0;;21948:2:1;35340:60:0;;;21930:21:1;21987:2;21967:18;;;21960:30;22026:34;22006:18;;;21999:62;-1:-1:-1;;;22077:18:1;;;22070:48;22135:19;;35340:60:0;21746:414:1;35293:272:0;35515:6;35509:13;35500:6;35496:2;35492:15;35485:38;35051:529;-1:-1:-1;;;;;;35178:51:0;-1:-1:-1;;;35178:51:0;;-1:-1:-1;35171:58:0;;35015:620;-1:-1:-1;35619:4:0;34843:799;;;;;;:::o;468:723::-;524:13;745:5;754:1;745:10;741:53;;-1:-1:-1;;772:10:0;;;;;;;;;;;;;;;;;;468:723::o;741:53::-;819:5;804:12;860:78;867:9;;860:78;;893:8;;;;:::i;:::-;;-1:-1:-1;916:10:0;;-1:-1:-1;924:2:0;916:10;;:::i;:::-;;;860:78;;;948:19;980:6;970:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;970:17:0;;948:39;;998:154;1005:10;;998:154;;1032:11;1042:1;1032:11;;:::i;:::-;;-1:-1:-1;1101:10:0;1109:2;1101:5;:10;:::i;:::-;1088:24;;:2;:24;:::i;:::-;1075:39;;1058:6;1065;1058:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1129:11:0;1138:2;1129:11;;:::i;:::-;;;998:154;;40119:589;40263:45;40290:4;40296:2;40300:7;40263:26;:45::i;:::-;-1:-1:-1;;;;;40325:18:0;;40321:187;;40360:40;40392:7;41535:10;:17;;41508:24;;;;:15;:24;;;;;:44;;;41563:24;;;;;;;;;;;;41431:164;40360:40;40321:187;;;40430:2;-1:-1:-1;;;;;40422:10:0;:4;-1:-1:-1;;;;;40422:10:0;;40418:90;;40449:47;40482:4;40488:7;40449:32;:47::i;:::-;-1:-1:-1;;;;;40522:16:0;;40518:183;;40555:45;40592:7;40555:36;:45::i;40518:183::-;40628:4;-1:-1:-1;;;;;40622:10:0;:2;-1:-1:-1;;;;;40622:10:0;;40618:83;;40649:40;40677:2;40681:7;40649:27;:40::i;31643:382::-;-1:-1:-1;;;;;31723:16:0;;31715:61;;;;-1:-1:-1;;;31715:61:0;;25284:2:1;31715:61:0;;;25266:21:1;;;25303:18;;;25296:30;25362:34;25342:18;;;25335:62;25414:18;;31715:61:0;25082:356:1;31715:61:0;29730:4;29754:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29754:16:0;:30;31787:58;;;;-1:-1:-1;;;31787:58:0;;25645:2:1;31787:58:0;;;25627:21:1;25684:2;25664:18;;;25657:30;25723;25703:18;;;25696:58;25771:18;;31787:58:0;25443:352:1;31787:58:0;31858:45;31887:1;31891:2;31895:7;31858:20;:45::i;:::-;-1:-1:-1;;;;;31916:13:0;;;;;;:9;:13;;;;;:18;;31933:1;;31916:13;:18;;31933:1;;31916:18;:::i;:::-;;;;-1:-1:-1;;31945:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31945:21:0;-1:-1:-1;;;;;31945:21:0;;;;;;;;31984:33;;31945:16;;;31984:33;;31945:16;;31984:33;31643:382;;:::o;47599:275::-;45800:7;;;;47809:9;47801:65;;;;-1:-1:-1;;;47801:65:0;;26002:2:1;47801:65:0;;;25984:21:1;26041:2;26021:18;;;26014:30;26080:34;26060:18;;;26053:62;26151:13;26131:18;;;26124:41;26182:19;;47801:65:0;25800:407:1;42222:988:0;42488:22;42538:1;42513:22;42530:4;42513:16;:22::i;:::-;:26;;;;:::i;:::-;42550:18;42571:26;;;:17;:26;;;;;;42488:51;;-1:-1:-1;42704:28:0;;;42700:328;;-1:-1:-1;;;;;42771:18:0;;42749:19;42771:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42822:30;;;;;;:44;;;42939:30;;:17;:30;;;;;:43;;;42700:328;-1:-1:-1;43124:26:0;;;;:17;:26;;;;;;;;43117:33;;;-1:-1:-1;;;;;43168:18:0;;;;;:12;:18;;;;;:34;;;;;;;43161:41;42222:988::o;43505:1079::-;43783:10;:17;43758:22;;43783:21;;43803:1;;43783:21;:::i;:::-;43815:18;43836:24;;;:15;:24;;;;;;44209:10;:26;;43758:46;;-1:-1:-1;43836:24:0;;43758:46;;44209:26;;;;;;:::i;:::-;;;;;;;;;44187:48;;44273:11;44248:10;44259;44248:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44353:28;;;:15;:28;;;;;;;:41;;;44525:24;;;;;44518:31;44560:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43576:1008;;;43505:1079;:::o;41009:221::-;41094:14;41111:20;41128:2;41111:16;:20::i;:::-;-1:-1:-1;;;;;41142:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41187:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41009:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:177:1;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1141:2;1120:15;-1:-1:-1;;1116:29:1;1107:39;;;;1148:4;1103:50;;901:258;-1:-1:-1;;901:258:1:o;1164:220::-;1313:2;1302:9;1295:21;1276:4;1333:45;1374:2;1363:9;1359:18;1351:6;1333:45;:::i;1571:180::-;1630:6;1683:2;1671:9;1662:7;1658:23;1654:32;1651:52;;;1699:1;1696;1689:12;1651:52;-1:-1:-1;1722:23:1;;1571:180;-1:-1:-1;1571:180:1:o;1987:196::-;2055:20;;-1:-1:-1;;;;;2104:54:1;;2094:65;;2084:93;;2173:1;2170;2163:12;2084:93;1987:196;;;:::o;2188:254::-;2256:6;2264;2317:2;2305:9;2296:7;2292:23;2288:32;2285:52;;;2333:1;2330;2323:12;2285:52;2356:29;2375:9;2356:29;:::i;:::-;2346:39;2432:2;2417:18;;;;2404:32;;-1:-1:-1;;;2188:254:1:o;2447:328::-;2524:6;2532;2540;2593:2;2581:9;2572:7;2568:23;2564:32;2561:52;;;2609:1;2606;2599:12;2561:52;2632:29;2651:9;2632:29;:::i;:::-;2622:39;;2680:38;2714:2;2703:9;2699:18;2680:38;:::i;:::-;2670:48;;2765:2;2754:9;2750:18;2737:32;2727:42;;2447:328;;;;;:::o;2780:186::-;2839:6;2892:2;2880:9;2871:7;2867:23;2863:32;2860:52;;;2908:1;2905;2898:12;2860:52;2931:29;2950:9;2931:29;:::i;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:592::-;3662:6;3670;3723:2;3711:9;3702:7;3698:23;3694:32;3691:52;;;3739:1;3736;3729:12;3691:52;3779:9;3766:23;3808:18;3849:2;3841:6;3838:14;3835:34;;;3865:1;3862;3855:12;3835:34;3903:6;3892:9;3888:22;3878:32;;3948:7;3941:4;3937:2;3933:13;3929:27;3919:55;;3970:1;3967;3960:12;3919:55;4010:2;3997:16;4036:2;4028:6;4025:14;4022:34;;;4052:1;4049;4042:12;4022:34;4097:7;4092:2;4083:6;4079:2;4075:15;4071:24;4068:37;4065:57;;;4118:1;4115;4108:12;4188:160;4253:20;;4309:13;;4302:21;4292:32;;4282:60;;4338:1;4335;4328:12;4353:180;4409:6;4462:2;4450:9;4441:7;4437:23;4433:32;4430:52;;;4478:1;4475;4468:12;4430:52;4501:26;4517:9;4501:26;:::i;4538:254::-;4603:6;4611;4664:2;4652:9;4643:7;4639:23;4635:32;4632:52;;;4680:1;4677;4670:12;4632:52;4703:29;4722:9;4703:29;:::i;:::-;4693:39;;4751:35;4782:2;4771:9;4767:18;4751:35;:::i;:::-;4741:45;;4538:254;;;;;:::o;4797:184::-;-1:-1:-1;;;4846:1:1;4839:88;4946:4;4943:1;4936:15;4970:4;4967:1;4960:15;4986:631;5050:5;5080:18;5121:2;5113:6;5110:14;5107:40;;;5127:18;;:::i;:::-;5202:2;5196:9;5170:2;5256:15;;-1:-1:-1;;5252:24:1;;;5278:2;5248:33;5244:42;5232:55;;;5302:18;;;5322:22;;;5299:46;5296:72;;;5348:18;;:::i;:::-;5388:10;5384:2;5377:22;5417:6;5408:15;;5447:6;5439;5432:22;5487:3;5478:6;5473:3;5469:16;5466:25;5463:45;;;5504:1;5501;5494:12;5463:45;5554:6;5549:3;5542:4;5534:6;5530:17;5517:44;5609:1;5602:4;5593:6;5585;5581:19;5577:30;5570:41;;;;4986:631;;;;;:::o;5622:666::-;5717:6;5725;5733;5741;5794:3;5782:9;5773:7;5769:23;5765:33;5762:53;;;5811:1;5808;5801:12;5762:53;5834:29;5853:9;5834:29;:::i;:::-;5824:39;;5882:38;5916:2;5905:9;5901:18;5882:38;:::i;:::-;5872:48;;5967:2;5956:9;5952:18;5939:32;5929:42;;6022:2;6011:9;6007:18;5994:32;6049:18;6041:6;6038:30;6035:50;;;6081:1;6078;6071:12;6035:50;6104:22;;6157:4;6149:13;;6145:27;-1:-1:-1;6135:55:1;;6186:1;6183;6176:12;6135:55;6209:73;6274:7;6269:2;6256:16;6251:2;6247;6243:11;6209:73;:::i;:::-;6199:83;;;5622:666;;;;;;;:::o;6293:450::-;6362:6;6415:2;6403:9;6394:7;6390:23;6386:32;6383:52;;;6431:1;6428;6421:12;6383:52;6471:9;6458:23;6504:18;6496:6;6493:30;6490:50;;;6536:1;6533;6526:12;6490:50;6559:22;;6612:4;6604:13;;6600:27;-1:-1:-1;6590:55:1;;6641:1;6638;6631:12;6590:55;6664:73;6729:7;6724:2;6711:16;6706:2;6702;6698:11;6664:73;:::i;6748:260::-;6816:6;6824;6877:2;6865:9;6856:7;6852:23;6848:32;6845:52;;;6893:1;6890;6883:12;6845:52;6916:29;6935:9;6916:29;:::i;:::-;6906:39;;6964:38;6998:2;6987:9;6983:18;6964:38;:::i;7013:437::-;7092:1;7088:12;;;;7135;;;7156:61;;7210:4;7202:6;7198:17;7188:27;;7156:61;7263:2;7255:6;7252:14;7232:18;7229:38;7226:218;;-1:-1:-1;;;7297:1:1;7290:88;7401:4;7398:1;7391:15;7429:4;7426:1;7419:15;7226:218;;7013:437;;;:::o;7455:184::-;-1:-1:-1;;;7504:1:1;7497:88;7604:4;7601:1;7594:15;7628:4;7625:1;7618:15;7644:125;7684:4;7712:1;7709;7706:8;7703:34;;;7717:18;;:::i;:::-;-1:-1:-1;7754:9:1;;7644:125::o;9793:184::-;-1:-1:-1;;;9842:1:1;9835:88;9942:4;9939:1;9932:15;9966:4;9963:1;9956:15;9982:135;10021:3;10042:17;;;10039:43;;10062:18;;:::i;:::-;-1:-1:-1;10109:1:1;10098:13;;9982:135::o;10122:659::-;10303:2;10355:21;;;10328:18;;;10411:22;;;10274:4;;10490:6;10464:2;10449:18;;10274:4;10524:231;10538:6;10535:1;10532:13;10524:231;;;-1:-1:-1;;;;;10603:26:1;10622:6;10603:26;:::i;:::-;10599:75;10587:88;;10730:15;;;;10695:12;;;;10560:1;10553:9;10524:231;;;-1:-1:-1;10772:3:1;10122:659;-1:-1:-1;;;;;;10122:659:1:o;13123:128::-;13163:3;13194:1;13190:6;13187:1;13184:13;13181:39;;;13200:18;;:::i;:::-;-1:-1:-1;13236:9:1;;13123:128::o;17156:168::-;17196:7;17262:1;17258;17254:6;17250:14;17247:1;17244:21;17239:1;17232:9;17225:17;17221:45;17218:71;;;17269:18;;:::i;:::-;-1:-1:-1;17309:9:1;;17156:168::o;22291:1584::-;22515:3;22553:6;22547:13;22579:4;22592:51;22636:6;22631:3;22626:2;22618:6;22614:15;22592:51;:::i;:::-;22706:13;;22665:16;;;;22728:55;22706:13;22665:16;22750:15;;;22728:55;:::i;:::-;22872:13;;22805:20;;;22845:1;;22932;22954:18;;;;23007;;;;23034:93;;23112:4;23102:8;23098:19;23086:31;;23034:93;23175:2;23165:8;23162:16;23142:18;23139:40;23136:224;;-1:-1:-1;;;23209:3:1;23202:90;23315:4;23312:1;23305:15;23345:4;23340:3;23333:17;23136:224;23376:18;23403:110;;;;23527:1;23522:328;;;;23369:481;;23403:110;-1:-1:-1;;23438:24:1;;23424:39;;23483:20;;;;-1:-1:-1;23403:110:1;;23522:328;22238:1;22231:14;;;22275:4;22262:18;;23617:1;23631:169;23645:8;23642:1;23639:15;23631:169;;;23727:14;;23712:13;;;23705:37;23770:16;;;;23662:10;;23631:169;;;23635:3;;23831:8;23824:5;23820:20;23813:27;;23369:481;-1:-1:-1;23866:3:1;;22291:1584;-1:-1:-1;;;;;;;;;;;22291:1584:1:o;23880:512::-;24074:4;-1:-1:-1;;;;;24184:2:1;24176:6;24172:15;24161:9;24154:34;24236:2;24228:6;24224:15;24219:2;24208:9;24204:18;24197:43;;24276:6;24271:2;24260:9;24256:18;24249:34;24319:3;24314:2;24303:9;24299:18;24292:31;24340:46;24381:3;24370:9;24366:19;24358:6;24340:46;:::i;:::-;24332:54;23880:512;-1:-1:-1;;;;;;23880:512:1:o;24397:249::-;24466:6;24519:2;24507:9;24498:7;24494:23;24490:32;24487:52;;;24535:1;24532;24525:12;24487:52;24567:9;24561:16;24586:30;24610:5;24586:30;:::i;24651:184::-;-1:-1:-1;;;24700:1:1;24693:88;24800:4;24797:1;24790:15;24824:4;24821:1;24814:15;24840:120;24880:1;24906;24896:35;;24911:18;;:::i;:::-;-1:-1:-1;24945:9:1;;24840:120::o;24965:112::-;24997:1;25023;25013:35;;25028:18;;:::i;:::-;-1:-1:-1;25062:9:1;;24965:112::o;26212:184::-;-1:-1:-1;;;26261:1:1;26254:88;26361:4;26358:1;26351:15;26385:4;26382:1;26375:15

Swarm Source

ipfs://3669b743f7929db286dfc722823b63030a35b9df931f55a79afd8f55589d7fb2
Loading...
Loading
Loading...
Loading
[ 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.