ETH Price: $2,524.85 (+0.29%)

Token

Nonki Shiba (NONKISHIBA)
 

Overview

Max Total Supply

777 NONKISHIBA

Holders

367

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NONKISHIBA
0x1F98d68B3c419e88708741D1d89685eF5BA2D27d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Nonki Shiba is a group of carefree shibas who are masters of disguise and inu of all trades. They are the only shibas that can generate $NONKI to get rarity tickets for "Nonkiverse" collection.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NONKISHIBA

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-04
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


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


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

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

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


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


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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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



pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}



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



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



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;

    uint256 public MAX_HOLDING_NFT = 15;
    
    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

}



pragma solidity ^0.8.0;

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}



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



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, Ownable, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
     
    event AddToWhiteList(address _address);
    event RemovedFromWhiteList(address _address);
    event WhiteListMultipleAddress(address[] accounts);
    event RemoveWhiteListedMultipleAddress(address[] accounts);
    mapping (address => bool) public isWhiteListed;
    
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);
        if (_msgSender() != owner() && !isWhiteListed[_msgSender()]) {
            require(!paused(), "ERC721Pausable: token transfer while paused");
        }
    }
    
    function getWhiteListStatus(address _address) public view returns (bool) {
        return isWhiteListed[_address];
    }
    
    function whiteListAddress(address _address) public onlyOwner{
       isWhiteListed[_address] = true;
       emit AddToWhiteList(_address);
    }
    
    function removeWhiteListedAddress (address _address) public onlyOwner{
       isWhiteListed[_address] = false;
       emit RemovedFromWhiteList(_address);
    }
    
    function whiteListMultipleAddress(address[] calldata accounts) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++){
            isWhiteListed[accounts[i]] = true;
        }
        emit WhiteListMultipleAddress(accounts);
    }
    
    function removeWhiteListedMultipleAddress(address[] calldata accounts) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++){
            isWhiteListed[accounts[i]] = false;
        }
        emit RemoveWhiteListedMultipleAddress(accounts);
    }
}


pragma solidity ^0.8.0;

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens 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 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

contract NonkiToken is ERC20("$NONKI", "$NONKI"), Ownable {
    /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef).
    function mint(address _to, uint256 _amount) public onlyOwner {
        _mint(_to, _amount);
    }
}

contract NONKISHIBA is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdTracker;

    uint256 public MAX_NFT = 777;
    uint256 public PRICE = 5 * 10**16;
    uint256 public MAX_BY_MINT = 15;
    
    address public creatorAddress;
    string public baseTokenURI;

    struct Holder {
        uint256 rewardAmount;
        uint256 startDate;
    }

    mapping(address => Holder) public holders;

    NonkiToken public nonkitoken;
    
    event CreateNonkiShiba(uint256 indexed id);
    
    constructor(string memory baseURI, address payable creator, NonkiToken _nonkitoken) ERC721("Nonki Shiba", "NONKISHIBA") {
        setBaseURI(baseURI);
        creatorAddress = creator;
        nonkitoken = _nonkitoken;
        pause(true);
    }
    
    modifier saleIsOpen {
        require(_totalSupply() <= MAX_NFT, "Sale end");
        if (_msgSender() != owner() && !isWhiteListed[_msgSender()]) {
            require(!paused(), "Pausable: paused");
        }
        _;
    }
    
    function _totalSupply() internal view returns (uint) {
        return _tokenIdTracker.current();
    }
    
    function totalMint() public view returns (uint256) {
        return _totalSupply();
    }
    
    function mint(address _to, uint256 _count) public payable saleIsOpen{
        uint256 total = _totalSupply();
        uint256 tokenCount = balanceOf(_to);
        require(total + _count <= MAX_NFT, "Max limit");
        require(total <= MAX_NFT, "Sale end");
        require(_count <= MAX_BY_MINT, "Exceeds number");
        require(tokenCount + _count <= MAX_HOLDING_NFT, "Max limit per address");
        require(msg.value >= PRICE.mul(_count), "Value below price");
        //Airdrop and Reward
        harvest(address(_to));
        nonkitoken.mint(address(_to), 100 * _count * 10**18);
        holders[address(_to)].rewardAmount = holders[address(_to)].rewardAmount.add(100 * _count * 10**18);
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }

    function harvest(address _to) public{
        if (holders[address(_to)].startDate != 0 && holders[address(_to)].startDate < block.timestamp) {
            uint256 diff = block.timestamp.sub(holders[address(_to)].startDate).div(86400);
            nonkitoken.mint(address(_to), balanceOf(_to) * 10 * diff * 10**18);
            holders[address(_to)].rewardAmount = holders[address(_to)].rewardAmount.add(balanceOf(_to) * 10 * diff * 10**18);
        }
        holders[address(_to)].startDate = block.timestamp;
    }
    
    function _mintAnElement(address _to) private {
        uint id = _totalSupply();
        _tokenIdTracker.increment();
        _safeMint(_to, id);
        emit CreateNonkiShiba(id);
    }

    function setCreatorAddress(address payable creator) public onlyOwner {
        creatorAddress = creator;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function pause(bool val) public onlyOwner {
        if (val == true) {
            _pause();
            return;
        }
        _unpause();
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(creatorAddress, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

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

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
    
    function updateMaxNFT(uint256 newLimit) public onlyOwner{
        MAX_NFT = newLimit;
    }

    function updateMaxMintLimit(uint256 newLimit) public onlyOwner{
       MAX_BY_MINT = newLimit;
    }
    
    function updateHoldingLimit(uint256 newLimit) public onlyOwner{
        MAX_HOLDING_NFT = newLimit;
    }

    function updatePrice(uint256 newPrice) public onlyOwner{
        PRICE = newPrice;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address payable","name":"creator","type":"address"},{"internalType":"contract NonkiToken","name":"_nonkitoken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"AddToWhiteList","type":"event"},{"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":"uint256","name":"id","type":"uint256"}],"name":"CreateNonkiShiba","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":false,"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"RemoveWhiteListedMultipleAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"RemovedFromWhiteList","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":"accounts","type":"address[]"}],"name":"WhiteListMultipleAddress","type":"event"},{"inputs":[],"name":"MAX_BY_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_HOLDING_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","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":"baseTokenURI","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":[],"name":"creatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getWhiteListStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holders","outputs":[{"internalType":"uint256","name":"rewardAmount","type":"uint256"},{"internalType":"uint256","name":"startDate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonkitoken","outputs":[{"internalType":"contract NonkiToken","name":"","type":"address"}],"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":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeWhiteListedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"removeWhiteListedMultipleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"creator","type":"address"}],"name":"setCreatorAddress","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":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateHoldingLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMaxMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMaxNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"whiteListAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"whiteListMultipleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600f600055610309600e5566b1a2bc2ec50000600f55600f6010553480156200002c57600080fd5b5060405162003dcb38038062003dcb8339810160408190526200004f91620004a7565b604080518082018252600b81526a4e6f6e6b6920536869626160a81b60208083019182528351808501909452600a8452694e4f4e4b49534849424160b01b908401528151919291620000a491600191620003e4565b508051620000ba906002906020840190620003e4565b505050620000d7620000d16200013460201b60201c565b62000138565b600b805460ff60a01b19169055620000ef836200018a565b601180546001600160a01b038085166001600160a01b03199283161790925560148054928416929091169190911790556200012b600162000211565b505050620005fd565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b546001600160a01b0316331480620001b75750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b620001f85760405162461bcd60e51b8152602060048201819052602482015260008051602062003dab83398151915260448201526064015b60405180910390fd5b80516200020d906012906020840190620003e4565b5050565b600b546001600160a01b03163314806200023e5750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b6200027b5760405162461bcd60e51b8152602060048201819052602482015260008051602062003dab8339815191526044820152606401620001ef565b600181151514156200029457620002916200029e565b50565b620002916200034d565b620002b2600b54600160a01b900460ff1690565b15620002f45760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401620001ef565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620003303390565b6040516001600160a01b03909116815260200160405180910390a1565b62000361600b54600160a01b900460ff1690565b620003af5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401620001ef565b600b805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa3362000330565b828054620003f290620005aa565b90600052602060002090601f01602090048101928262000416576000855562000461565b82601f106200043157805160ff191683800117855562000461565b8280016001018555821562000461579182015b828111156200046157825182559160200191906001019062000444565b506200046f92915062000473565b5090565b5b808211156200046f576000815560010162000474565b80516001600160a01b0381168114620004a257600080fd5b919050565b600080600060608486031215620004bd57600080fd5b83516001600160401b0380821115620004d557600080fd5b818601915086601f830112620004ea57600080fd5b815181811115620004ff57620004ff620005e7565b604051601f8201601f19908116603f011681019083821181831017156200052a576200052a620005e7565b816040528281526020935089848487010111156200054757600080fd5b600091505b828210156200056b57848201840151818301850152908301906200054c565b828211156200057d5760008484830101525b96506200058f9150508682016200048a565b93505050620005a1604085016200048a565b90509250925092565b600181811c90821680620005bf57607f821691505b60208210811415620005e157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61379e806200060d6000396000f3fe6080604052600436106103085760003560e01c8063669b8f201161019a57806395d89b41116100e1578063cf52a7b21161008a578063e927fc5c11610064578063e927fc5c146108ad578063e985e9c5146108cd578063f2fde38b1461091657600080fd5b8063cf52a7b214610862578063d547cfb714610882578063d75b757a1461089757600080fd5b8063c433793d116100bb578063c433793d14610802578063c87b56dd14610822578063caceb61b1461084257600080fd5b806395d89b41146107ad578063a22cb465146107c2578063b88d4fde146107e257600080fd5b8063870087e1116101435780638d859f3e1161011d5780638d859f3e146107595780638da5cb5b1461076f5780639127cc691461078d57600080fd5b8063870087e1146107035780638ad5de28146107235780638d6cc56d1461073957600080fd5b806370a082311161017457806370a08231146106b9578063715018a6146106d9578063853828b6146106ee57600080fd5b8063669b8f201461063a5780636f9170f6146106735780636fdaddf1146106a357600080fd5b80633cde0c0f1161025e57806355f804b3116102075780635c975abb116101e15780635c975abb146105db5780636352211e146105fa578063642c05b51461061a57600080fd5b806355f804b31461058657806359a7715a146105a65780635c8a6618146105bb57600080fd5b806342966c681161023857806342966c6814610519578063438b6300146105395780634f6ccce71461056657600080fd5b80633cde0c0f146104c657806340c10f19146104e657806342842e0e146104f957600080fd5b8063095ea7b3116102c057806318a5bbdc1161029a57806318a5bbdc1461043d57806323b872dd146104865780632f745c59146104a657600080fd5b8063095ea7b3146103de5780630e5c011e146103fe57806318160ddd1461041e57600080fd5b8063059de0fc116102f1578063059de0fc1461036457806306fdde0314610384578063081812fc146103a657600080fd5b806301ffc9a71461030d57806302329a2914610342575b600080fd5b34801561031957600080fd5b5061032d6103283660046133df565b610936565b60405190151581526020015b60405180910390f35b34801561034e57600080fd5b5061036261035d3660046133c4565b610947565b005b34801561037057600080fd5b5061036261037f36600461334f565b6109d0565b34801561039057600080fd5b50610399610ae6565b60405161033991906135a4565b3480156103b257600080fd5b506103c66103c1366004613462565b610b78565b6040516001600160a01b039091168152602001610339565b3480156103ea57600080fd5b506103626103f9366004613323565b610c0d565b34801561040a57600080fd5b506103626104193660046131d7565b610d3f565b34801561042a57600080fd5b506009545b604051908152602001610339565b34801561044957600080fd5b506104716104583660046131d7565b6013602052600090815260409020805460019091015482565b60408051928352602083019190915201610339565b34801561049257600080fd5b506103626104a136600461322d565b610ef0565b3480156104b257600080fd5b5061042f6104c1366004613323565b610f78565b3480156104d257600080fd5b506103626104e1366004613462565b611020565b6103626104f4366004613323565b61108b565b34801561050557600080fd5b5061036261051436600461322d565b611432565b34801561052557600080fd5b50610362610534366004613462565b61144d565b34801561054557600080fd5b506105596105543660046131d7565b6114d1565b6040516103399190613560565b34801561057257600080fd5b5061042f610581366004613462565b611573565b34801561059257600080fd5b506103626105a1366004613419565b611617565b3480156105b257600080fd5b5061042f611694565b3480156105c757600080fd5b506103626105d6366004613462565b6116a3565b3480156105e757600080fd5b50600b54600160a01b900460ff1661032d565b34801561060657600080fd5b506103c6610615366004613462565b61170e565b34801561062657600080fd5b50610362610635366004613462565b611799565b34801561064657600080fd5b5061032d6106553660046131d7565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561067f57600080fd5b5061032d61068e3660046131d7565b600c6020526000908152604090205460ff1681565b3480156106af57600080fd5b5061042f600e5481565b3480156106c557600080fd5b5061042f6106d43660046131d7565b611804565b3480156106e557600080fd5b5061036261189e565b3480156106fa57600080fd5b50610362611910565b34801561070f57600080fd5b506014546103c6906001600160a01b031681565b34801561072f57600080fd5b5061042f60105481565b34801561074557600080fd5b50610362610754366004613462565b611997565b34801561076557600080fd5b5061042f600f5481565b34801561077b57600080fd5b50600b546001600160a01b03166103c6565b34801561079957600080fd5b506103626107a83660046131d7565b611a02565b3480156107b957600080fd5b50610399611a8a565b3480156107ce57600080fd5b506103626107dd3660046132ee565b611a99565b3480156107ee57600080fd5b506103626107fd36600461326e565b611b5e565b34801561080e57600080fd5b5061036261081d3660046131d7565b611bec565b34801561082e57600080fd5b5061039961083d366004613462565b611caa565b34801561084e57600080fd5b5061036261085d36600461334f565b611d93565b34801561086e57600080fd5b5061036261087d3660046131d7565b611e9d565b34801561088e57600080fd5b50610399611f57565b3480156108a357600080fd5b5061042f60005481565b3480156108b957600080fd5b506011546103c6906001600160a01b031681565b3480156108d957600080fd5b5061032d6108e83660046131f4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561092257600080fd5b506103626109313660046131d7565b611fe5565b6000610941826120d0565b92915050565b600b546001600160a01b03163314806109735750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b6109b25760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064015b60405180910390fd5b600181151514156109c8576109c561210e565b50565b6109c56121c0565b600b546001600160a01b03163314806109fc5750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b610a365760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b60005b81811015610aa8576000600c6000858585818110610a5957610a596136f1565b9050602002016020810190610a6e91906131d7565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610aa081613680565b915050610a39565b507f28351383e4c13138d98d7ce6bf61f173832a8d8c4dd2a8cd290774a865ffbe328282604051610ada929190613512565b60405180910390a15050565b606060018054610af590613645565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2190613645565b8015610b6e5780601f10610b4357610100808354040283529160200191610b6e565b820191906000526020600020905b815481529060010190602001808311610b5157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610bf15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109a9565b506000908152600560205260409020546001600160a01b031690565b6000610c188261170e565b9050806001600160a01b0316836001600160a01b03161415610ca25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016109a9565b336001600160a01b0382161480610cbe5750610cbe81336108e8565b610d305760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109a9565b610d3a838361224d565b505050565b6001600160a01b03811660009081526013602052604090206001015415801590610d8357506001600160a01b03811660009081526013602052604090206001015442115b15610ed0576001600160a01b038116600090815260136020526040812060010154610dbe906201518090610db89042906122bb565b906122c7565b6014549091506001600160a01b03166340c10f198383610ddd82611804565b610de890600a6135e3565b610df291906135e3565b610e0490670de0b6b3a76400006135e3565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015610e4a57600080fd5b505af1158015610e5e573d6000803e3d6000fd5b50505050610eb581610e6f84611804565b610e7a90600a6135e3565b610e8491906135e3565b610e9690670de0b6b3a76400006135e3565b6001600160a01b038416600090815260136020526040902054906122d3565b6001600160a01b038316600090815260136020526040902055505b6001600160a01b0316600090815260136020526040902042600190910155565b610efb335b826122df565b610f6d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109a9565b610d3a8383836123d6565b6000610f8383611804565b8210610ff75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016109a9565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b031633148061104c5750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b6110865760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b600055565b600e54611096612607565b11156110cf5760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b60448201526064016109a9565b600b546001600160a01b031633148015906110fa5750336000908152600c602052604090205460ff16155b1561115957600b54600160a01b900460ff16156111595760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016109a9565b6000611163612607565b9050600061117084611804565b600e5490915061118084846135b7565b11156111ce5760405162461bcd60e51b815260206004820152600960248201527f4d6178206c696d6974000000000000000000000000000000000000000000000060448201526064016109a9565b600e5482111561120b5760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b60448201526064016109a9565b60105483111561125d5760405162461bcd60e51b815260206004820152600e60248201527f45786365656473206e756d62657200000000000000000000000000000000000060448201526064016109a9565b60005461126a84836135b7565b11156112b85760405162461bcd60e51b815260206004820152601560248201527f4d6178206c696d6974207065722061646472657373000000000000000000000060448201526064016109a9565b600f546112c59084612612565b3410156113145760405162461bcd60e51b815260206004820152601160248201527f56616c75652062656c6f7720707269636500000000000000000000000000000060448201526064016109a9565b61131d84610d3f565b6014546001600160a01b03166340c10f198561133a8660646135e3565b61134c90670de0b6b3a76400006135e3565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561139257600080fd5b505af11580156113a6573d6000803e3d6000fd5b505050506113eb8360646113ba91906135e3565b6113cc90670de0b6b3a76400006135e3565b6001600160a01b038616600090815260136020526040902054906122d3565b6001600160a01b0385166000908152601360205260408120919091555b8381101561142b576114198561261e565b8061142381613680565b915050611408565b5050505050565b610d3a83838360405180602001604052806000815250611b5e565b61145633610ef5565b6114c85760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f7665640000000000000000000000000000000060648201526084016109a9565b6109c581612671565b606060006114de83611804565b905060008167ffffffffffffffff8111156114fb576114fb613707565b604051908082528060200260200182016040528015611524578160200160208202803683370190505b50905060005b8281101561156b5761153c8582610f78565b82828151811061154e5761154e6136f1565b60209081029190910101528061156381613680565b91505061152a565b509392505050565b600061157e60095490565b82106115f25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016109a9565b60098281548110611605576116056136f1565b90600052602060002001549050919050565b600b546001600160a01b03163314806116435750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b61167d5760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b80516116909060129060208401906130b3565b5050565b600061169e612607565b905090565b600b546001600160a01b03163314806116cf5750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b6117095760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b600e55565b6000818152600360205260408120546001600160a01b0316806109415760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016109a9565b600b546001600160a01b03163314806117c55750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b6117ff5760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b601055565b60006001600160a01b0382166118825760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016109a9565b506001600160a01b031660009081526004602052604090205490565b600b546001600160a01b03163314806118ca5750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b6119045760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b61190e6000612718565b565b600b546001600160a01b031633148061193c5750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b6119765760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b478061198157600080fd5b6011546109c5906001600160a01b03164761276a565b600b546001600160a01b03163314806119c35750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b6119fd5760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b600f55565b600b546001600160a01b0316331480611a2e5750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b611a685760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b606060028054610af590613645565b6001600160a01b038216331415611af25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109a9565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611b6833836122df565b611bda5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109a9565b611be68484848461280d565b50505050565b600b546001600160a01b0316331480611c185750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b611c525760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b6001600160a01b0381166000818152600c6020908152604091829020805460ff1916905590519182527f9354cd337eebad48c93d70f7321b188732c3061fa5c48fe32b8e6f9480c52fcc91015b60405180910390a150565b6000818152600360205260409020546060906001600160a01b0316611d375760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016109a9565b6000611d4161288b565b90506000815111611d615760405180602001604052806000815250611d8c565b80611d6b8461289a565b604051602001611d7c9291906134a7565b6040516020818303038152906040525b9392505050565b600b546001600160a01b0316331480611dbf5750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b611df95760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b60005b81811015611e6b576001600c6000858585818110611e1c57611e1c6136f1565b9050602002016020810190611e3191906131d7565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611e6381613680565b915050611dfc565b507ffc031e12a6809f53d08acff9a98051c4774f44ea3885aadcb4be62ecd3544dff8282604051610ada929190613512565b600b546001600160a01b0316331480611ec95750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b611f035760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b6001600160a01b0381166000818152600c6020908152604091829020805460ff1916600117905590519182527f16220188fd357ae3d9cf432f984d1ea5c73787b829a3e72a4b807e8c0ebf5b0c9101611c9f565b60128054611f6490613645565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9090613645565b8015611fdd5780601f10611fb257610100808354040283529160200191611fdd565b820191906000526020600020905b815481529060010190602001808311611fc057829003601f168201915b505050505081565b600b546001600160a01b03163314806120115750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b61204b5760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b6001600160a01b0381166120c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109a9565b6109c581612718565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109415750610941826129cc565b600b54600160a01b900460ff16156121685760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016109a9565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121a33390565b6040516001600160a01b03909116815260200160405180910390a1565b600b54600160a01b900460ff166122195760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016109a9565b600b805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336121a3565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122828261170e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d8c8284613602565b6000611d8c82846135cf565b6000611d8c82846135b7565b6000818152600360205260408120546001600160a01b03166123585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109a9565b60006123638361170e565b9050806001600160a01b0316846001600160a01b0316148061239e5750836001600160a01b031661239384610b78565b6001600160a01b0316145b806123ce57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166123e98261170e565b6001600160a01b0316146124655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016109a9565b6001600160a01b0382166124e05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109a9565b6000546124ec83611804565b106125395760405162461bcd60e51b815260206004820152601660248201527f4552433732313a204c696d69742065786365656465640000000000000000000060448201526064016109a9565b612544838383612a67565b61254f60008261224d565b6001600160a01b0383166000908152600460205260408120805460019290612578908490613602565b90915550506001600160a01b03821660009081526004602052604081208054600192906125a69084906135b7565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061169e600d5490565b6000611d8c82846135e3565b6000612628612607565b9050612638600d80546001019055565b6126428282612a72565b60405181907fa6504e2699e5036a7db2014ffee9ca078d30f95f4594371cd9089d482dc6f61f90600090a25050565b600061267c8261170e565b905061268a81600084612a67565b61269560008361224d565b6001600160a01b03811660009081526004602052604081208054600192906126be908490613602565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146127b7576040519150601f19603f3d011682016040523d82523d6000602084013e6127bc565b606091505b5050905080610d3a5760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016109a9565b6128188484846123d6565b61282484848484612a8c565b611be65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016109a9565b606060128054610af590613645565b6060816128da57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561290457806128ee81613680565b91506128fd9050600a836135cf565b91506128de565b60008167ffffffffffffffff81111561291f5761291f613707565b6040519080825280601f01601f191660200182016040528015612949576020820181803683370190505b5090505b84156123ce5761295e600183613602565b915061296b600a8661369b565b6129769060306135b7565b60f81b81838151811061298b5761298b6136f1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506129c5600a866135cf565b945061294d565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480612a2f57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061094157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610941565b610d3a838383612be4565b611690828260405180602001604052806000815250612c9f565b60006001600160a01b0384163b15612bd957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ad09033908990889088906004016134d6565b602060405180830381600087803b158015612aea57600080fd5b505af1925050508015612b1a575060408051601f3d908101601f19168201909252612b17918101906133fc565b60015b612bbf573d808015612b48576040519150601f19603f3d011682016040523d82523d6000602084013e612b4d565b606091505b508051612bb75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016109a9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506123ce565b506001949350505050565b612bef838383612d1d565b600b546001600160a01b03163314801590612c1a5750336000908152600c602052604090205460ff16155b15610d3a57600b54600160a01b900460ff1615610d3a5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201527f68696c652070617573656400000000000000000000000000000000000000000060648201526084016109a9565b612ca98383612dd5565b612cb66000848484612a8c565b610d3a5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016109a9565b6001600160a01b038316612d7857612d7381600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612d9b565b816001600160a01b0316836001600160a01b031614612d9b57612d9b8382612f23565b6001600160a01b038216612db257610d3a81612fc0565b826001600160a01b0316826001600160a01b031614610d3a57610d3a828261306f565b6001600160a01b038216612e2b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109a9565b6000818152600360205260409020546001600160a01b031615612e905760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109a9565b612e9c60008383612a67565b6001600160a01b0382166000908152600460205260408120805460019290612ec59084906135b7565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612f3084611804565b612f3a9190613602565b600083815260086020526040902054909150808214612f8d576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612fd290600190613602565b6000838152600a602052604081205460098054939450909284908110612ffa57612ffa6136f1565b90600052602060002001549050806009838154811061301b5761301b6136f1565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480613053576130536136db565b6001900381819060005260206000200160009055905550505050565b600061307a83611804565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546130bf90613645565b90600052602060002090601f0160209004810192826130e15760008555613127565b82601f106130fa57805160ff1916838001178555613127565b82800160010185558215613127579182015b8281111561312757825182559160200191906001019061310c565b50613133929150613137565b5090565b5b808211156131335760008155600101613138565b600067ffffffffffffffff8084111561316757613167613707565b604051601f8501601f19908116603f0116810190828211818310171561318f5761318f613707565b816040528093508581528686860111156131a857600080fd5b858560208301376000602087830101525050509392505050565b803580151581146131d257600080fd5b919050565b6000602082840312156131e957600080fd5b8135611d8c8161371d565b6000806040838503121561320757600080fd5b82356132128161371d565b915060208301356132228161371d565b809150509250929050565b60008060006060848603121561324257600080fd5b833561324d8161371d565b9250602084013561325d8161371d565b929592945050506040919091013590565b6000806000806080858703121561328457600080fd5b843561328f8161371d565b9350602085013561329f8161371d565b925060408501359150606085013567ffffffffffffffff8111156132c257600080fd5b8501601f810187136132d357600080fd5b6132e28782356020840161314c565b91505092959194509250565b6000806040838503121561330157600080fd5b823561330c8161371d565b915061331a602084016131c2565b90509250929050565b6000806040838503121561333657600080fd5b82356133418161371d565b946020939093013593505050565b6000806020838503121561336257600080fd5b823567ffffffffffffffff8082111561337a57600080fd5b818501915085601f83011261338e57600080fd5b81358181111561339d57600080fd5b8660208260051b85010111156133b257600080fd5b60209290920196919550909350505050565b6000602082840312156133d657600080fd5b611d8c826131c2565b6000602082840312156133f157600080fd5b8135611d8c81613732565b60006020828403121561340e57600080fd5b8151611d8c81613732565b60006020828403121561342b57600080fd5b813567ffffffffffffffff81111561344257600080fd5b8201601f8101841361345357600080fd5b6123ce8482356020840161314c565b60006020828403121561347457600080fd5b5035919050565b60008151808452613493816020860160208601613619565b601f01601f19169290920160200192915050565b600083516134b9818460208801613619565b8351908301906134cd818360208801613619565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613508608083018461347b565b9695505050505050565b60208082528181018390526000908460408401835b8681101561355557823561353a8161371d565b6001600160a01b031682529183019190830190600101613527565b509695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156135985783518352928401929184019160010161357c565b50909695505050505050565b602081526000611d8c602083018461347b565b600082198211156135ca576135ca6136af565b500190565b6000826135de576135de6136c5565b500490565b60008160001904831182151516156135fd576135fd6136af565b500290565b600082821015613614576136146136af565b500390565b60005b8381101561363457818101518382015260200161361c565b83811115611be65750506000910152565b600181811c9082168061365957607f821691505b6020821081141561367a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613694576136946136af565b5060010190565b6000826136aa576136aa6136c5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146109c557600080fd5b6001600160e01b0319811681146109c557600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220e04188b20b643594d969b227603fecf6f880cdcb15a30d1fbcac24b789bd81a564736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000600000000000000000000000007bc02095e720ac4ab9313253932652b34d8924c9000000000000000000000000d4ea084340fae5c660b7f3126153e88aba70baea000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6443456f4b3943696f6b514838465869444e504136355036356d66624c47763575324d706d315767516a62522f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103085760003560e01c8063669b8f201161019a57806395d89b41116100e1578063cf52a7b21161008a578063e927fc5c11610064578063e927fc5c146108ad578063e985e9c5146108cd578063f2fde38b1461091657600080fd5b8063cf52a7b214610862578063d547cfb714610882578063d75b757a1461089757600080fd5b8063c433793d116100bb578063c433793d14610802578063c87b56dd14610822578063caceb61b1461084257600080fd5b806395d89b41146107ad578063a22cb465146107c2578063b88d4fde146107e257600080fd5b8063870087e1116101435780638d859f3e1161011d5780638d859f3e146107595780638da5cb5b1461076f5780639127cc691461078d57600080fd5b8063870087e1146107035780638ad5de28146107235780638d6cc56d1461073957600080fd5b806370a082311161017457806370a08231146106b9578063715018a6146106d9578063853828b6146106ee57600080fd5b8063669b8f201461063a5780636f9170f6146106735780636fdaddf1146106a357600080fd5b80633cde0c0f1161025e57806355f804b3116102075780635c975abb116101e15780635c975abb146105db5780636352211e146105fa578063642c05b51461061a57600080fd5b806355f804b31461058657806359a7715a146105a65780635c8a6618146105bb57600080fd5b806342966c681161023857806342966c6814610519578063438b6300146105395780634f6ccce71461056657600080fd5b80633cde0c0f146104c657806340c10f19146104e657806342842e0e146104f957600080fd5b8063095ea7b3116102c057806318a5bbdc1161029a57806318a5bbdc1461043d57806323b872dd146104865780632f745c59146104a657600080fd5b8063095ea7b3146103de5780630e5c011e146103fe57806318160ddd1461041e57600080fd5b8063059de0fc116102f1578063059de0fc1461036457806306fdde0314610384578063081812fc146103a657600080fd5b806301ffc9a71461030d57806302329a2914610342575b600080fd5b34801561031957600080fd5b5061032d6103283660046133df565b610936565b60405190151581526020015b60405180910390f35b34801561034e57600080fd5b5061036261035d3660046133c4565b610947565b005b34801561037057600080fd5b5061036261037f36600461334f565b6109d0565b34801561039057600080fd5b50610399610ae6565b60405161033991906135a4565b3480156103b257600080fd5b506103c66103c1366004613462565b610b78565b6040516001600160a01b039091168152602001610339565b3480156103ea57600080fd5b506103626103f9366004613323565b610c0d565b34801561040a57600080fd5b506103626104193660046131d7565b610d3f565b34801561042a57600080fd5b506009545b604051908152602001610339565b34801561044957600080fd5b506104716104583660046131d7565b6013602052600090815260409020805460019091015482565b60408051928352602083019190915201610339565b34801561049257600080fd5b506103626104a136600461322d565b610ef0565b3480156104b257600080fd5b5061042f6104c1366004613323565b610f78565b3480156104d257600080fd5b506103626104e1366004613462565b611020565b6103626104f4366004613323565b61108b565b34801561050557600080fd5b5061036261051436600461322d565b611432565b34801561052557600080fd5b50610362610534366004613462565b61144d565b34801561054557600080fd5b506105596105543660046131d7565b6114d1565b6040516103399190613560565b34801561057257600080fd5b5061042f610581366004613462565b611573565b34801561059257600080fd5b506103626105a1366004613419565b611617565b3480156105b257600080fd5b5061042f611694565b3480156105c757600080fd5b506103626105d6366004613462565b6116a3565b3480156105e757600080fd5b50600b54600160a01b900460ff1661032d565b34801561060657600080fd5b506103c6610615366004613462565b61170e565b34801561062657600080fd5b50610362610635366004613462565b611799565b34801561064657600080fd5b5061032d6106553660046131d7565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561067f57600080fd5b5061032d61068e3660046131d7565b600c6020526000908152604090205460ff1681565b3480156106af57600080fd5b5061042f600e5481565b3480156106c557600080fd5b5061042f6106d43660046131d7565b611804565b3480156106e557600080fd5b5061036261189e565b3480156106fa57600080fd5b50610362611910565b34801561070f57600080fd5b506014546103c6906001600160a01b031681565b34801561072f57600080fd5b5061042f60105481565b34801561074557600080fd5b50610362610754366004613462565b611997565b34801561076557600080fd5b5061042f600f5481565b34801561077b57600080fd5b50600b546001600160a01b03166103c6565b34801561079957600080fd5b506103626107a83660046131d7565b611a02565b3480156107b957600080fd5b50610399611a8a565b3480156107ce57600080fd5b506103626107dd3660046132ee565b611a99565b3480156107ee57600080fd5b506103626107fd36600461326e565b611b5e565b34801561080e57600080fd5b5061036261081d3660046131d7565b611bec565b34801561082e57600080fd5b5061039961083d366004613462565b611caa565b34801561084e57600080fd5b5061036261085d36600461334f565b611d93565b34801561086e57600080fd5b5061036261087d3660046131d7565b611e9d565b34801561088e57600080fd5b50610399611f57565b3480156108a357600080fd5b5061042f60005481565b3480156108b957600080fd5b506011546103c6906001600160a01b031681565b3480156108d957600080fd5b5061032d6108e83660046131f4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561092257600080fd5b506103626109313660046131d7565b611fe5565b6000610941826120d0565b92915050565b600b546001600160a01b03163314806109735750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b6109b25760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064015b60405180910390fd5b600181151514156109c8576109c561210e565b50565b6109c56121c0565b600b546001600160a01b03163314806109fc5750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b610a365760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b60005b81811015610aa8576000600c6000858585818110610a5957610a596136f1565b9050602002016020810190610a6e91906131d7565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610aa081613680565b915050610a39565b507f28351383e4c13138d98d7ce6bf61f173832a8d8c4dd2a8cd290774a865ffbe328282604051610ada929190613512565b60405180910390a15050565b606060018054610af590613645565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2190613645565b8015610b6e5780601f10610b4357610100808354040283529160200191610b6e565b820191906000526020600020905b815481529060010190602001808311610b5157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610bf15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109a9565b506000908152600560205260409020546001600160a01b031690565b6000610c188261170e565b9050806001600160a01b0316836001600160a01b03161415610ca25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016109a9565b336001600160a01b0382161480610cbe5750610cbe81336108e8565b610d305760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109a9565b610d3a838361224d565b505050565b6001600160a01b03811660009081526013602052604090206001015415801590610d8357506001600160a01b03811660009081526013602052604090206001015442115b15610ed0576001600160a01b038116600090815260136020526040812060010154610dbe906201518090610db89042906122bb565b906122c7565b6014549091506001600160a01b03166340c10f198383610ddd82611804565b610de890600a6135e3565b610df291906135e3565b610e0490670de0b6b3a76400006135e3565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015610e4a57600080fd5b505af1158015610e5e573d6000803e3d6000fd5b50505050610eb581610e6f84611804565b610e7a90600a6135e3565b610e8491906135e3565b610e9690670de0b6b3a76400006135e3565b6001600160a01b038416600090815260136020526040902054906122d3565b6001600160a01b038316600090815260136020526040902055505b6001600160a01b0316600090815260136020526040902042600190910155565b610efb335b826122df565b610f6d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109a9565b610d3a8383836123d6565b6000610f8383611804565b8210610ff75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016109a9565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b031633148061104c5750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b6110865760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b600055565b600e54611096612607565b11156110cf5760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b60448201526064016109a9565b600b546001600160a01b031633148015906110fa5750336000908152600c602052604090205460ff16155b1561115957600b54600160a01b900460ff16156111595760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016109a9565b6000611163612607565b9050600061117084611804565b600e5490915061118084846135b7565b11156111ce5760405162461bcd60e51b815260206004820152600960248201527f4d6178206c696d6974000000000000000000000000000000000000000000000060448201526064016109a9565b600e5482111561120b5760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b60448201526064016109a9565b60105483111561125d5760405162461bcd60e51b815260206004820152600e60248201527f45786365656473206e756d62657200000000000000000000000000000000000060448201526064016109a9565b60005461126a84836135b7565b11156112b85760405162461bcd60e51b815260206004820152601560248201527f4d6178206c696d6974207065722061646472657373000000000000000000000060448201526064016109a9565b600f546112c59084612612565b3410156113145760405162461bcd60e51b815260206004820152601160248201527f56616c75652062656c6f7720707269636500000000000000000000000000000060448201526064016109a9565b61131d84610d3f565b6014546001600160a01b03166340c10f198561133a8660646135e3565b61134c90670de0b6b3a76400006135e3565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561139257600080fd5b505af11580156113a6573d6000803e3d6000fd5b505050506113eb8360646113ba91906135e3565b6113cc90670de0b6b3a76400006135e3565b6001600160a01b038616600090815260136020526040902054906122d3565b6001600160a01b0385166000908152601360205260408120919091555b8381101561142b576114198561261e565b8061142381613680565b915050611408565b5050505050565b610d3a83838360405180602001604052806000815250611b5e565b61145633610ef5565b6114c85760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f7665640000000000000000000000000000000060648201526084016109a9565b6109c581612671565b606060006114de83611804565b905060008167ffffffffffffffff8111156114fb576114fb613707565b604051908082528060200260200182016040528015611524578160200160208202803683370190505b50905060005b8281101561156b5761153c8582610f78565b82828151811061154e5761154e6136f1565b60209081029190910101528061156381613680565b91505061152a565b509392505050565b600061157e60095490565b82106115f25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016109a9565b60098281548110611605576116056136f1565b90600052602060002001549050919050565b600b546001600160a01b03163314806116435750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b61167d5760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b80516116909060129060208401906130b3565b5050565b600061169e612607565b905090565b600b546001600160a01b03163314806116cf5750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b6117095760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b600e55565b6000818152600360205260408120546001600160a01b0316806109415760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016109a9565b600b546001600160a01b03163314806117c55750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b6117ff5760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b601055565b60006001600160a01b0382166118825760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016109a9565b506001600160a01b031660009081526004602052604090205490565b600b546001600160a01b03163314806118ca5750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b6119045760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b61190e6000612718565b565b600b546001600160a01b031633148061193c5750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b6119765760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b478061198157600080fd5b6011546109c5906001600160a01b03164761276a565b600b546001600160a01b03163314806119c35750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b6119fd5760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b600f55565b600b546001600160a01b0316331480611a2e5750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b611a685760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b606060028054610af590613645565b6001600160a01b038216331415611af25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109a9565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611b6833836122df565b611bda5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109a9565b611be68484848461280d565b50505050565b600b546001600160a01b0316331480611c185750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b611c525760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b6001600160a01b0381166000818152600c6020908152604091829020805460ff1916905590519182527f9354cd337eebad48c93d70f7321b188732c3061fa5c48fe32b8e6f9480c52fcc91015b60405180910390a150565b6000818152600360205260409020546060906001600160a01b0316611d375760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016109a9565b6000611d4161288b565b90506000815111611d615760405180602001604052806000815250611d8c565b80611d6b8461289a565b604051602001611d7c9291906134a7565b6040516020818303038152906040525b9392505050565b600b546001600160a01b0316331480611dbf5750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b611df95760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b60005b81811015611e6b576001600c6000858585818110611e1c57611e1c6136f1565b9050602002016020810190611e3191906131d7565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611e6381613680565b915050611dfc565b507ffc031e12a6809f53d08acff9a98051c4774f44ea3885aadcb4be62ecd3544dff8282604051610ada929190613512565b600b546001600160a01b0316331480611ec95750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b611f035760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b6001600160a01b0381166000818152600c6020908152604091829020805460ff1916600117905590519182527f16220188fd357ae3d9cf432f984d1ea5c73787b829a3e72a4b807e8c0ebf5b0c9101611c9f565b60128054611f6490613645565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9090613645565b8015611fdd5780601f10611fb257610100808354040283529160200191611fdd565b820191906000526020600020905b815481529060010190602001808311611fc057829003601f168201915b505050505081565b600b546001600160a01b03163314806120115750738fce3b2b7b052c5858db41e5606c2f2c2a08c47833145b61204b5760405162461bcd60e51b8152602060048201819052602482015260008051602061374983398151915260448201526064016109a9565b6001600160a01b0381166120c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109a9565b6109c581612718565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109415750610941826129cc565b600b54600160a01b900460ff16156121685760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016109a9565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121a33390565b6040516001600160a01b03909116815260200160405180910390a1565b600b54600160a01b900460ff166122195760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016109a9565b600b805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336121a3565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122828261170e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d8c8284613602565b6000611d8c82846135cf565b6000611d8c82846135b7565b6000818152600360205260408120546001600160a01b03166123585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109a9565b60006123638361170e565b9050806001600160a01b0316846001600160a01b0316148061239e5750836001600160a01b031661239384610b78565b6001600160a01b0316145b806123ce57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166123e98261170e565b6001600160a01b0316146124655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016109a9565b6001600160a01b0382166124e05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109a9565b6000546124ec83611804565b106125395760405162461bcd60e51b815260206004820152601660248201527f4552433732313a204c696d69742065786365656465640000000000000000000060448201526064016109a9565b612544838383612a67565b61254f60008261224d565b6001600160a01b0383166000908152600460205260408120805460019290612578908490613602565b90915550506001600160a01b03821660009081526004602052604081208054600192906125a69084906135b7565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061169e600d5490565b6000611d8c82846135e3565b6000612628612607565b9050612638600d80546001019055565b6126428282612a72565b60405181907fa6504e2699e5036a7db2014ffee9ca078d30f95f4594371cd9089d482dc6f61f90600090a25050565b600061267c8261170e565b905061268a81600084612a67565b61269560008361224d565b6001600160a01b03811660009081526004602052604081208054600192906126be908490613602565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146127b7576040519150601f19603f3d011682016040523d82523d6000602084013e6127bc565b606091505b5050905080610d3a5760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016109a9565b6128188484846123d6565b61282484848484612a8c565b611be65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016109a9565b606060128054610af590613645565b6060816128da57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561290457806128ee81613680565b91506128fd9050600a836135cf565b91506128de565b60008167ffffffffffffffff81111561291f5761291f613707565b6040519080825280601f01601f191660200182016040528015612949576020820181803683370190505b5090505b84156123ce5761295e600183613602565b915061296b600a8661369b565b6129769060306135b7565b60f81b81838151811061298b5761298b6136f1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506129c5600a866135cf565b945061294d565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480612a2f57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061094157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610941565b610d3a838383612be4565b611690828260405180602001604052806000815250612c9f565b60006001600160a01b0384163b15612bd957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ad09033908990889088906004016134d6565b602060405180830381600087803b158015612aea57600080fd5b505af1925050508015612b1a575060408051601f3d908101601f19168201909252612b17918101906133fc565b60015b612bbf573d808015612b48576040519150601f19603f3d011682016040523d82523d6000602084013e612b4d565b606091505b508051612bb75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016109a9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506123ce565b506001949350505050565b612bef838383612d1d565b600b546001600160a01b03163314801590612c1a5750336000908152600c602052604090205460ff16155b15610d3a57600b54600160a01b900460ff1615610d3a5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201527f68696c652070617573656400000000000000000000000000000000000000000060648201526084016109a9565b612ca98383612dd5565b612cb66000848484612a8c565b610d3a5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016109a9565b6001600160a01b038316612d7857612d7381600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612d9b565b816001600160a01b0316836001600160a01b031614612d9b57612d9b8382612f23565b6001600160a01b038216612db257610d3a81612fc0565b826001600160a01b0316826001600160a01b031614610d3a57610d3a828261306f565b6001600160a01b038216612e2b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109a9565b6000818152600360205260409020546001600160a01b031615612e905760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109a9565b612e9c60008383612a67565b6001600160a01b0382166000908152600460205260408120805460019290612ec59084906135b7565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612f3084611804565b612f3a9190613602565b600083815260086020526040902054909150808214612f8d576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612fd290600190613602565b6000838152600a602052604081205460098054939450909284908110612ffa57612ffa6136f1565b90600052602060002001549050806009838154811061301b5761301b6136f1565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480613053576130536136db565b6001900381819060005260206000200160009055905550505050565b600061307a83611804565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546130bf90613645565b90600052602060002090601f0160209004810192826130e15760008555613127565b82601f106130fa57805160ff1916838001178555613127565b82800160010185558215613127579182015b8281111561312757825182559160200191906001019061310c565b50613133929150613137565b5090565b5b808211156131335760008155600101613138565b600067ffffffffffffffff8084111561316757613167613707565b604051601f8501601f19908116603f0116810190828211818310171561318f5761318f613707565b816040528093508581528686860111156131a857600080fd5b858560208301376000602087830101525050509392505050565b803580151581146131d257600080fd5b919050565b6000602082840312156131e957600080fd5b8135611d8c8161371d565b6000806040838503121561320757600080fd5b82356132128161371d565b915060208301356132228161371d565b809150509250929050565b60008060006060848603121561324257600080fd5b833561324d8161371d565b9250602084013561325d8161371d565b929592945050506040919091013590565b6000806000806080858703121561328457600080fd5b843561328f8161371d565b9350602085013561329f8161371d565b925060408501359150606085013567ffffffffffffffff8111156132c257600080fd5b8501601f810187136132d357600080fd5b6132e28782356020840161314c565b91505092959194509250565b6000806040838503121561330157600080fd5b823561330c8161371d565b915061331a602084016131c2565b90509250929050565b6000806040838503121561333657600080fd5b82356133418161371d565b946020939093013593505050565b6000806020838503121561336257600080fd5b823567ffffffffffffffff8082111561337a57600080fd5b818501915085601f83011261338e57600080fd5b81358181111561339d57600080fd5b8660208260051b85010111156133b257600080fd5b60209290920196919550909350505050565b6000602082840312156133d657600080fd5b611d8c826131c2565b6000602082840312156133f157600080fd5b8135611d8c81613732565b60006020828403121561340e57600080fd5b8151611d8c81613732565b60006020828403121561342b57600080fd5b813567ffffffffffffffff81111561344257600080fd5b8201601f8101841361345357600080fd5b6123ce8482356020840161314c565b60006020828403121561347457600080fd5b5035919050565b60008151808452613493816020860160208601613619565b601f01601f19169290920160200192915050565b600083516134b9818460208801613619565b8351908301906134cd818360208801613619565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613508608083018461347b565b9695505050505050565b60208082528181018390526000908460408401835b8681101561355557823561353a8161371d565b6001600160a01b031682529183019190830190600101613527565b509695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156135985783518352928401929184019160010161357c565b50909695505050505050565b602081526000611d8c602083018461347b565b600082198211156135ca576135ca6136af565b500190565b6000826135de576135de6136c5565b500490565b60008160001904831182151516156135fd576135fd6136af565b500290565b600082821015613614576136146136af565b500390565b60005b8381101561363457818101518382015260200161361c565b83811115611be65750506000910152565b600181811c9082168061365957607f821691505b6020821081141561367a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613694576136946136af565b5060010190565b6000826136aa576136aa6136c5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146109c557600080fd5b6001600160e01b0319811681146109c557600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220e04188b20b643594d969b227603fecf6f880cdcb15a30d1fbcac24b789bd81a564736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000600000000000000000000000007bc02095e720ac4ab9313253932652b34d8924c9000000000000000000000000d4ea084340fae5c660b7f3126153e88aba70baea000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6443456f4b3943696f6b514838465869444e504136355036356d66624c47763575324d706d315767516a62522f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmdCEoK9CiokQH8FXiDNPA65P65mfbLGv5u2Mpm1WgQjbR/
Arg [1] : creator (address): 0x7bc02095e720ac4AB9313253932652b34D8924c9
Arg [2] : _nonkitoken (address): 0xd4Ea084340FAE5c660b7f3126153e88aBa70BAea

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000007bc02095e720ac4ab9313253932652b34d8924c9
Arg [2] : 000000000000000000000000d4ea084340fae5c660b7f3126153e88aba70baea
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [4] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [5] : 732f516d6443456f4b3943696f6b514838465869444e504136355036356d6662
Arg [6] : 4c47763575324d706d315767516a62522f000000000000000000000000000000


Deployed Bytecode Sourcemap

69792:5033:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74211:179;;;;;;;;;;-1:-1:-1;74211:179:0;;;;;:::i;:::-;;:::i;:::-;;;9100:14:1;;9093:22;9075:41;;9063:2;9048:18;74211:179:0;;;;;;;;73416:154;;;;;;;;;;-1:-1:-1;73416:154:0;;;;;:::i;:::-;;:::i;:::-;;58789:269;;;;;;;;;;-1:-1:-1;58789:269:0;;;;;:::i;:::-;;:::i;37985:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39544:219::-;;;;;;;;;;-1:-1:-1;39544:219:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6680:55:1;;;6662:74;;6650:2;6635:18;39544:219:0;6516:226:1;39067:411:0;;;;;;;;;;-1:-1:-1;39067:411:0;;;;;:::i;:::-;;:::i;71972:522::-;;;;;;;;;;-1:-1:-1;71972:522:0;;;;;:::i;:::-;;:::i;51368:113::-;;;;;;;;;;-1:-1:-1;51456:10:0;:17;51368:113;;;20885:25:1;;;20873:2;20858:18;51368:113:0;20739:177:1;70283:41:0;;;;;;;;;;-1:-1:-1;70283:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;21095:25:1;;;21151:2;21136:18;;21129:34;;;;21068:18;70283:41:0;20921:248:1;40430:339:0;;;;;;;;;;-1:-1:-1;40430:339:0;;;;;:::i;:::-;;:::i;51036:256::-;;;;;;;;;;-1:-1:-1;51036:256:0;;;;;:::i;:::-;;:::i;74617:107::-;;;;;;;;;;-1:-1:-1;74617:107:0;;;;;:::i;:::-;;:::i;71155:809::-;;;;;;:::i;:::-;;:::i;40840:185::-;;;;;;;;;;-1:-1:-1;40840:185:0;;;;;:::i;:::-;;:::i;49631:245::-;;;;;;;;;;-1:-1:-1;49631:245:0;;;;;:::i;:::-;;:::i;73059:349::-;;;;;;;;;;-1:-1:-1;73059:349:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51558:233::-;;;;;;;;;;-1:-1:-1;51558:233:0;;;;;:::i;:::-;;:::i;72950:101::-;;;;;;;;;;-1:-1:-1;72950:101:0;;;;;:::i;:::-;;:::i;71052:91::-;;;;;;;;;;;;;:::i;74402:93::-;;;;;;;;;;-1:-1:-1;74402:93:0;;;;;:::i;:::-;;:::i;15563:86::-;;;;;;;;;;-1:-1:-1;15634:7:0;;-1:-1:-1;;;15634:7:0;;;;15563:86;;37679:239;;;;;;;;;;-1:-1:-1;37679:239:0;;;;;:::i;:::-;;:::i;74503:102::-;;;;;;;;;;-1:-1:-1;74503:102:0;;;;;:::i;:::-;;:::i;58057:122::-;;;;;;;;;;-1:-1:-1;58057:122:0;;;;;:::i;:::-;-1:-1:-1;;;;;58148:23:0;58124:4;58148:23;;;:13;:23;;;;;;;;;58057:122;57626:46;;;;;;;;;;-1:-1:-1;57626:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;70004:28;;;;;;;;;;;;;;;;37409:208;;;;;;;;;;-1:-1:-1;37409:208:0;;;;;:::i;:::-;;:::i;13922:94::-;;;;;;;;;;;;;:::i;73578:189::-;;;;;;;;;;;;;:::i;70333:28::-;;;;;;;;;;-1:-1:-1;70333:28:0;;;;-1:-1:-1;;;;;70333:28:0;;;70079:31;;;;;;;;;;;;;;;;74732:90;;;;;;;;;;-1:-1:-1;74732:90:0;;;;;:::i;:::-;;:::i;70039:33::-;;;;;;;;;;;;;;;;13200:87;;;;;;;;;;-1:-1:-1;13273:6:0;;-1:-1:-1;;;;;13273:6:0;13200:87;;72705:112;;;;;;;;;;-1:-1:-1;72705:112:0;;;;;:::i;:::-;;:::i;38154:104::-;;;;;;;;;;;;;:::i;39835:293::-;;;;;;;;;;-1:-1:-1;39835:293:0;;;;;:::i;:::-;;:::i;41096:328::-;;;;;;;;;;-1:-1:-1;41096:328:0;;;;;:::i;:::-;;:::i;58350:163::-;;;;;;;;;;-1:-1:-1;58350:163:0;;;;;:::i;:::-;;:::i;38329:334::-;;;;;;;;;;-1:-1:-1;38329:334:0;;;;;:::i;:::-;;:::i;58525:252::-;;;;;;;;;;-1:-1:-1;58525:252:0;;;;;:::i;:::-;;:::i;58191:147::-;;;;;;;;;;-1:-1:-1;58191:147:0;;;;;:::i;:::-;;:::i;70159:26::-;;;;;;;;;;;;;:::i;36151:35::-;;;;;;;;;;;;;;;;70123:29;;;;;;;;;;-1:-1:-1;70123:29:0;;;;-1:-1:-1;;;;;70123:29:0;;;40199:164;;;;;;;;;;-1:-1:-1;40199:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;40320:25:0;;;40296:4;40320:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40199:164;14171:192;;;;;;;;;;-1:-1:-1;14171:192:0;;;;;:::i;:::-;;:::i;74211:179::-;74322:4;74346:36;74370:11;74346:23;:36::i;:::-;74339:43;74211:179;-1:-1:-1;;74211:179:0:o;73416:154::-;13273:6;;-1:-1:-1;;;;;13273:6:0;12127:10;13420:23;;:94;;-1:-1:-1;13455:42:0;12127:10;13447:67;13420:94;13412:139;;;;-1:-1:-1;;;13412:139:0;;16712:2:1;13412:139:0;;;16694:21:1;;;16731:18;;;16724:30;-1:-1:-1;;;;;;;;;;;16770:18:1;;;16763:62;16842:18;;13412:139:0;;;;;;;;;73480:4:::1;73473:11:::0;::::1;;;73469:73;;;73501:8;:6;:8::i;:::-;73416:154:::0;:::o;73469:73::-:1;73552:10;:8;:10::i;58789:269::-:0;13273:6;;-1:-1:-1;;;;;13273:6:0;12127:10;13420:23;;:94;;-1:-1:-1;13455:42:0;12127:10;13447:67;13420:94;13412:139;;;;-1:-1:-1;;;13412:139:0;;16712:2:1;13412:139:0;;;16694:21:1;;;16731:18;;;16724:30;-1:-1:-1;;;;;;;;;;;16770:18:1;;;16763:62;16842:18;;13412:139:0;16510:356:1;13412:139:0;58892:9:::1;58888:105;58907:19:::0;;::::1;58888:105;;;58976:5;58947:13;:26;58961:8;;58970:1;58961:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;58947:26:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;58947:26:0;:34;;-1:-1:-1;;58947:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58928:3;::::1;::::0;::::1;:::i;:::-;;;;58888:105;;;;59008:42;59041:8;;59008:42;;;;;;;:::i;:::-;;;;;;;;58789:269:::0;;:::o;37985:100::-;38039:13;38072:5;38065:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37985:100;:::o;39544:219::-;39620:7;43023:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43023:16:0;39640:73;;;;-1:-1:-1;;;39640:73:0;;16299:2:1;39640:73:0;;;16281:21:1;16338:2;16318:18;;;16311:30;16377:34;16357:18;;;16350:62;-1:-1:-1;;;16428:18:1;;;16421:42;16480:19;;39640:73:0;16097:408:1;39640:73:0;-1:-1:-1;39731:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39731:24:0;;39544:219::o;39067:411::-;39148:13;39164:23;39179:7;39164:14;:23::i;:::-;39148:39;;39212:5;-1:-1:-1;;;;;39206:11:0;:2;-1:-1:-1;;;;;39206:11:0;;;39198:57;;;;-1:-1:-1;;;39198:57:0;;18946:2:1;39198:57:0;;;18928:21:1;18985:2;18965:18;;;18958:30;19024:34;19004:18;;;18997:62;19095:3;19075:18;;;19068:31;19116:19;;39198:57:0;18744:397:1;39198:57:0;12127:10;-1:-1:-1;;;;;39290:21:0;;;;:62;;-1:-1:-1;39315:37:0;39332:5;12127:10;40199:164;:::i;39315:37::-;39268:168;;;;-1:-1:-1;;;39268:168:0;;14356:2:1;39268:168:0;;;14338:21:1;14395:2;14375:18;;;14368:30;14434:34;14414:18;;;14407:62;14505:26;14485:18;;;14478:54;14549:19;;39268:168:0;14154:420:1;39268:168:0;39449:21;39458:2;39462:7;39449:8;:21::i;:::-;39137:341;39067:411;;:::o;71972:522::-;-1:-1:-1;;;;;72023:21:0;;;;;;:7;:21;;;;;:31;;;:36;;;;:89;;-1:-1:-1;;;;;;72063:21:0;;;;;;:7;:21;;;;;:31;;;72097:15;-1:-1:-1;72023:89:0;72019:408;;;-1:-1:-1;;;;;72164:21:0;;72129:12;72164:21;;;:7;:21;;;;;:31;;;72144:63;;72201:5;;72144:52;;:15;;:19;:52::i;:::-;:56;;:63::i;:::-;72222:10;;72129:78;;-1:-1:-1;;;;;;72222:10:0;:15;72246:3;72129:78;72252:14;72246:3;72252:9;:14::i;:::-;:19;;72269:2;72252:19;:::i;:::-;:26;;;;:::i;:::-;:35;;72281:6;72252:35;:::i;:::-;72222:66;;-1:-1:-1;;;;;;72222:66:0;;;;;;;-1:-1:-1;;;;;7455:55:1;;;72222:66:0;;;7437:74:1;7527:18;;;7520:34;7410:18;;72222:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72340:75;72401:4;72379:14;72389:3;72379:9;:14::i;:::-;:19;;72396:2;72379:19;:::i;:::-;:26;;;;:::i;:::-;:35;;72408:6;72379:35;:::i;:::-;-1:-1:-1;;;;;72340:21:0;;;;;;:7;:21;;;;;:34;;:38;:75::i;:::-;-1:-1:-1;;;;;72303:21:0;;;;;;:7;:21;;;;;:112;-1:-1:-1;72019:408:0;-1:-1:-1;;;;;72437:21:0;;;;;:7;:21;;;;;72471:15;72437:31;;;;:49;71972:522::o;40430:339::-;40625:41;12127:10;40644:12;40658:7;40625:18;:41::i;:::-;40617:103;;;;-1:-1:-1;;;40617:103:0;;19693:2:1;40617:103:0;;;19675:21:1;19732:2;19712:18;;;19705:30;19771:34;19751:18;;;19744:62;19842:19;19822:18;;;19815:47;19879:19;;40617:103:0;19491:413:1;40617:103:0;40733:28;40743:4;40749:2;40753:7;40733:9;:28::i;51036:256::-;51133:7;51169:23;51186:5;51169:16;:23::i;:::-;51161:5;:31;51153:87;;;;-1:-1:-1;;;51153:87:0;;10907:2:1;51153:87:0;;;10889:21:1;10946:2;10926:18;;;10919:30;10985:34;10965:18;;;10958:62;11056:13;11036:18;;;11029:41;11087:19;;51153:87:0;10705:407:1;51153:87:0;-1:-1:-1;;;;;;51258:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;51036:256::o;74617:107::-;13273:6;;-1:-1:-1;;;;;13273:6:0;12127:10;13420:23;;:94;;-1:-1:-1;13455:42:0;12127:10;13447:67;13420:94;13412:139;;;;-1:-1:-1;;;13412:139:0;;16712:2:1;13412:139:0;;;16694:21:1;;;16731:18;;;16724:30;-1:-1:-1;;;;;;;;;;;16770:18:1;;;16763:62;16842:18;;13412:139:0;16510:356:1;13412:139:0;74690:15:::1;:26:::0;74617:107::o;71155:809::-;70748:7;;70730:14;:12;:14::i;:::-;:25;;70722:46;;;;-1:-1:-1;;;70722:46:0;;15963:2:1;70722:46:0;;;15945:21:1;16002:1;15982:18;;;15975:29;-1:-1:-1;;;16020:18:1;;;16013:38;16068:18;;70722:46:0;15761:331:1;70722:46:0;13273:6;;-1:-1:-1;;;;;13273:6:0;12127:10;70783:23;;;;:55;;-1:-1:-1;12127:10:0;70811:27;;;;:13;:27;;;;;;;;70810:28;70783:55;70779:126;;;15634:7;;-1:-1:-1;;;15634:7:0;;;;70863:9;70855:38;;;;-1:-1:-1;;;70855:38:0;;14011:2:1;70855:38:0;;;13993:21:1;14050:2;14030:18;;;14023:30;14089:18;14069;;;14062:46;14125:18;;70855:38:0;13809:340:1;70855:38:0;71234:13:::1;71250:14;:12;:14::i;:::-;71234:30;;71275:18;71296:14;71306:3;71296:9;:14::i;:::-;71347:7;::::0;71275:35;;-1:-1:-1;71329:14:0::1;71337:6:::0;71329:5;:14:::1;:::i;:::-;:25;;71321:47;;;::::0;-1:-1:-1;;;71321:47:0;;13261:2:1;71321:47:0::1;::::0;::::1;13243:21:1::0;13300:1;13280:18;;;13273:29;13338:11;13318:18;;;13311:39;13367:18;;71321:47:0::1;13059:332:1::0;71321:47:0::1;71396:7;;71387:5;:16;;71379:37;;;::::0;-1:-1:-1;;;71379:37:0;;15963:2:1;71379:37:0::1;::::0;::::1;15945:21:1::0;16002:1;15982:18;;;15975:29;-1:-1:-1;;;16020:18:1;;;16013:38;16068:18;;71379:37:0::1;15761:331:1::0;71379:37:0::1;71445:11;;71435:6;:21;;71427:48;;;::::0;-1:-1:-1;;;71427:48:0;;10564:2:1;71427:48:0::1;::::0;::::1;10546:21:1::0;10603:2;10583:18;;;10576:30;10642:16;10622:18;;;10615:44;10676:18;;71427:48:0::1;10362:338:1::0;71427:48:0::1;71517:15;::::0;71494:19:::1;71507:6:::0;71494:10;:19:::1;:::i;:::-;:38;;71486:72;;;::::0;-1:-1:-1;;;71486:72:0;;18596:2:1;71486:72:0::1;::::0;::::1;18578:21:1::0;18635:2;18615:18;;;18608:30;18674:23;18654:18;;;18647:51;18715:18;;71486:72:0::1;18394:345:1::0;71486:72:0::1;71590:5;::::0;:17:::1;::::0;71600:6;71590:9:::1;:17::i;:::-;71577:9;:30;;71569:60;;;::::0;-1:-1:-1;;;71569:60:0;;18250:2:1;71569:60:0::1;::::0;::::1;18232:21:1::0;18289:2;18269:18;;;18262:30;18328:19;18308:18;;;18301:47;18365:18;;71569:60:0::1;18048:341:1::0;71569:60:0::1;71670:21;71686:3;71670:7;:21::i;:::-;71702:10;::::0;-1:-1:-1;;;;;71702:10:0::1;:15;71726:3:::0;71732:12:::1;71738:6:::0;71732:3:::1;:12;:::i;:::-;:21;::::0;71747:6:::1;71732:21;:::i;:::-;71702:52;::::0;-1:-1:-1;;;;;;71702:52:0::1;::::0;;;;;;-1:-1:-1;;;;;7455:55:1;;;71702:52:0::1;::::0;::::1;7437:74:1::0;7527:18;;;7520:34;7410:18;;71702:52:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;71802:61;71847:6;71841:3;:12;;;;:::i;:::-;:21;::::0;71856:6:::1;71841:21;:::i;:::-;-1:-1:-1::0;;;;;71802:21:0;::::1;;::::0;;;:7:::1;:21;::::0;;;;:34;;:38:::1;:61::i;:::-;-1:-1:-1::0;;;;;71765:21:0;::::1;;::::0;;;:7:::1;:21;::::0;;;;:98;;;;71874:83:::1;71898:6;71894:1;:10;71874:83;;;71926:19;71941:3;71926:14;:19::i;:::-;71906:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71874:83;;;;71223:741;;71155:809:::0;;:::o;40840:185::-;40978:39;40995:4;41001:2;41005:7;40978:39;;;;;;;;;;;;:16;:39::i;49631:245::-;49749:41;12127:10;49768:12;12047:98;49749:41;49741:102;;;;-1:-1:-1;;;49741:102:0;;20524:2:1;49741:102:0;;;20506:21:1;20563:2;20543:18;;;20536:30;20602:34;20582:18;;;20575:62;20673:18;20653;;;20646:46;20709:19;;49741:102:0;20322:412:1;49741:102:0;49854:14;49860:7;49854:5;:14::i;73059:349::-;73121:16;73150:18;73171:17;73181:6;73171:9;:17::i;:::-;73150:38;;73199:25;73241:10;73227:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;73227:25:0;;73199:53;;73268:9;73263:112;73287:10;73283:1;:14;73263:112;;;73333:30;73353:6;73361:1;73333:19;:30::i;:::-;73319:8;73328:1;73319:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;73299:3;;;;:::i;:::-;;;;73263:112;;;-1:-1:-1;73392:8:0;73059:349;-1:-1:-1;;;73059:349:0:o;51558:233::-;51633:7;51669:30;51456:10;:17;;51368:113;51669:30;51661:5;:38;51653:95;;;;-1:-1:-1;;;51653:95:0;;20111:2:1;51653:95:0;;;20093:21:1;20150:2;20130:18;;;20123:30;20189:34;20169:18;;;20162:62;20260:14;20240:18;;;20233:42;20292:19;;51653:95:0;19909:408:1;51653:95:0;51766:10;51777:5;51766:17;;;;;;;;:::i;:::-;;;;;;;;;51759:24;;51558:233;;;:::o;72950:101::-;13273:6;;-1:-1:-1;;;;;13273:6:0;12127:10;13420:23;;:94;;-1:-1:-1;13455:42:0;12127:10;13447:67;13420:94;13412:139;;;;-1:-1:-1;;;13412:139:0;;16712:2:1;13412:139:0;;;16694:21:1;;;16731:18;;;16724:30;-1:-1:-1;;;;;;;;;;;16770:18:1;;;16763:62;16842:18;;13412:139:0;16510:356:1;13412:139:0;73021:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;72950:101:::0;:::o;71052:91::-;71094:7;71121:14;:12;:14::i;:::-;71114:21;;71052:91;:::o;74402:93::-;13273:6;;-1:-1:-1;;;;;13273:6:0;12127:10;13420:23;;:94;;-1:-1:-1;13455:42:0;12127:10;13447:67;13420:94;13412:139;;;;-1:-1:-1;;;13412:139:0;;16712:2:1;13412:139:0;;;16694:21:1;;;16731:18;;;16724:30;-1:-1:-1;;;;;;;;;;;16770:18:1;;;16763:62;16842:18;;13412:139:0;16510:356:1;13412:139:0;74469:7:::1;:18:::0;74402:93::o;37679:239::-;37751:7;37787:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37787:16:0;37822:19;37814:73;;;;-1:-1:-1;;;37814:73:0;;15192:2:1;37814:73:0;;;15174:21:1;15231:2;15211:18;;;15204:30;15270:34;15250:18;;;15243:62;15341:11;15321:18;;;15314:39;15370:19;;37814:73:0;14990:405:1;74503:102:0;13273:6;;-1:-1:-1;;;;;13273:6:0;12127:10;13420:23;;:94;;-1:-1:-1;13455:42:0;12127:10;13447:67;13420:94;13412:139;;;;-1:-1:-1;;;13412:139:0;;16712:2:1;13412:139:0;;;16694:21:1;;;16731:18;;;16724:30;-1:-1:-1;;;;;;;;;;;16770:18:1;;;16763:62;16842:18;;13412:139:0;16510:356:1;13412:139:0;74575:11:::1;:22:::0;74503:102::o;37409:208::-;37481:7;-1:-1:-1;;;;;37509:19:0;;37501:74;;;;-1:-1:-1;;;37501:74:0;;14781:2:1;37501:74:0;;;14763:21:1;14820:2;14800:18;;;14793:30;14859:34;14839:18;;;14832:62;14930:12;14910:18;;;14903:40;14960:19;;37501:74:0;14579:406:1;37501:74:0;-1:-1:-1;;;;;;37593:16:0;;;;;:9;:16;;;;;;;37409:208::o;13922:94::-;13273:6;;-1:-1:-1;;;;;13273:6:0;12127:10;13420:23;;:94;;-1:-1:-1;13455:42:0;12127:10;13447:67;13420:94;13412:139;;;;-1:-1:-1;;;13412:139:0;;16712:2:1;13412:139:0;;;16694:21:1;;;16731:18;;;16724:30;-1:-1:-1;;;;;;;;;;;16770:18:1;;;16763:62;16842:18;;13412:139:0;16510:356:1;13412:139:0;13987:21:::1;14005:1;13987:9;:21::i;:::-;13922:94::o:0;73578:189::-;13273:6;;-1:-1:-1;;;;;13273:6:0;12127:10;13420:23;;:94;;-1:-1:-1;13455:42:0;12127:10;13447:67;13420:94;13412:139;;;;-1:-1:-1;;;13412:139:0;;16712:2:1;13412:139:0;;;16694:21:1;;;16731:18;;;16724:30;-1:-1:-1;;;;;;;;;;;16770:18:1;;;16763:62;16842:18;;13412:139:0;16510:356:1;13412:139:0;73647:21:::1;73687:11:::0;73679:20:::1;;;::::0;::::1;;73721:14;::::0;73710:49:::1;::::0;-1:-1:-1;;;;;73721:14:0::1;73737:21;73710:10;:49::i;74732:90::-:0;13273:6;;-1:-1:-1;;;;;13273:6:0;12127:10;13420:23;;:94;;-1:-1:-1;13455:42:0;12127:10;13447:67;13420:94;13412:139;;;;-1:-1:-1;;;13412:139:0;;16712:2:1;13412:139:0;;;16694:21:1;;;16731:18;;;16724:30;-1:-1:-1;;;;;;;;;;;16770:18:1;;;16763:62;16842:18;;13412:139:0;16510:356:1;13412:139:0;74798:5:::1;:16:::0;74732:90::o;72705:112::-;13273:6;;-1:-1:-1;;;;;13273:6:0;12127:10;13420:23;;:94;;-1:-1:-1;13455:42:0;12127:10;13447:67;13420:94;13412:139;;;;-1:-1:-1;;;13412:139:0;;16712:2:1;13412:139:0;;;16694:21:1;;;16731:18;;;16724:30;-1:-1:-1;;;;;;;;;;;16770:18:1;;;16763:62;16842:18;;13412:139:0;16510:356:1;13412:139:0;72785:14:::1;:24:::0;;-1:-1:-1;;;;;;72785:24:0::1;-1:-1:-1::0;;;;;72785:24:0;;;::::1;::::0;;;::::1;::::0;;72705:112::o;38154:104::-;38210:13;38243:7;38236:14;;;;;:::i;39835:293::-;-1:-1:-1;;;;;39938:24:0;;12127:10;39938:24;;39930:62;;;;-1:-1:-1;;;39930:62:0;;12907:2:1;39930:62:0;;;12889:21:1;12946:2;12926:18;;;12919:30;12985:27;12965:18;;;12958:55;13030:18;;39930:62:0;12705:349:1;39930:62:0;12127:10;40003:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40003:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40003:53:0;;;;;;;;;;40072:48;;9075:41:1;;;40003:42:0;;12127:10;40072:48;;9048:18:1;40072:48:0;;;;;;;39835:293;;:::o;41096:328::-;41271:41;12127:10;41304:7;41271:18;:41::i;:::-;41263:103;;;;-1:-1:-1;;;41263:103:0;;19693:2:1;41263:103:0;;;19675:21:1;19732:2;19712:18;;;19705:30;19771:34;19751:18;;;19744:62;19842:19;19822:18;;;19815:47;19879:19;;41263:103:0;19491:413:1;41263:103:0;41377:39;41391:4;41397:2;41401:7;41410:5;41377:13;:39::i;:::-;41096:328;;;;:::o;58350:163::-;13273:6;;-1:-1:-1;;;;;13273:6:0;12127:10;13420:23;;:94;;-1:-1:-1;13455:42:0;12127:10;13447:67;13420:94;13412:139;;;;-1:-1:-1;;;13412:139:0;;16712:2:1;13412:139:0;;;16694:21:1;;;16731:18;;;16724:30;-1:-1:-1;;;;;;;;;;;16770:18:1;;;16763:62;16842:18;;13412:139:0;16510:356:1;13412:139:0;-1:-1:-1;;;;;58429:23:0;::::1;58455:5;58429:23:::0;;;:13:::1;:23;::::0;;;;;;;;:31;;-1:-1:-1;;58429:31:0::1;::::0;;58475:30;;6662:74:1;;;58475:30:0::1;::::0;6635:18:1;58475:30:0::1;;;;;;;;58350:163:::0;:::o;38329:334::-;42999:4;43023:16;;;:7;:16;;;;;;38402:13;;-1:-1:-1;;;;;43023:16:0;38428:76;;;;-1:-1:-1;;;38428:76:0;;17834:2:1;38428:76:0;;;17816:21:1;17873:2;17853:18;;;17846:30;17912:34;17892:18;;;17885:62;17983:17;17963:18;;;17956:45;18018:19;;38428:76:0;17632:411:1;38428:76:0;38517:21;38541:10;:8;:10::i;:::-;38517:34;;38593:1;38575:7;38569:21;:25;:86;;;;;;;;;;;;;;;;;38621:7;38630:18;:7;:16;:18::i;:::-;38604:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38569:86;38562:93;38329:334;-1:-1:-1;;;38329:334:0:o;58525:252::-;13273:6;;-1:-1:-1;;;;;13273:6:0;12127:10;13420:23;;:94;;-1:-1:-1;13455:42:0;12127:10;13447:67;13420:94;13412:139;;;;-1:-1:-1;;;13412:139:0;;16712:2:1;13412:139:0;;;16694:21:1;;;16731:18;;;16724:30;-1:-1:-1;;;;;;;;;;;16770:18:1;;;16763:62;16842:18;;13412:139:0;16510:356:1;13412:139:0;58620:9:::1;58616:104;58635:19:::0;;::::1;58616:104;;;58704:4;58675:13;:26;58689:8;;58698:1;58689:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;58675:26:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;58675:26:0;:33;;-1:-1:-1;;58675:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58656:3;::::1;::::0;::::1;:::i;:::-;;;;58616:104;;;;58735:34;58760:8;;58735:34;;;;;;;:::i;58191:147::-:0;13273:6;;-1:-1:-1;;;;;13273:6:0;12127:10;13420:23;;:94;;-1:-1:-1;13455:42:0;12127:10;13447:67;13420:94;13412:139;;;;-1:-1:-1;;;13412:139:0;;16712:2:1;13412:139:0;;;16694:21:1;;;16731:18;;;16724:30;-1:-1:-1;;;;;;;;;;;16770:18:1;;;16763:62;16842:18;;13412:139:0;16510:356:1;13412:139:0;-1:-1:-1;;;;;58261:23:0;::::1;;::::0;;;:13:::1;:23;::::0;;;;;;;;:30;;-1:-1:-1;;58261:30:0::1;58287:4;58261:30;::::0;;58306:24;;6662:74:1;;;58306:24:0::1;::::0;6635:18:1;58306:24:0::1;6516:226:1::0;70159:26:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14171:192::-;13273:6;;-1:-1:-1;;;;;13273:6:0;12127:10;13420:23;;:94;;-1:-1:-1;13455:42:0;12127:10;13447:67;13420:94;13412:139;;;;-1:-1:-1;;;13412:139:0;;16712:2:1;13412:139:0;;;16694:21:1;;;16731:18;;;16724:30;-1:-1:-1;;;;;;;;;;;16770:18:1;;;16763:62;16842:18;;13412:139:0;16510:356:1;13412:139:0;-1:-1:-1;;;;;14260:22:0;::::1;14252:73;;;::::0;-1:-1:-1;;;14252:73:0;;11738:2:1;14252:73:0::1;::::0;::::1;11720:21:1::0;11777:2;11757:18;;;11750:30;11816:34;11796:18;;;11789:62;11887:8;11867:18;;;11860:36;11913:19;;14252:73:0::1;11536:402:1::0;14252:73:0::1;14336:19;14346:8;14336:9;:19::i;50728:224::-:0;50830:4;-1:-1:-1;;;;;;50854:50:0;;50869:35;50854:50;;:90;;;50908:36;50932:11;50908:23;:36::i;16363:118::-;15634:7;;-1:-1:-1;;;15634:7:0;;;;15888:9;15880:38;;;;-1:-1:-1;;;15880:38:0;;14011:2:1;15880:38:0;;;13993:21:1;14050:2;14030:18;;;14023:30;14089:18;14069;;;14062:46;14125:18;;15880:38:0;13809:340:1;15880:38:0;16423:7:::1;:14:::0;;-1:-1:-1;;;;16423:14:0::1;-1:-1:-1::0;;;16423:14:0::1;::::0;;16453:20:::1;16460:12;12127:10:::0;;12047:98;16460:12:::1;16453:20;::::0;-1:-1:-1;;;;;6680:55:1;;;6662:74;;6650:2;6635:18;16453:20:0::1;;;;;;;16363:118::o:0;16622:120::-;15634:7;;-1:-1:-1;;;15634:7:0;;;;16158:41;;;;-1:-1:-1;;;16158:41:0;;10215:2:1;16158:41:0;;;10197:21:1;10254:2;10234:18;;;10227:30;10293:22;10273:18;;;10266:50;10333:18;;16158:41:0;10013:344:1;16158:41:0;16681:7:::1;:15:::0;;-1:-1:-1;;;;16681:15:0::1;::::0;;16712:22:::1;12127:10:::0;16721:12:::1;12047:98:::0;47008:174;47083:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;47083:29:0;-1:-1:-1;;;;;47083:29:0;;;;;;;;:24;;47137:23;47083:24;47137:14;:23::i;:::-;-1:-1:-1;;;;;47128:46:0;;;;;;;;;;;47008:174;;:::o;19860:98::-;19918:7;19945:5;19949:1;19945;:5;:::i;20616:98::-;20674:7;20701:5;20705:1;20701;:5;:::i;19479:98::-;19537:7;19564:5;19568:1;19564;:5;:::i;43228:348::-;43321:4;43023:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43023:16:0;43338:73;;;;-1:-1:-1;;;43338:73:0;;13598:2:1;43338:73:0;;;13580:21:1;13637:2;13617:18;;;13610:30;13676:34;13656:18;;;13649:62;-1:-1:-1;;;13727:18:1;;;13720:42;13779:19;;43338:73:0;13396:408:1;43338:73:0;43422:13;43438:23;43453:7;43438:14;:23::i;:::-;43422:39;;43491:5;-1:-1:-1;;;;;43480:16:0;:7;-1:-1:-1;;;;;43480:16:0;;:51;;;;43524:7;-1:-1:-1;;;;;43500:31:0;:20;43512:7;43500:11;:20::i;:::-;-1:-1:-1;;;;;43500:31:0;;43480:51;:87;;;-1:-1:-1;;;;;;40320:25:0;;;40296:4;40320:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;43535:32;43472:96;43228:348;-1:-1:-1;;;;43228:348:0:o;46220:670::-;46379:4;-1:-1:-1;;;;;46352:31:0;:23;46367:7;46352:14;:23::i;:::-;-1:-1:-1;;;;;46352:31:0;;46344:85;;;;-1:-1:-1;;;46344:85:0;;17424:2:1;46344:85:0;;;17406:21:1;17463:2;17443:18;;;17436:30;17502:34;17482:18;;;17475:62;17573:11;17553:18;;;17546:39;17602:19;;46344:85:0;17222:405:1;46344:85:0;-1:-1:-1;;;;;46448:16:0;;46440:65;;;;-1:-1:-1;;;46440:65:0;;12502:2:1;46440:65:0;;;12484:21:1;12541:2;12521:18;;;12514:30;12580:34;12560:18;;;12553:62;12651:6;12631:18;;;12624:34;12675:19;;46440:65:0;12300:400:1;46440:65:0;46547:15;;46524:20;46541:2;46524:16;:20::i;:::-;:38;46516:73;;;;-1:-1:-1;;;46516:73:0;;17073:2:1;46516:73:0;;;17055:21:1;17112:2;17092:18;;;17085:30;17151:24;17131:18;;;17124:52;17193:18;;46516:73:0;16871:346:1;46516:73:0;46610:39;46631:4;46637:2;46641:7;46610:20;:39::i;:::-;46714:29;46731:1;46735:7;46714:8;:29::i;:::-;-1:-1:-1;;;;;46756:15:0;;;;;;:9;:15;;;;;:20;;46775:1;;46756:15;:20;;46775:1;;46756:20;:::i;:::-;;;;-1:-1:-1;;;;;;;46787:13:0;;;;;;:9;:13;;;;;:18;;46804:1;;46787:13;:18;;46804:1;;46787:18;:::i;:::-;;;;-1:-1:-1;;46816:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;46816:21:0;-1:-1:-1;;;;;46816:21:0;;;;;;;;;46855:27;;46816:16;;46855:27;;;;;;;46220:670;;;:::o;70936:104::-;70983:4;71007:25;:15;32324:14;;32232:114;20217:98;20275:7;20302:5;20306:1;20302;:5;:::i;72506:191::-;72562:7;72572:14;:12;:14::i;:::-;72562:24;;72597:27;:15;32443:19;;32461:1;32443:19;;;32354:127;72597:27;72635:18;72645:3;72650:2;72635:9;:18::i;:::-;72669:20;;72686:2;;72669:20;;;;;72551:146;72506:191;:::o;45523:360::-;45583:13;45599:23;45614:7;45599:14;:23::i;:::-;45583:39;;45635:48;45656:5;45671:1;45675:7;45635:20;:48::i;:::-;45724:29;45741:1;45745:7;45724:8;:29::i;:::-;-1:-1:-1;;;;;45766:16:0;;;;;;:9;:16;;;;;:21;;45786:1;;45766:16;:21;;45786:1;;45766:21;:::i;:::-;;;;-1:-1:-1;;45805:16:0;;;;:7;:16;;;;;;45798:23;;-1:-1:-1;;;;;;45798:23:0;;;45839:36;45813:7;;45805:16;-1:-1:-1;;;;;45839:36:0;;;;;45805:16;;45839:36;45572:311;45523:360;:::o;14371:173::-;14446:6;;;-1:-1:-1;;;;;14463:17:0;;;-1:-1:-1;;;;;;14463:17:0;;;;;;;14496:40;;14446:6;;;14463:17;14446:6;;14496:40;;14427:16;;14496:40;14416:128;14371:173;:::o;73775:181::-;73850:12;73868:8;-1:-1:-1;;;;;73868:13:0;73889:7;73868:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73849:52;;;73920:7;73912:36;;;;-1:-1:-1;;;73912:36:0;;19348:2:1;73912:36:0;;;19330:21:1;19387:2;19367:18;;;19360:30;19426:18;19406;;;19399:46;19462:18;;73912:36:0;19146:340:1;42306:315:0;42463:28;42473:4;42479:2;42483:7;42463:9;:28::i;:::-;42510:48;42533:4;42539:2;42543:7;42552:5;42510:22;:48::i;:::-;42502:111;;;;-1:-1:-1;;;42502:111:0;;11319:2:1;42502:111:0;;;11301:21:1;11358:2;11338:18;;;11331:30;11397:34;11377:18;;;11370:62;-1:-1:-1;;;11448:18:1;;;11441:48;11506:19;;42502:111:0;11117:414:1;72825:113:0;72885:13;72918:12;72911:19;;;;;:::i;33975:723::-;34031:13;34252:10;34248:53;;-1:-1:-1;;34279:10:0;;;;;;;;;;;;;;;;;;33975:723::o;34248:53::-;34326:5;34311:12;34367:78;34374:9;;34367:78;;34400:8;;;;:::i;:::-;;-1:-1:-1;34423:10:0;;-1:-1:-1;34431:2:0;34423:10;;:::i;:::-;;;34367:78;;;34455:19;34487:6;34477:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34477:17:0;;34455:39;;34505:154;34512:10;;34505:154;;34539:11;34549:1;34539:11;;:::i;:::-;;-1:-1:-1;34608:10:0;34616:2;34608:5;:10;:::i;:::-;34595:24;;:2;:24;:::i;:::-;34582:39;;34565:6;34572;34565:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;34636:11:0;34645:2;34636:11;;:::i;:::-;;;34505:154;;37040:305;37142:4;-1:-1:-1;;;;;;37179:40:0;;37194:25;37179:40;;:105;;-1:-1:-1;;;;;;;37236:48:0;;37251:33;37236:48;37179:105;:158;;;-1:-1:-1;33678:25:0;-1:-1:-1;;;;;;33663:40:0;;;37301:36;33554:157;73964:239;74150:45;74177:4;74183:2;74187:7;74150:26;:45::i;43918:110::-;43994:26;44004:2;44008:7;43994:26;;;;;;;;;;;;:9;:26::i;47747:803::-;47902:4;-1:-1:-1;;;;;47923:13:0;;24679:20;24727:8;47919:624;;47959:72;;-1:-1:-1;;;47959:72:0;;-1:-1:-1;;;;;47959:36:0;;;;;:72;;12127:10;;48010:4;;48016:7;;48025:5;;47959:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47959:72:0;;;;;;;;-1:-1:-1;;47959:72:0;;;;;;;;;;;;:::i;:::-;;;47955:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48205:13:0;;48201:272;;48248:60;;-1:-1:-1;;;48248:60:0;;11319:2:1;48248:60:0;;;11301:21:1;11358:2;11338:18;;;11331:30;11397:34;11377:18;;;11370:62;-1:-1:-1;;;11448:18:1;;;11441:48;11506:19;;48248:60:0;11117:414:1;48201:272:0;48423:6;48417:13;48408:6;48404:2;48400:15;48393:38;47955:533;-1:-1:-1;;;;;;48082:55:0;-1:-1:-1;;;48082:55:0;;-1:-1:-1;48075:62:0;;47919:624;-1:-1:-1;48527:4:0;47747:803;;;;;;:::o;57685:360::-;57829:45;57856:4;57862:2;57866:7;57829:26;:45::i;:::-;13273:6;;-1:-1:-1;;;;;13273:6:0;12127:10;57889:23;;;;:55;;-1:-1:-1;12127:10:0;57917:27;;;;:13;:27;;;;;;;;57916:28;57889:55;57885:153;;;15634:7;;-1:-1:-1;;;15634:7:0;;;;57969:9;57961:65;;;;-1:-1:-1;;;57961:65:0;;9803:2:1;57961:65:0;;;9785:21:1;9842:2;9822:18;;;9815:30;9881:34;9861:18;;;9854:62;9952:13;9932:18;;;9925:41;9983:19;;57961:65:0;9601:407:1;44255:321:0;44385:18;44391:2;44395:7;44385:5;:18::i;:::-;44436:54;44467:1;44471:2;44475:7;44484:5;44436:22;:54::i;:::-;44414:154;;;;-1:-1:-1;;;44414:154:0;;11319:2:1;44414:154:0;;;11301:21:1;11358:2;11338:18;;;11331:30;11397:34;11377:18;;;11370:62;-1:-1:-1;;;11448:18:1;;;11441:48;11506:19;;44414:154:0;11117:414:1;52404:589:0;-1:-1:-1;;;;;52610:18:0;;52606:187;;52645:40;52677:7;53820:10;:17;;53793:24;;;;:15;:24;;;;;:44;;;53848:24;;;;;;;;;;;;53716:164;52645:40;52606:187;;;52715:2;-1:-1:-1;;;;;52707:10:0;:4;-1:-1:-1;;;;;52707:10:0;;52703:90;;52734:47;52767:4;52773:7;52734:32;:47::i;:::-;-1:-1:-1;;;;;52807:16:0;;52803:183;;52840:45;52877:7;52840:36;:45::i;52803:183::-;52913:4;-1:-1:-1;;;;;52907:10:0;:2;-1:-1:-1;;;;;52907:10:0;;52903:83;;52934:40;52962:2;52966:7;52934:27;:40::i;44912:382::-;-1:-1:-1;;;;;44992:16:0;;44984:61;;;;-1:-1:-1;;;44984:61:0;;15602:2:1;44984:61:0;;;15584:21:1;;;15621:18;;;15614:30;15680:34;15660:18;;;15653:62;15732:18;;44984:61:0;15400:356:1;44984:61:0;42999:4;43023:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43023:16:0;:30;45056:58;;;;-1:-1:-1;;;45056:58:0;;12145:2:1;45056:58:0;;;12127:21:1;12184:2;12164:18;;;12157:30;12223;12203:18;;;12196:58;12271:18;;45056:58:0;11943:352:1;45056:58:0;45127:45;45156:1;45160:2;45164:7;45127:20;:45::i;:::-;-1:-1:-1;;;;;45185:13:0;;;;;;:9;:13;;;;;:18;;45202:1;;45185:13;:18;;45202:1;;45185:18;:::i;:::-;;;;-1:-1:-1;;45214:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;45214:21:0;-1:-1:-1;;;;;45214:21:0;;;;;;;;45253:33;;45214:16;;;45253:33;;45214:16;;45253:33;44912:382;;:::o;54507:988::-;54773:22;54823:1;54798:22;54815:4;54798:16;:22::i;:::-;:26;;;;:::i;:::-;54835:18;54856:26;;;:17;:26;;;;;;54773:51;;-1:-1:-1;54989:28:0;;;54985:328;;-1:-1:-1;;;;;55056:18:0;;55034:19;55056:18;;;:12;:18;;;;;;;;:34;;;;;;;;;55107:30;;;;;;:44;;;55224:30;;:17;:30;;;;;:43;;;54985:328;-1:-1:-1;55409:26:0;;;;:17;:26;;;;;;;;55402:33;;;-1:-1:-1;;;;;55453:18:0;;;;;:12;:18;;;;;:34;;;;;;;55446:41;54507:988::o;55790:1079::-;56068:10;:17;56043:22;;56068:21;;56088:1;;56068:21;:::i;:::-;56100:18;56121:24;;;:15;:24;;;;;;56494:10;:26;;56043:46;;-1:-1:-1;56121:24:0;;56043:46;;56494:26;;;;;;:::i;:::-;;;;;;;;;56472:48;;56558:11;56533:10;56544;56533:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;56638:28;;;:15;:28;;;;;;;:41;;;56810:24;;;;;56803:31;56845:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;55861:1008;;;55790:1079;:::o;53294:221::-;53379:14;53396:20;53413:2;53396:16;:20::i;:::-;-1:-1:-1;;;;;53427:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;53472:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;53294:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;1327:388::-;1395:6;1403;1456:2;1444:9;1435:7;1431:23;1427:32;1424:52;;;1472:1;1469;1462:12;1424:52;1511:9;1498:23;1530:31;1555:5;1530:31;:::i;:::-;1580:5;-1:-1:-1;1637:2:1;1622:18;;1609:32;1650:33;1609:32;1650:33;:::i;:::-;1702:7;1692:17;;;1327:388;;;;;:::o;1720:456::-;1797:6;1805;1813;1866:2;1854:9;1845:7;1841:23;1837:32;1834:52;;;1882:1;1879;1872:12;1834:52;1921:9;1908:23;1940:31;1965:5;1940:31;:::i;:::-;1990:5;-1:-1:-1;2047:2:1;2032:18;;2019:32;2060:33;2019:32;2060:33;:::i;:::-;1720:456;;2112:7;;-1:-1:-1;;;2166:2:1;2151:18;;;;2138:32;;1720:456::o;2181:794::-;2276:6;2284;2292;2300;2353:3;2341:9;2332:7;2328:23;2324:33;2321:53;;;2370:1;2367;2360:12;2321:53;2409:9;2396:23;2428:31;2453:5;2428:31;:::i;:::-;2478:5;-1:-1:-1;2535:2:1;2520:18;;2507:32;2548:33;2507:32;2548:33;:::i;:::-;2600:7;-1:-1:-1;2654:2:1;2639:18;;2626:32;;-1:-1:-1;2709:2:1;2694:18;;2681:32;2736:18;2725:30;;2722:50;;;2768:1;2765;2758:12;2722:50;2791:22;;2844:4;2836:13;;2832:27;-1:-1:-1;2822:55:1;;2873:1;2870;2863:12;2822:55;2896:73;2961:7;2956:2;2943:16;2938:2;2934;2930:11;2896:73;:::i;:::-;2886:83;;;2181:794;;;;;;;:::o;2980:315::-;3045:6;3053;3106:2;3094:9;3085:7;3081:23;3077:32;3074:52;;;3122:1;3119;3112:12;3074:52;3161:9;3148:23;3180:31;3205:5;3180:31;:::i;:::-;3230:5;-1:-1:-1;3254:35:1;3285:2;3270:18;;3254:35;:::i;:::-;3244:45;;2980:315;;;;;:::o;3300:::-;3368:6;3376;3429:2;3417:9;3408:7;3404:23;3400:32;3397:52;;;3445:1;3442;3435:12;3397:52;3484:9;3471:23;3503:31;3528:5;3503:31;:::i;:::-;3553:5;3605:2;3590:18;;;;3577:32;;-1:-1:-1;;;3300:315:1:o;3620:615::-;3706:6;3714;3767:2;3755:9;3746:7;3742:23;3738:32;3735:52;;;3783:1;3780;3773:12;3735:52;3823:9;3810:23;3852:18;3893:2;3885:6;3882:14;3879:34;;;3909:1;3906;3899:12;3879:34;3947:6;3936:9;3932:22;3922:32;;3992:7;3985:4;3981:2;3977:13;3973:27;3963:55;;4014:1;4011;4004:12;3963:55;4054:2;4041:16;4080:2;4072:6;4069:14;4066:34;;;4096:1;4093;4086:12;4066:34;4149:7;4144:2;4134:6;4131:1;4127:14;4123:2;4119:23;4115:32;4112:45;4109:65;;;4170:1;4167;4160:12;4109:65;4201:2;4193:11;;;;;4223:6;;-1:-1:-1;3620:615:1;;-1:-1:-1;;;;3620:615:1:o;4240:180::-;4296:6;4349:2;4337:9;4328:7;4324:23;4320:32;4317:52;;;4365:1;4362;4355:12;4317:52;4388:26;4404:9;4388:26;:::i;4425:245::-;4483:6;4536:2;4524:9;4515:7;4511:23;4507:32;4504:52;;;4552:1;4549;4542:12;4504:52;4591:9;4578:23;4610:30;4634:5;4610:30;:::i;4675:249::-;4744:6;4797:2;4785:9;4776:7;4772:23;4768:32;4765:52;;;4813:1;4810;4803:12;4765:52;4845:9;4839:16;4864:30;4888:5;4864:30;:::i;4929:450::-;4998:6;5051:2;5039:9;5030:7;5026:23;5022:32;5019:52;;;5067:1;5064;5057:12;5019:52;5107:9;5094:23;5140:18;5132:6;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:1;;5277:1;5274;5267:12;5226:55;5300:73;5365:7;5360:2;5347:16;5342:2;5338;5334:11;5300:73;:::i;5384:180::-;5443:6;5496:2;5484:9;5475:7;5471:23;5467:32;5464:52;;;5512:1;5509;5502:12;5464:52;-1:-1:-1;5535:23:1;;5384:180;-1:-1:-1;5384:180:1:o;5569:257::-;5610:3;5648:5;5642:12;5675:6;5670:3;5663:19;5691:63;5747:6;5740:4;5735:3;5731:14;5724:4;5717:5;5713:16;5691:63;:::i;:::-;5808:2;5787:15;-1:-1:-1;;5783:29:1;5774:39;;;;5815:4;5770:50;;5569:257;-1:-1:-1;;5569:257:1:o;5831:470::-;6010:3;6048:6;6042:13;6064:53;6110:6;6105:3;6098:4;6090:6;6086:17;6064:53;:::i;:::-;6180:13;;6139:16;;;;6202:57;6180:13;6139:16;6236:4;6224:17;;6202:57;:::i;:::-;6275:20;;5831:470;-1:-1:-1;;;;5831:470:1:o;6747:511::-;6941:4;-1:-1:-1;;;;;7051:2:1;7043:6;7039:15;7028:9;7021:34;7103:2;7095:6;7091:15;7086:2;7075:9;7071:18;7064:43;;7143:6;7138:2;7127:9;7123:18;7116:34;7186:3;7181:2;7170:9;7166:18;7159:31;7207:45;7247:3;7236:9;7232:19;7224:6;7207:45;:::i;:::-;7199:53;6747:511;-1:-1:-1;;;;;;6747:511:1:o;7565:728::-;7746:2;7798:21;;;7771:18;;;7854:22;;;7717:4;;7933:6;7907:2;7892:18;;7717:4;7967:300;7981:6;7978:1;7975:13;7967:300;;;8056:6;8043:20;8076:31;8101:5;8076:31;:::i;:::-;-1:-1:-1;;;;;8132:54:1;8120:67;;8242:15;;;;8207:12;;;;8003:1;7996:9;7967:300;;;-1:-1:-1;8284:3:1;7565:728;-1:-1:-1;;;;;;7565:728:1:o;8298:632::-;8469:2;8521:21;;;8591:13;;8494:18;;;8613:22;;;8440:4;;8469:2;8692:15;;;;8666:2;8651:18;;;8440:4;8735:169;8749:6;8746:1;8743:13;8735:169;;;8810:13;;8798:26;;8879:15;;;;8844:12;;;;8771:1;8764:9;8735:169;;;-1:-1:-1;8921:3:1;;8298:632;-1:-1:-1;;;;;;8298:632:1:o;9377:219::-;9526:2;9515:9;9508:21;9489:4;9546:44;9586:2;9575:9;9571:18;9563:6;9546:44;:::i;21174:128::-;21214:3;21245:1;21241:6;21238:1;21235:13;21232:39;;;21251:18;;:::i;:::-;-1:-1:-1;21287:9:1;;21174:128::o;21307:120::-;21347:1;21373;21363:35;;21378:18;;:::i;:::-;-1:-1:-1;21412:9:1;;21307:120::o;21432:168::-;21472:7;21538:1;21534;21530:6;21526:14;21523:1;21520:21;21515:1;21508:9;21501:17;21497:45;21494:71;;;21545:18;;:::i;:::-;-1:-1:-1;21585:9:1;;21432:168::o;21605:125::-;21645:4;21673:1;21670;21667:8;21664:34;;;21678:18;;:::i;:::-;-1:-1:-1;21715:9:1;;21605:125::o;21735:258::-;21807:1;21817:113;21831:6;21828:1;21825:13;21817:113;;;21907:11;;;21901:18;21888:11;;;21881:39;21853:2;21846:10;21817:113;;;21948:6;21945:1;21942:13;21939:48;;;-1:-1:-1;;21983:1:1;21965:16;;21958:27;21735:258::o;21998:437::-;22077:1;22073:12;;;;22120;;;22141:61;;22195:4;22187:6;22183:17;22173:27;;22141:61;22248:2;22240:6;22237:14;22217:18;22214:38;22211:218;;;-1:-1:-1;;;22282:1:1;22275:88;22386:4;22383:1;22376:15;22414:4;22411:1;22404:15;22211:218;;21998:437;;;:::o;22440:135::-;22479:3;-1:-1:-1;;22500:17:1;;22497:43;;;22520:18;;:::i;:::-;-1:-1:-1;22567:1:1;22556:13;;22440:135::o;22580:112::-;22612:1;22638;22628:35;;22643:18;;:::i;:::-;-1:-1:-1;22677:9:1;;22580:112::o;22697:184::-;-1:-1:-1;;;22746:1:1;22739:88;22846:4;22843:1;22836:15;22870:4;22867:1;22860:15;22886:184;-1:-1:-1;;;22935:1:1;22928:88;23035:4;23032:1;23025:15;23059:4;23056:1;23049:15;23075:184;-1:-1:-1;;;23124:1:1;23117:88;23224:4;23221:1;23214:15;23248:4;23245:1;23238:15;23264:184;-1:-1:-1;;;23313:1:1;23306:88;23413:4;23410:1;23403:15;23437:4;23434:1;23427:15;23453:184;-1:-1:-1;;;23502:1:1;23495:88;23602:4;23599:1;23592:15;23626:4;23623:1;23616:15;23642:154;-1:-1:-1;;;;;23721:5:1;23717:54;23710:5;23707:65;23697:93;;23786:1;23783;23776:12;23801:177;-1:-1:-1;;;;;;23879:5:1;23875:78;23868:5;23865:89;23855:117;;23968:1;23965;23958:12

Swarm Source

ipfs://e04188b20b643594d969b227603fecf6f880cdcb15a30d1fbcac24b789bd81a5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.