ETH Price: $3,490.71 (+2.66%)
Gas: 10 Gwei

KPK Project (KPK)
 

Overview

TokenID

159

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
KOPOKOMafia

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-29
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.5.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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        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);
}

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts/finance/PaymentSplitter.sol


// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;




/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: contracts/EnumerableERC721A.sol


pragma solidity ^0.8.7;

/// @title KPK Project

contract KOPOKOMafia is ERC721A, PaymentSplitter, Ownable, ReentrancyGuard {


    //To concatenate the URL of an NFT
    using Strings for uint256;

    //To check the addresses in the whitelist
    bytes32 private mR;
    //Number of NFTs in the collection
    uint public constant MAX_SUPPLY = 1000;
    //Maximum number of NFTs an address can mint
    uint public max_mint_allowed = 2;
    //Maximum number of NFTs an address can mint
    uint public max_mint_allowed_presale = 2;
    //Price of one NFT in presale
    uint public pricePresale = 0.08 ether;
    //Price of one NFT in sale
    uint public priceSale = 0.08 ether;

    //URI of the NFTs when revealed
    string private baseURI;
    //URI of the NFTs when not revealed
    string private notRevealedURI;
    //The extension of the file containing the Metadatas of the NFTs
    string public baseExtension = ".json";

    //Are the NFTs revealed yet ?
    bool public revealed = false;

    //Is the contract paused ?
    bool public paused = false;


    //The different stages of selling the collection
    enum Steps {
        Before,
        Presale,
        Sale,
        SoldOut,
        Reveal
    }

    Steps public sellingStep;
    
    //Owner of the smart contract
    address private _owner;

    //Keep a track of the number of tokens per address
    mapping(address => uint) nftsPerWallet;

    //Keep a track of the number of tokens per address
    mapping(address => uint) nftsPerWalletSale;

    //Addresses of all the members of the team
    address[] private _team = [
        0x5B1a4ebd28b597fe47494A0a5766b2Eb6e6B3fcC
    ];

    //Shares of all the members of the team
    uint[] private _teamShares = [
        100
    ];
    
    //Constructor of the collection
    constructor() ERC721A("KPK Project", "KPK") PaymentSplitter(_team, _teamShares) {
       
        transferOwnership(msg.sender);
        sellingStep = Steps.Before;
  
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    /**
    * @notice Edit the Merkle Root 
    *
    * @param _newMerkleRoot The new Merkle Root
    **/
    function changeMerkleRoot(bytes32 _newMerkleRoot) external onlyOwner {
        mR = _newMerkleRoot;
    }
    /**
    * @notice Initialise Merkle Root
    *
    * @param _theBaseURI Base URI
    * @param _notRevealedURI Hide base URI
    * @param _merkleRoot The new Merkle Root
    **/
    function init(string memory _theBaseURI, string memory _notRevealedURI, bytes32 _merkleRoot) external onlyOwner {
        mR = _merkleRoot;
        baseURI = _theBaseURI;
        notRevealedURI = _notRevealedURI;
    }

    /** 
    * @notice Set pause to true or false
    *
    * @param _paused True or false if you want the contract to be paused or not
    **/
    function setPaused(bool _paused) external onlyOwner {
        paused = _paused;
    }

    /** 
    * @notice Change the number of NFTs that an address can mint
    *
    * @param _maxMintAllowed The number of NFTs that an address can mint
    **/
    function changeMaxMintAllowed(uint _maxMintAllowed) external onlyOwner {
        max_mint_allowed = _maxMintAllowed;
    }

    /** 
    * @notice Change the number of NFTs that an address can mint
    *
    * @param _maxMintAllowedPreSale The number of NFTs that an address can mint
    **/
    function changeMaxMintAllowedPreSale(uint _maxMintAllowedPreSale) external onlyOwner {
        max_mint_allowed_presale = _maxMintAllowedPreSale;
    }

    /**
    * @notice Change the price of one NFT for the presale
    *
    * @param _pricePresale The new price of one NFT for the presale
    **/
    function changePricePresale(uint _pricePresale) external onlyOwner {
        pricePresale = _pricePresale;
    }

    /**
    * @notice Change the price of one NFT for the sale
    *
    * @param _priceSale The new price of one NFT for the sale
    **/
    function changePriceSale(uint _priceSale) external onlyOwner {
        priceSale = _priceSale;
    }

    /**
    * @notice Allows to set the revealed variable to true
    **/
    function reveal() external onlyOwner{
        revealed = true;
    }
    /**
    * @notice Change the base URI
    *
    * @param _newBaseURI The new base URI
    **/
    function setBaseUri(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    /**
    * @notice Change the not revealed URI
    *
    * @param _notRevealedURI The new not revealed URI
    **/
    function setNotRevealURI(string memory _notRevealedURI) external onlyOwner {
        notRevealedURI = _notRevealedURI;
    }
    /**
    * @notice Return URI of the NFTs when revealed
    *
    * @return The URI of the NFTs when revealed
    **/
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    /**
    * @notice Allows to change the base extension of the metadatas files
    *
    * @param _baseExtension the new extension of the metadatas files
    **/
    function setBaseExtension(string memory _baseExtension) external onlyOwner {
        baseExtension = _baseExtension;
    }

    /** 
    * @notice Allows to change the sellinStep to Presale
    **/
    function setUpPresale() external onlyOwner {
        sellingStep = Steps.Presale;
    }

    /** 
    * @notice Allows to change the sellinStep to Sale
    **/
    function setUpSale() external onlyOwner {
        require(sellingStep == Steps.Presale, "First the presale, then the sale.");
        sellingStep = Steps.Sale;
    }

    /**
    * @notice Allows to mint one NFT if whitelisted
    *
    * 
    * @param _proof The Merkle Proof
    * @param _ammount The ammount of NFTs the user wants to mint
    **/
    function presaleMint(bytes32[] calldata _proof,uint256 _ammount) external payable nonReentrant {
        
        //Are we in Presale ?
        require(sellingStep == Steps.Presale, "Presale has not started yet.");
        
        //Did this account already mint an NFT ?
        require(nftsPerWallet[msg.sender] < max_mint_allowed_presale, string(abi.encodePacked("You can only get ",
        Strings.toString(max_mint_allowed_presale)," NFT on the Presale")));

        require(_ammount <= max_mint_allowed_presale, string(abi.encodePacked("You can't mint more than ",
        Strings.toString(max_mint_allowed_presale)," tokens")));

        //Is this user on the whitelist ?
        require(isWhiteListed(msg.sender, _proof), "You are not on the whitelist");
         //Get the price of one NFT during the Presale
        uint price = pricePresale;
        //Did the user send enought Ethers ?
        require(msg.value >= price * _ammount, "Not enought funds.");
        //Increment the number of NFTs this user minted
        nftsPerWallet[msg.sender] += _ammount;
        //Mint the user NFT
        _safeMint(msg.sender, _ammount);
    }

    /**
    * @notice Allows to mint NFTs
    *
    * @param _ammount The ammount of NFTs the user wants to mint
    **/
    function saleMint(uint256 _ammount) external payable nonReentrant {
        //Get the number of NFT sold
        uint numberNftSold = totalSupply();
        //Get the price of one NFT in Sale
        uint price = priceSale;
        //If everything has been bought
        require(sellingStep != Steps.SoldOut, "Sorry, no NFTs left.");
        //If Sale didn't start yet
        require(sellingStep == Steps.Sale, "Sorry, sale has not started yet.");
        //Did the user then enought Ethers to buy ammount NFTs ?
        require(msg.value >= price * _ammount, "Not enought funds.");
       
        //The user can only mint max X NFTs
        require(nftsPerWalletSale[msg.sender] < max_mint_allowed, string(abi.encodePacked("You can only get ",
        Strings.toString(max_mint_allowed)," NFT on the Sale")));

         require(_ammount <= max_mint_allowed, string(abi.encodePacked("You can't mint more than ",
        Strings.toString(max_mint_allowed)," tokens")));

        //If the user try to mint any non-existent token
        require(numberNftSold + _ammount <= MAX_SUPPLY, "Sale is almost done and we don't have enought NFTs left.");
        //Add the ammount of NFTs minted by the user to the total he minted
        nftsPerWalletSale[msg.sender] += _ammount;
        //Minting all the account NFTs
        
        _safeMint(msg.sender, _ammount);
        
        //If this account minted the last NFTs available
        if(numberNftSold + _ammount == MAX_SUPPLY) {
            sellingStep = Steps.SoldOut;   
        }
    }

    /**
    * @notice Allows to gift one NFT to an address
    *
    * @param _account The account of the happy new owner of one NFT
    **/
    function gift(address _account) external onlyOwner {
        uint supply = totalSupply();
        require(supply + 1 <= MAX_SUPPLY, "Sold out");
        _safeMint(_account, 1);
    }

    /**
    * @notice Return true or false if the account is whitelisted or not
    *
    * @param account The account of the user
    * @param proof The Merkle Proof
    *
    * @return true or false if the account is whitelisted or not
    **/
    function isWhiteListed(address account, bytes32[] calldata proof) internal view returns(bool) {
           
        return _verify(_leaf(account),proof);
    }

    /**
    * @notice Return the account hashed
    *
    * @param account The account to hash
    *
    * @return The account hashed
    **/
    function _leaf(address account) internal pure returns(bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    /** 
    * @notice Returns true if a leaf can be proved to be a part of a Merkle tree defined by root
    *
    * @param leaf The leaf
    * @param proof The Merkle Proof
    *
    * @return True if a leaf can be provded to be a part of a Merkle tree defined by root
    **/
    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns(bool) {
        return MerkleProof.verify(proof, mR, leaf);
    }

    /**
    * @notice Allows to get the complete URI of a specific NFT by his ID
    *
    * @param _nftId The id of the NFT
    *
    * @return The token URI of the NFT which has _nftId Id
    **/
    function tokenURI(uint _nftId) public view override(ERC721A) returns (string memory) {
        require(_exists(_nftId), "This NFT doesn't exist.");
        if(revealed == false) {
            return notRevealedURI;
        }
        
        string memory currentBaseURI = _baseURI();
        return 
            bytes(currentBaseURI).length > 0 
            ? string(abi.encodePacked(currentBaseURI, _nftId.toString(), baseExtension))
            : "";
    }   

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAllowed","type":"uint256"}],"name":"changeMaxMintAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAllowedPreSale","type":"uint256"}],"name":"changeMaxMintAllowedPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"changeMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pricePresale","type":"uint256"}],"name":"changePricePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_priceSale","type":"uint256"}],"name":"changePriceSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_theBaseURI","type":"string"},{"internalType":"string","name":"_notRevealedURI","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_mint_allowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_mint_allowed_presale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"_ammount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"pricePresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ammount","type":"uint256"}],"name":"saleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"sellingStep","outputs":[{"internalType":"enum KOPOKOMafia.Steps","name":"","type":"uint8"}],"stateMutability":"view","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":"_baseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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"},{"stateMutability":"payable","type":"receive"}]

6002601281905560135567011c37937e080000601481905560155560c06040526005608081905264173539b7b760d91b60a090815262000043916018919062000653565b506019805461ffff191690556040805160208101909152735b1a4ebd28b597fe47494a0a5766b2eb6e6b3fcc81526200008190601c906001620006e2565b50604080516020810190915260648152620000a190601d9060016200073a565b50348015620000af57600080fd5b50601c8054806020026020016040519081016040528092919081815260200182805480156200010857602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620000e9575b5050505050601d8054806020026020016040519081016040528092919081815260200182805480156200015b57602002820191906000526020600020905b81548152602001906001019080831162000146575b5050604080518082018252600b81526a12d412c8141c9bda9958dd60aa1b6020808301918252835180850190945260038452624b504b60e81b908401528151919550919350620001b092506002919062000653565b508051620001c690600390602084019062000653565b50600160005550508051825114620002405760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002935760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000237565b60005b8251811015620002ff57620002ea838281518110620002b957620002b962000820565b6020026020010151838381518110620002d657620002d662000820565b60200260200101516200033e60201b60201c565b80620002f681620007ec565b91505062000296565b5050506200031c620003166200052c60201b60201c565b62000530565b60016010556200032c3362000582565b6019805462ff00001916905562000836565b6001600160a01b038216620003ab5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000237565b60008111620003fd5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000237565b6001600160a01b0382166000908152600a602052604090205415620004795760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000237565b600c8054600181019091557fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b0384169081179091556000908152600a60205260409020819055600854620004e390829062000794565b600855604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b3390565b600f80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600f546001600160a01b03163314620005de5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000237565b6001600160a01b038116620006455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000237565b620006508162000530565b50565b8280546200066190620007af565b90600052602060002090601f016020900481019282620006855760008555620006d0565b82601f10620006a057805160ff1916838001178555620006d0565b82800160010185558215620006d0579182015b82811115620006d0578251825591602001919060010190620006b3565b50620006de9291506200077d565b5090565b828054828255906000526020600020908101928215620006d0579160200282015b82811115620006d057825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000703565b828054828255906000526020600020908101928215620006d0579160200282015b82811115620006d0578251829060ff169055916020019190600101906200075b565b5b80821115620006de57600081556001016200077e565b60008219821115620007aa57620007aa6200080a565b500190565b600181811c90821680620007c457607f821691505b60208210811415620007e657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200080357620008036200080a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b61332280620008466000396000f3fe6080604052600436106102e85760003560e01c80638b83209b11610190578063c6682862116100dc578063da3ef23f11610095578063ebcea3db1161006f578063ebcea3db1461094c578063f2fde38b1461096c578063fa27a7261461098c578063fde5f548146109ac57600080fd5b8063da3ef23f146108ce578063e33b7de3146108ee578063e985e9c51461090357600080fd5b8063c6682862146107e0578063c87b56dd146107f5578063cbccefb214610815578063cbfc4bce14610842578063ce7c2ac214610862578063d79779b21461089857600080fd5b8063a0bcfc7f11610149578063b427963311610123578063b427963314610774578063b88d4fde14610794578063ba0c60c9146107b4578063bfaa9266146107ca57600080fd5b8063a0bcfc7f1461071f578063a22cb4651461073f578063a475b5dd1461075f57600080fd5b80638b83209b1461066d5780638ca887ca1461068d5780638da5cb5b146106a05780639147dd1b146106be57806395d89b41146106d45780639852595c146106e957600080fd5b80633a98ef391161024f578063549df2df116102085780636352211e116101e25780636352211e1461060257806370a0823114610622578063715018a61461064257806381a7927e1461065757600080fd5b8063549df2df146105a35780635accac99146105c35780635c975abb146105e357600080fd5b80633a98ef39146104ce5780633f5fbad0146104e3578063406072a91461050357806342842e0e1461054957806348b7504414610569578063518302271461058957600080fd5b806318160ddd116102a157806318160ddd1461041c57806319165587146104435780631dcfab39146104635780631f2898c31461048357806323b872dd1461049857806332cb6b0c146104b857600080fd5b806301ffc9a71461033657806306fdde031461036b578063081812fc1461038d578063095ea7b3146103c557806315c316fc146103e757806316c38b3c146103fc57600080fd5b36610331577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561034257600080fd5b50610356610351366004612d0f565b6109bf565b60405190151581526020015b60405180910390f35b34801561037757600080fd5b50610380610a11565b6040516103629190613074565b34801561039957600080fd5b506103ad6103a8366004612cf6565b610aa3565b6040516001600160a01b039091168152602001610362565b3480156103d157600080fd5b506103e56103e0366004612c15565b610ae7565b005b3480156103f357600080fd5b506103e5610b75565b34801561040857600080fd5b506103e5610417366004612cbc565b610bc3565b34801561042857600080fd5b5060015460005403600019015b604051908152602001610362565b34801561044f57600080fd5b506103e561045e366004612ad0565b610c07565b34801561046f57600080fd5b506103e561047e366004612cf6565b610d35565b34801561048f57600080fd5b506103e5610d64565b3480156104a457600080fd5b506103e56104b3366004612b26565b610e1c565b3480156104c457600080fd5b506104356103e881565b3480156104da57600080fd5b50600854610435565b3480156104ef57600080fd5b506103e56104fe366004612cf6565b610e27565b34801561050f57600080fd5b5061043561051e366004612aed565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b34801561055557600080fd5b506103e5610564366004612b26565b610e56565b34801561057557600080fd5b506103e5610584366004612aed565b610e71565b34801561059557600080fd5b506019546103569060ff1681565b3480156105af57600080fd5b506103e56105be366004612cf6565b611059565b3480156105cf57600080fd5b506103e56105de366004612d49565b611088565b3480156105ef57600080fd5b5060195461035690610100900460ff1681565b34801561060e57600080fd5b506103ad61061d366004612cf6565b6110c9565b34801561062e57600080fd5b5061043561063d366004612ad0565b6110db565b34801561064e57600080fd5b506103e561112a565b34801561066357600080fd5b5061043560155481565b34801561067957600080fd5b506103ad610688366004612cf6565b611160565b6103e561069b366004612cf6565b611190565b3480156106ac57600080fd5b50600f546001600160a01b03166103ad565b3480156106ca57600080fd5b5061043560145481565b3480156106e057600080fd5b506103806114ac565b3480156106f557600080fd5b50610435610704366004612ad0565b6001600160a01b03166000908152600b602052604090205490565b34801561072b57600080fd5b506103e561073a366004612d49565b6114bb565b34801561074b57600080fd5b506103e561075a366004612be7565b6114f8565b34801561076b57600080fd5b506103e561158e565b34801561078057600080fd5b506103e561078f366004612cf6565b6115c7565b3480156107a057600080fd5b506103e56107af366004612b67565b6115f6565b3480156107c057600080fd5b5061043560125481565b3480156107d657600080fd5b5061043560135481565b3480156107ec57600080fd5b50610380611647565b34801561080157600080fd5b50610380610810366004612cf6565b6116d5565b34801561082157600080fd5b506019546108359062010000900460ff1681565b604051610362919061304c565b34801561084e57600080fd5b506103e561085d366004612ad0565b611827565b34801561086e57600080fd5b5061043561087d366004612ad0565b6001600160a01b03166000908152600a602052604090205490565b3480156108a457600080fd5b506104356108b3366004612ad0565b6001600160a01b03166000908152600d602052604090205490565b3480156108da57600080fd5b506103e56108e9366004612d49565b6118ba565b3480156108fa57600080fd5b50600954610435565b34801561090f57600080fd5b5061035661091e366004612aed565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561095857600080fd5b506103e5610967366004612cf6565b6118f7565b34801561097857600080fd5b506103e5610987366004612ad0565b611926565b34801561099857600080fd5b506103e56109a7366004612d7e565b6119c1565b6103e56109ba366004612c41565b611a17565b60006001600160e01b031982166380ac58cd60e01b14806109f057506001600160e01b03198216635b5e139f60e01b145b80610a0b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610a20906131db565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4c906131db565b8015610a995780601f10610a6e57610100808354040283529160200191610a99565b820191906000526020600020905b815481529060010190602001808311610a7c57829003601f168201915b5050505050905090565b6000610aae82611c69565b610acb576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610af2826110c9565b9050806001600160a01b0316836001600160a01b03161415610b275760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b475750610b45813361091e565b155b15610b65576040516367d9dca160e11b815260040160405180910390fd5b610b70838383611ca2565b505050565b600f546001600160a01b03163314610ba85760405162461bcd60e51b8152600401610b9f90613118565b60405180910390fd5b601980546001919062ff0000191662010000835b0217905550565b600f546001600160a01b03163314610bed5760405162461bcd60e51b8152600401610b9f90613118565b601980549115156101000261ff0019909216919091179055565b6001600160a01b0381166000908152600a6020526040902054610c3c5760405162461bcd60e51b8152600401610b9f90613087565b6000610c4760095490565b610c51904761314d565b90506000610c7e8383610c79866001600160a01b03166000908152600b602052604090205490565b611cfe565b905080610c9d5760405162461bcd60e51b8152600401610b9f906130cd565b6001600160a01b0383166000908152600b602052604081208054839290610cc590849061314d565b925050819055508060096000828254610cde919061314d565b90915550610cee90508382611d44565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b600f546001600160a01b03163314610d5f5760405162461bcd60e51b8152600401610b9f90613118565b601555565b600f546001600160a01b03163314610d8e5760405162461bcd60e51b8152600401610b9f90613118565b600160195462010000900460ff166004811115610dad57610dad613271565b14610e045760405162461bcd60e51b815260206004820152602160248201527f4669727374207468652070726573616c652c207468656e207468652073616c656044820152601760f91b6064820152608401610b9f565b601980546002919062ff000019166201000083610bbc565b610b70838383611e5d565b600f546001600160a01b03163314610e515760405162461bcd60e51b8152600401610b9f90613118565b601455565b610b70838383604051806020016040528060008152506115f6565b6001600160a01b0381166000908152600a6020526040902054610ea65760405162461bcd60e51b8152600401610b9f90613087565b6001600160a01b0382166000908152600d60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b158015610efe57600080fd5b505afa158015610f12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f369190612deb565b610f40919061314d565b90506000610f798383610c7987876001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b905080610f985760405162461bcd60e51b8152600401610b9f906130cd565b6001600160a01b038085166000908152600e6020908152604080832093871683529290529081208054839290610fcf90849061314d565b90915550506001600160a01b0384166000908152600d602052604081208054839290610ffc90849061314d565b9091555061100d9050848483612073565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600f546001600160a01b031633146110835760405162461bcd60e51b8152600401610b9f90613118565b601255565b600f546001600160a01b031633146110b25760405162461bcd60e51b8152600401610b9f90613118565b80516110c59060179060208401906129a1565b5050565b60006110d4826120c5565b5192915050565b60006001600160a01b038216611104576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b600f546001600160a01b031633146111545760405162461bcd60e51b8152600401610b9f90613118565b61115e60006121ee565b565b6000600c828154811061117557611175613287565b6000918252602090912001546001600160a01b031692915050565b600260105414156111e35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b9f565b600260105560006111fd6001546000546000199190030190565b601554909150600360195462010000900460ff16600481111561122257611222613271565b14156112675760405162461bcd60e51b815260206004820152601460248201527329b7b9393c961037379027232a39903632b33a1760611b6044820152606401610b9f565b600260195462010000900460ff16600481111561128657611286613271565b146112d35760405162461bcd60e51b815260206004820181905260248201527f536f7272792c2073616c6520686173206e6f742073746172746564207965742e6044820152606401610b9f565b6112dd8382613179565b3410156113215760405162461bcd60e51b81526020600482015260126024820152712737ba1032b737bab3b43a10333ab732399760711b6044820152606401610b9f565b601254336000908152601b602052604090205481119061134090612240565b6040516020016113509190612f66565b6040516020818303038152906040529061137d5760405162461bcd60e51b8152600401610b9f9190613074565b5060125483111561138f601254612240565b60405160200161139f9190612fb9565b604051602081830303815290604052906113cc5760405162461bcd60e51b8152600401610b9f9190613074565b506103e86113da848461314d565b111561144e5760405162461bcd60e51b815260206004820152603860248201527f53616c6520697320616c6d6f737420646f6e6520616e6420776520646f6e277460448201527f206861766520656e6f75676874204e465473206c6566742e00000000000000006064820152608401610b9f565b336000908152601b60205260408120805485929061146d90849061314d565b9091555061147d9050338461233e565b6103e861148a848461314d565b14156114a2576019805462ff00001916620300001790555b5050600160105550565b606060038054610a20906131db565b600f546001600160a01b031633146114e55760405162461bcd60e51b8152600401610b9f90613118565b80516110c59060169060208401906129a1565b6001600160a01b0382163314156115225760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600f546001600160a01b031633146115b85760405162461bcd60e51b8152600401610b9f90613118565b6019805460ff19166001179055565b600f546001600160a01b031633146115f15760405162461bcd60e51b8152600401610b9f90613118565b601355565b611601848484611e5d565b6001600160a01b0383163b15158015611623575061162184848484612358565b155b15611641576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60188054611654906131db565b80601f0160208091040260200160405190810160405280929190818152602001828054611680906131db565b80156116cd5780601f106116a2576101008083540402835291602001916116cd565b820191906000526020600020905b8154815290600101906020018083116116b057829003601f168201915b505050505081565b60606116e082611c69565b61172c5760405162461bcd60e51b815260206004820152601760248201527f54686973204e465420646f65736e27742065786973742e0000000000000000006044820152606401610b9f565b60195460ff166117c85760178054611743906131db565b80601f016020809104026020016040519081016040528092919081815260200182805461176f906131db565b80156117bc5780601f10611791576101008083540402835291602001916117bc565b820191906000526020600020905b81548152906001019060200180831161179f57829003601f168201915b50505050509050919050565b60006117d261244f565b905060008151116117f25760405180602001604052806000815250611820565b806117fc84612240565b601860405160200161181093929190612e4c565b6040516020818303038152906040525b9392505050565b600f546001600160a01b031633146118515760405162461bcd60e51b8152600401610b9f90613118565b60006118666001546000546000199190030190565b90506103e861187682600161314d565b11156118af5760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610b9f565b6110c582600161233e565b600f546001600160a01b031633146118e45760405162461bcd60e51b8152600401610b9f90613118565b80516110c59060189060208401906129a1565b600f546001600160a01b031633146119215760405162461bcd60e51b8152600401610b9f90613118565b601155565b600f546001600160a01b031633146119505760405162461bcd60e51b8152600401610b9f90613118565b6001600160a01b0381166119b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b9f565b6119be816121ee565b50565b600f546001600160a01b031633146119eb5760405162461bcd60e51b8152600401610b9f90613118565b60118190558251611a039060169060208601906129a1565b5081516116419060179060208501906129a1565b60026010541415611a6a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b9f565b6002601055600160195462010000900460ff166004811115611a8e57611a8e613271565b14611adb5760405162461bcd60e51b815260206004820152601c60248201527f50726573616c6520686173206e6f742073746172746564207965742e000000006044820152606401610b9f565b601354336000908152601a6020526040902054811190611afa90612240565b604051602001611b0a9190612f10565b60405160208183030381529060405290611b375760405162461bcd60e51b8152600401610b9f9190613074565b50601354811115611b49601354612240565b604051602001611b599190612fb9565b60405160208183030381529060405290611b865760405162461bcd60e51b8152600401610b9f9190613074565b50611b9233848461245e565b611bde5760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e207468652077686974656c697374000000006044820152606401610b9f565b601454611beb8282613179565b341015611c2f5760405162461bcd60e51b81526020600482015260126024820152712737ba1032b737bab3b43a10333ab732399760711b6044820152606401610b9f565b336000908152601a602052604081208054849290611c4e90849061314d565b90915550611c5e9050338361233e565b505060016010555050565b600081600111158015611c7d575060005482105b8015610a0b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0384166000908152600a602052604081205490918391611d289086613179565b611d329190613165565b611d3c9190613198565b949350505050565b80471015611d945760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b9f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611de1576040519150601f19603f3d011682016040523d82523d6000602084013e611de6565b606091505b5050905080610b705760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b9f565b6000611e68826120c5565b80519091506000906001600160a01b0316336001600160a01b03161480611e9657508151611e96903361091e565b80611eb1575033611ea684610aa3565b6001600160a01b0316145b905080611ed157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611f065760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611f2d57604051633a954ecd60e21b815260040160405180910390fd5b611f3d6000848460000151611ca2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661202957600054811015612029578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b709084906124df565b604080516060810182526000808252602082018190529181019190915281806001111580156120f5575060005481105b156121d557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906121d35780516001600160a01b031615612169579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156121ce579392505050565b612169565b505b604051636f96cda160e11b815260040160405180910390fd5b600f80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060816122645750506040805180820190915260018152600360fc1b602082015290565b8160005b811561228e578061227881613216565b91506122879050600a83613165565b9150612268565b60008167ffffffffffffffff8111156122a9576122a961329d565b6040519080825280601f01601f1916602001820160405280156122d3576020820181803683370190505b5090505b8415611d3c576122e8600183613198565b91506122f5600a86613231565b61230090603061314d565b60f81b81838151811061231557612315613287565b60200101906001600160f81b031916908160001a905350612337600a86613165565b94506122d7565b6110c58282604051806020016040528060008152506125b1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061238d90339089908890889060040161300f565b602060405180830381600087803b1580156123a757600080fd5b505af19250505080156123d7575060408051601f3d908101601f191682019092526123d491810190612d2c565b60015b612432573d808015612405576040519150601f19603f3d011682016040523d82523d6000602084013e61240a565b606091505b50805161242a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060168054610a20906131db565b6000611d3c6124a6856040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506125be92505050565b6000612534826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125cd9092919063ffffffff16565b805190915015610b7057808060200190518101906125529190612cd9565b610b705760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610b9f565b610b7083838360016125dc565b600061182082601154856127ad565b6060611d3c84846000856127c3565b6000546001600160a01b03851661260557604051622e076360e81b815260040160405180910390fd5b836126235760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156126d557506001600160a01b0387163b15155b1561275e575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127266000888480600101955088612358565b612743576040516368d2bf6b60e11b815260040160405180910390fd5b808214156126db57826000541461275957600080fd5b6127a4565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561275f575b5060005561206c565b6000826127ba85846128f4565b14949350505050565b6060824710156128245760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610b9f565b6001600160a01b0385163b61287b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b9f565b600080866001600160a01b031685876040516128979190612e30565b60006040518083038185875af1925050503d80600081146128d4576040519150601f19603f3d011682016040523d82523d6000602084013e6128d9565b606091505b50915091506128e9828286612968565b979650505050505050565b600081815b845181101561296057600085828151811061291657612916613287565b6020026020010151905080831161293c576000838152602082905260409020925061294d565b600081815260208490526040902092505b508061295881613216565b9150506128f9565b509392505050565b60608315612977575081611820565b8251156129875782518084602001fd5b8160405162461bcd60e51b8152600401610b9f9190613074565b8280546129ad906131db565b90600052602060002090601f0160209004810192826129cf5760008555612a15565b82601f106129e857805160ff1916838001178555612a15565b82800160010185558215612a15579182015b82811115612a155782518255916020019190600101906129fa565b50612a21929150612a25565b5090565b5b80821115612a215760008155600101612a26565b600067ffffffffffffffff80841115612a5557612a5561329d565b604051601f8501601f19908116603f01168101908282118183101715612a7d57612a7d61329d565b81604052809350858152868686011115612a9657600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612ac157600080fd5b61182083833560208501612a3a565b600060208284031215612ae257600080fd5b8135611820816132b3565b60008060408385031215612b0057600080fd5b8235612b0b816132b3565b91506020830135612b1b816132b3565b809150509250929050565b600080600060608486031215612b3b57600080fd5b8335612b46816132b3565b92506020840135612b56816132b3565b929592945050506040919091013590565b60008060008060808587031215612b7d57600080fd5b8435612b88816132b3565b93506020850135612b98816132b3565b925060408501359150606085013567ffffffffffffffff811115612bbb57600080fd5b8501601f81018713612bcc57600080fd5b612bdb87823560208401612a3a565b91505092959194509250565b60008060408385031215612bfa57600080fd5b8235612c05816132b3565b91506020830135612b1b816132c8565b60008060408385031215612c2857600080fd5b8235612c33816132b3565b946020939093013593505050565b600080600060408486031215612c5657600080fd5b833567ffffffffffffffff80821115612c6e57600080fd5b818601915086601f830112612c8257600080fd5b813581811115612c9157600080fd5b8760208260051b8501011115612ca657600080fd5b6020928301989097509590910135949350505050565b600060208284031215612cce57600080fd5b8135611820816132c8565b600060208284031215612ceb57600080fd5b8151611820816132c8565b600060208284031215612d0857600080fd5b5035919050565b600060208284031215612d2157600080fd5b8135611820816132d6565b600060208284031215612d3e57600080fd5b8151611820816132d6565b600060208284031215612d5b57600080fd5b813567ffffffffffffffff811115612d7257600080fd5b611d3c84828501612ab0565b600080600060608486031215612d9357600080fd5b833567ffffffffffffffff80821115612dab57600080fd5b612db787838801612ab0565b94506020860135915080821115612dcd57600080fd5b50612dda86828701612ab0565b925050604084013590509250925092565b600060208284031215612dfd57600080fd5b5051919050565b60008151808452612e1c8160208601602086016131af565b601f01601f19169290920160200192915050565b60008251612e428184602087016131af565b9190910192915050565b600084516020612e5f8285838a016131af565b855191840191612e728184848a016131af565b8554920191600090600181811c9080831680612e8f57607f831692505b858310811415612ead57634e487b7160e01b85526022600452602485fd5b808015612ec15760018114612ed257612eff565b60ff19851688528388019550612eff565b60008b81526020902060005b85811015612ef75781548a820152908401908801612ede565b505083880195505b50939b9a5050505050505050505050565b7002cb7ba9031b0b71037b7363c9033b2ba1607d1b815260008251612f3c8160118501602087016131af565b72204e4654206f6e207468652050726573616c6560681b6011939091019283015250602401919050565b7002cb7ba9031b0b71037b7363c9033b2ba1607d1b815260008251612f928160118501602087016131af565b6f204e4654206f6e207468652053616c6560801b6011939091019283015250602101919050565b7f596f752063616e2774206d696e74206d6f7265207468616e2000000000000000815260008251612ff18160198501602087016131af565b6620746f6b656e7360c81b6019939091019283015250602001919050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061304290830184612e04565b9695505050505050565b602081016005831061306e57634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006118206020830184612e04565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561316057613160613245565b500190565b6000826131745761317461325b565b500490565b600081600019048311821515161561319357613193613245565b500290565b6000828210156131aa576131aa613245565b500390565b60005b838110156131ca5781810151838201526020016131b2565b838111156116415750506000910152565b600181811c908216806131ef57607f821691505b6020821081141561321057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561322a5761322a613245565b5060010190565b6000826132405761324061325b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146119be57600080fd5b80151581146119be57600080fd5b6001600160e01b0319811681146119be57600080fdfea26469706673582212208536737799b5dc5b187a89ce2b5b1d8e12887b22eebd02f860850bb3ce337d6864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80638b83209b11610190578063c6682862116100dc578063da3ef23f11610095578063ebcea3db1161006f578063ebcea3db1461094c578063f2fde38b1461096c578063fa27a7261461098c578063fde5f548146109ac57600080fd5b8063da3ef23f146108ce578063e33b7de3146108ee578063e985e9c51461090357600080fd5b8063c6682862146107e0578063c87b56dd146107f5578063cbccefb214610815578063cbfc4bce14610842578063ce7c2ac214610862578063d79779b21461089857600080fd5b8063a0bcfc7f11610149578063b427963311610123578063b427963314610774578063b88d4fde14610794578063ba0c60c9146107b4578063bfaa9266146107ca57600080fd5b8063a0bcfc7f1461071f578063a22cb4651461073f578063a475b5dd1461075f57600080fd5b80638b83209b1461066d5780638ca887ca1461068d5780638da5cb5b146106a05780639147dd1b146106be57806395d89b41146106d45780639852595c146106e957600080fd5b80633a98ef391161024f578063549df2df116102085780636352211e116101e25780636352211e1461060257806370a0823114610622578063715018a61461064257806381a7927e1461065757600080fd5b8063549df2df146105a35780635accac99146105c35780635c975abb146105e357600080fd5b80633a98ef39146104ce5780633f5fbad0146104e3578063406072a91461050357806342842e0e1461054957806348b7504414610569578063518302271461058957600080fd5b806318160ddd116102a157806318160ddd1461041c57806319165587146104435780631dcfab39146104635780631f2898c31461048357806323b872dd1461049857806332cb6b0c146104b857600080fd5b806301ffc9a71461033657806306fdde031461036b578063081812fc1461038d578063095ea7b3146103c557806315c316fc146103e757806316c38b3c146103fc57600080fd5b36610331577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561034257600080fd5b50610356610351366004612d0f565b6109bf565b60405190151581526020015b60405180910390f35b34801561037757600080fd5b50610380610a11565b6040516103629190613074565b34801561039957600080fd5b506103ad6103a8366004612cf6565b610aa3565b6040516001600160a01b039091168152602001610362565b3480156103d157600080fd5b506103e56103e0366004612c15565b610ae7565b005b3480156103f357600080fd5b506103e5610b75565b34801561040857600080fd5b506103e5610417366004612cbc565b610bc3565b34801561042857600080fd5b5060015460005403600019015b604051908152602001610362565b34801561044f57600080fd5b506103e561045e366004612ad0565b610c07565b34801561046f57600080fd5b506103e561047e366004612cf6565b610d35565b34801561048f57600080fd5b506103e5610d64565b3480156104a457600080fd5b506103e56104b3366004612b26565b610e1c565b3480156104c457600080fd5b506104356103e881565b3480156104da57600080fd5b50600854610435565b3480156104ef57600080fd5b506103e56104fe366004612cf6565b610e27565b34801561050f57600080fd5b5061043561051e366004612aed565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b34801561055557600080fd5b506103e5610564366004612b26565b610e56565b34801561057557600080fd5b506103e5610584366004612aed565b610e71565b34801561059557600080fd5b506019546103569060ff1681565b3480156105af57600080fd5b506103e56105be366004612cf6565b611059565b3480156105cf57600080fd5b506103e56105de366004612d49565b611088565b3480156105ef57600080fd5b5060195461035690610100900460ff1681565b34801561060e57600080fd5b506103ad61061d366004612cf6565b6110c9565b34801561062e57600080fd5b5061043561063d366004612ad0565b6110db565b34801561064e57600080fd5b506103e561112a565b34801561066357600080fd5b5061043560155481565b34801561067957600080fd5b506103ad610688366004612cf6565b611160565b6103e561069b366004612cf6565b611190565b3480156106ac57600080fd5b50600f546001600160a01b03166103ad565b3480156106ca57600080fd5b5061043560145481565b3480156106e057600080fd5b506103806114ac565b3480156106f557600080fd5b50610435610704366004612ad0565b6001600160a01b03166000908152600b602052604090205490565b34801561072b57600080fd5b506103e561073a366004612d49565b6114bb565b34801561074b57600080fd5b506103e561075a366004612be7565b6114f8565b34801561076b57600080fd5b506103e561158e565b34801561078057600080fd5b506103e561078f366004612cf6565b6115c7565b3480156107a057600080fd5b506103e56107af366004612b67565b6115f6565b3480156107c057600080fd5b5061043560125481565b3480156107d657600080fd5b5061043560135481565b3480156107ec57600080fd5b50610380611647565b34801561080157600080fd5b50610380610810366004612cf6565b6116d5565b34801561082157600080fd5b506019546108359062010000900460ff1681565b604051610362919061304c565b34801561084e57600080fd5b506103e561085d366004612ad0565b611827565b34801561086e57600080fd5b5061043561087d366004612ad0565b6001600160a01b03166000908152600a602052604090205490565b3480156108a457600080fd5b506104356108b3366004612ad0565b6001600160a01b03166000908152600d602052604090205490565b3480156108da57600080fd5b506103e56108e9366004612d49565b6118ba565b3480156108fa57600080fd5b50600954610435565b34801561090f57600080fd5b5061035661091e366004612aed565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561095857600080fd5b506103e5610967366004612cf6565b6118f7565b34801561097857600080fd5b506103e5610987366004612ad0565b611926565b34801561099857600080fd5b506103e56109a7366004612d7e565b6119c1565b6103e56109ba366004612c41565b611a17565b60006001600160e01b031982166380ac58cd60e01b14806109f057506001600160e01b03198216635b5e139f60e01b145b80610a0b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610a20906131db565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4c906131db565b8015610a995780601f10610a6e57610100808354040283529160200191610a99565b820191906000526020600020905b815481529060010190602001808311610a7c57829003601f168201915b5050505050905090565b6000610aae82611c69565b610acb576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610af2826110c9565b9050806001600160a01b0316836001600160a01b03161415610b275760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b475750610b45813361091e565b155b15610b65576040516367d9dca160e11b815260040160405180910390fd5b610b70838383611ca2565b505050565b600f546001600160a01b03163314610ba85760405162461bcd60e51b8152600401610b9f90613118565b60405180910390fd5b601980546001919062ff0000191662010000835b0217905550565b600f546001600160a01b03163314610bed5760405162461bcd60e51b8152600401610b9f90613118565b601980549115156101000261ff0019909216919091179055565b6001600160a01b0381166000908152600a6020526040902054610c3c5760405162461bcd60e51b8152600401610b9f90613087565b6000610c4760095490565b610c51904761314d565b90506000610c7e8383610c79866001600160a01b03166000908152600b602052604090205490565b611cfe565b905080610c9d5760405162461bcd60e51b8152600401610b9f906130cd565b6001600160a01b0383166000908152600b602052604081208054839290610cc590849061314d565b925050819055508060096000828254610cde919061314d565b90915550610cee90508382611d44565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b600f546001600160a01b03163314610d5f5760405162461bcd60e51b8152600401610b9f90613118565b601555565b600f546001600160a01b03163314610d8e5760405162461bcd60e51b8152600401610b9f90613118565b600160195462010000900460ff166004811115610dad57610dad613271565b14610e045760405162461bcd60e51b815260206004820152602160248201527f4669727374207468652070726573616c652c207468656e207468652073616c656044820152601760f91b6064820152608401610b9f565b601980546002919062ff000019166201000083610bbc565b610b70838383611e5d565b600f546001600160a01b03163314610e515760405162461bcd60e51b8152600401610b9f90613118565b601455565b610b70838383604051806020016040528060008152506115f6565b6001600160a01b0381166000908152600a6020526040902054610ea65760405162461bcd60e51b8152600401610b9f90613087565b6001600160a01b0382166000908152600d60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b158015610efe57600080fd5b505afa158015610f12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f369190612deb565b610f40919061314d565b90506000610f798383610c7987876001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b905080610f985760405162461bcd60e51b8152600401610b9f906130cd565b6001600160a01b038085166000908152600e6020908152604080832093871683529290529081208054839290610fcf90849061314d565b90915550506001600160a01b0384166000908152600d602052604081208054839290610ffc90849061314d565b9091555061100d9050848483612073565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600f546001600160a01b031633146110835760405162461bcd60e51b8152600401610b9f90613118565b601255565b600f546001600160a01b031633146110b25760405162461bcd60e51b8152600401610b9f90613118565b80516110c59060179060208401906129a1565b5050565b60006110d4826120c5565b5192915050565b60006001600160a01b038216611104576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b600f546001600160a01b031633146111545760405162461bcd60e51b8152600401610b9f90613118565b61115e60006121ee565b565b6000600c828154811061117557611175613287565b6000918252602090912001546001600160a01b031692915050565b600260105414156111e35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b9f565b600260105560006111fd6001546000546000199190030190565b601554909150600360195462010000900460ff16600481111561122257611222613271565b14156112675760405162461bcd60e51b815260206004820152601460248201527329b7b9393c961037379027232a39903632b33a1760611b6044820152606401610b9f565b600260195462010000900460ff16600481111561128657611286613271565b146112d35760405162461bcd60e51b815260206004820181905260248201527f536f7272792c2073616c6520686173206e6f742073746172746564207965742e6044820152606401610b9f565b6112dd8382613179565b3410156113215760405162461bcd60e51b81526020600482015260126024820152712737ba1032b737bab3b43a10333ab732399760711b6044820152606401610b9f565b601254336000908152601b602052604090205481119061134090612240565b6040516020016113509190612f66565b6040516020818303038152906040529061137d5760405162461bcd60e51b8152600401610b9f9190613074565b5060125483111561138f601254612240565b60405160200161139f9190612fb9565b604051602081830303815290604052906113cc5760405162461bcd60e51b8152600401610b9f9190613074565b506103e86113da848461314d565b111561144e5760405162461bcd60e51b815260206004820152603860248201527f53616c6520697320616c6d6f737420646f6e6520616e6420776520646f6e277460448201527f206861766520656e6f75676874204e465473206c6566742e00000000000000006064820152608401610b9f565b336000908152601b60205260408120805485929061146d90849061314d565b9091555061147d9050338461233e565b6103e861148a848461314d565b14156114a2576019805462ff00001916620300001790555b5050600160105550565b606060038054610a20906131db565b600f546001600160a01b031633146114e55760405162461bcd60e51b8152600401610b9f90613118565b80516110c59060169060208401906129a1565b6001600160a01b0382163314156115225760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600f546001600160a01b031633146115b85760405162461bcd60e51b8152600401610b9f90613118565b6019805460ff19166001179055565b600f546001600160a01b031633146115f15760405162461bcd60e51b8152600401610b9f90613118565b601355565b611601848484611e5d565b6001600160a01b0383163b15158015611623575061162184848484612358565b155b15611641576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60188054611654906131db565b80601f0160208091040260200160405190810160405280929190818152602001828054611680906131db565b80156116cd5780601f106116a2576101008083540402835291602001916116cd565b820191906000526020600020905b8154815290600101906020018083116116b057829003601f168201915b505050505081565b60606116e082611c69565b61172c5760405162461bcd60e51b815260206004820152601760248201527f54686973204e465420646f65736e27742065786973742e0000000000000000006044820152606401610b9f565b60195460ff166117c85760178054611743906131db565b80601f016020809104026020016040519081016040528092919081815260200182805461176f906131db565b80156117bc5780601f10611791576101008083540402835291602001916117bc565b820191906000526020600020905b81548152906001019060200180831161179f57829003601f168201915b50505050509050919050565b60006117d261244f565b905060008151116117f25760405180602001604052806000815250611820565b806117fc84612240565b601860405160200161181093929190612e4c565b6040516020818303038152906040525b9392505050565b600f546001600160a01b031633146118515760405162461bcd60e51b8152600401610b9f90613118565b60006118666001546000546000199190030190565b90506103e861187682600161314d565b11156118af5760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610b9f565b6110c582600161233e565b600f546001600160a01b031633146118e45760405162461bcd60e51b8152600401610b9f90613118565b80516110c59060189060208401906129a1565b600f546001600160a01b031633146119215760405162461bcd60e51b8152600401610b9f90613118565b601155565b600f546001600160a01b031633146119505760405162461bcd60e51b8152600401610b9f90613118565b6001600160a01b0381166119b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b9f565b6119be816121ee565b50565b600f546001600160a01b031633146119eb5760405162461bcd60e51b8152600401610b9f90613118565b60118190558251611a039060169060208601906129a1565b5081516116419060179060208501906129a1565b60026010541415611a6a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b9f565b6002601055600160195462010000900460ff166004811115611a8e57611a8e613271565b14611adb5760405162461bcd60e51b815260206004820152601c60248201527f50726573616c6520686173206e6f742073746172746564207965742e000000006044820152606401610b9f565b601354336000908152601a6020526040902054811190611afa90612240565b604051602001611b0a9190612f10565b60405160208183030381529060405290611b375760405162461bcd60e51b8152600401610b9f9190613074565b50601354811115611b49601354612240565b604051602001611b599190612fb9565b60405160208183030381529060405290611b865760405162461bcd60e51b8152600401610b9f9190613074565b50611b9233848461245e565b611bde5760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e207468652077686974656c697374000000006044820152606401610b9f565b601454611beb8282613179565b341015611c2f5760405162461bcd60e51b81526020600482015260126024820152712737ba1032b737bab3b43a10333ab732399760711b6044820152606401610b9f565b336000908152601a602052604081208054849290611c4e90849061314d565b90915550611c5e9050338361233e565b505060016010555050565b600081600111158015611c7d575060005482105b8015610a0b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0384166000908152600a602052604081205490918391611d289086613179565b611d329190613165565b611d3c9190613198565b949350505050565b80471015611d945760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b9f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611de1576040519150601f19603f3d011682016040523d82523d6000602084013e611de6565b606091505b5050905080610b705760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b9f565b6000611e68826120c5565b80519091506000906001600160a01b0316336001600160a01b03161480611e9657508151611e96903361091e565b80611eb1575033611ea684610aa3565b6001600160a01b0316145b905080611ed157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611f065760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611f2d57604051633a954ecd60e21b815260040160405180910390fd5b611f3d6000848460000151611ca2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661202957600054811015612029578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b709084906124df565b604080516060810182526000808252602082018190529181019190915281806001111580156120f5575060005481105b156121d557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906121d35780516001600160a01b031615612169579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156121ce579392505050565b612169565b505b604051636f96cda160e11b815260040160405180910390fd5b600f80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060816122645750506040805180820190915260018152600360fc1b602082015290565b8160005b811561228e578061227881613216565b91506122879050600a83613165565b9150612268565b60008167ffffffffffffffff8111156122a9576122a961329d565b6040519080825280601f01601f1916602001820160405280156122d3576020820181803683370190505b5090505b8415611d3c576122e8600183613198565b91506122f5600a86613231565b61230090603061314d565b60f81b81838151811061231557612315613287565b60200101906001600160f81b031916908160001a905350612337600a86613165565b94506122d7565b6110c58282604051806020016040528060008152506125b1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061238d90339089908890889060040161300f565b602060405180830381600087803b1580156123a757600080fd5b505af19250505080156123d7575060408051601f3d908101601f191682019092526123d491810190612d2c565b60015b612432573d808015612405576040519150601f19603f3d011682016040523d82523d6000602084013e61240a565b606091505b50805161242a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060168054610a20906131db565b6000611d3c6124a6856040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506125be92505050565b6000612534826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125cd9092919063ffffffff16565b805190915015610b7057808060200190518101906125529190612cd9565b610b705760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610b9f565b610b7083838360016125dc565b600061182082601154856127ad565b6060611d3c84846000856127c3565b6000546001600160a01b03851661260557604051622e076360e81b815260040160405180910390fd5b836126235760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156126d557506001600160a01b0387163b15155b1561275e575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127266000888480600101955088612358565b612743576040516368d2bf6b60e11b815260040160405180910390fd5b808214156126db57826000541461275957600080fd5b6127a4565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561275f575b5060005561206c565b6000826127ba85846128f4565b14949350505050565b6060824710156128245760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610b9f565b6001600160a01b0385163b61287b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b9f565b600080866001600160a01b031685876040516128979190612e30565b60006040518083038185875af1925050503d80600081146128d4576040519150601f19603f3d011682016040523d82523d6000602084013e6128d9565b606091505b50915091506128e9828286612968565b979650505050505050565b600081815b845181101561296057600085828151811061291657612916613287565b6020026020010151905080831161293c576000838152602082905260409020925061294d565b600081815260208490526040902092505b508061295881613216565b9150506128f9565b509392505050565b60608315612977575081611820565b8251156129875782518084602001fd5b8160405162461bcd60e51b8152600401610b9f9190613074565b8280546129ad906131db565b90600052602060002090601f0160209004810192826129cf5760008555612a15565b82601f106129e857805160ff1916838001178555612a15565b82800160010185558215612a15579182015b82811115612a155782518255916020019190600101906129fa565b50612a21929150612a25565b5090565b5b80821115612a215760008155600101612a26565b600067ffffffffffffffff80841115612a5557612a5561329d565b604051601f8501601f19908116603f01168101908282118183101715612a7d57612a7d61329d565b81604052809350858152868686011115612a9657600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612ac157600080fd5b61182083833560208501612a3a565b600060208284031215612ae257600080fd5b8135611820816132b3565b60008060408385031215612b0057600080fd5b8235612b0b816132b3565b91506020830135612b1b816132b3565b809150509250929050565b600080600060608486031215612b3b57600080fd5b8335612b46816132b3565b92506020840135612b56816132b3565b929592945050506040919091013590565b60008060008060808587031215612b7d57600080fd5b8435612b88816132b3565b93506020850135612b98816132b3565b925060408501359150606085013567ffffffffffffffff811115612bbb57600080fd5b8501601f81018713612bcc57600080fd5b612bdb87823560208401612a3a565b91505092959194509250565b60008060408385031215612bfa57600080fd5b8235612c05816132b3565b91506020830135612b1b816132c8565b60008060408385031215612c2857600080fd5b8235612c33816132b3565b946020939093013593505050565b600080600060408486031215612c5657600080fd5b833567ffffffffffffffff80821115612c6e57600080fd5b818601915086601f830112612c8257600080fd5b813581811115612c9157600080fd5b8760208260051b8501011115612ca657600080fd5b6020928301989097509590910135949350505050565b600060208284031215612cce57600080fd5b8135611820816132c8565b600060208284031215612ceb57600080fd5b8151611820816132c8565b600060208284031215612d0857600080fd5b5035919050565b600060208284031215612d2157600080fd5b8135611820816132d6565b600060208284031215612d3e57600080fd5b8151611820816132d6565b600060208284031215612d5b57600080fd5b813567ffffffffffffffff811115612d7257600080fd5b611d3c84828501612ab0565b600080600060608486031215612d9357600080fd5b833567ffffffffffffffff80821115612dab57600080fd5b612db787838801612ab0565b94506020860135915080821115612dcd57600080fd5b50612dda86828701612ab0565b925050604084013590509250925092565b600060208284031215612dfd57600080fd5b5051919050565b60008151808452612e1c8160208601602086016131af565b601f01601f19169290920160200192915050565b60008251612e428184602087016131af565b9190910192915050565b600084516020612e5f8285838a016131af565b855191840191612e728184848a016131af565b8554920191600090600181811c9080831680612e8f57607f831692505b858310811415612ead57634e487b7160e01b85526022600452602485fd5b808015612ec15760018114612ed257612eff565b60ff19851688528388019550612eff565b60008b81526020902060005b85811015612ef75781548a820152908401908801612ede565b505083880195505b50939b9a5050505050505050505050565b7002cb7ba9031b0b71037b7363c9033b2ba1607d1b815260008251612f3c8160118501602087016131af565b72204e4654206f6e207468652050726573616c6560681b6011939091019283015250602401919050565b7002cb7ba9031b0b71037b7363c9033b2ba1607d1b815260008251612f928160118501602087016131af565b6f204e4654206f6e207468652053616c6560801b6011939091019283015250602101919050565b7f596f752063616e2774206d696e74206d6f7265207468616e2000000000000000815260008251612ff18160198501602087016131af565b6620746f6b656e7360c81b6019939091019283015250602001919050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061304290830184612e04565b9695505050505050565b602081016005831061306e57634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006118206020830184612e04565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561316057613160613245565b500190565b6000826131745761317461325b565b500490565b600081600019048311821515161561319357613193613245565b500290565b6000828210156131aa576131aa613245565b500390565b60005b838110156131ca5781810151838201526020016131b2565b838111156116415750506000910152565b600181811c908216806131ef57607f821691505b6020821081141561321057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561322a5761322a613245565b5060010190565b6000826132405761324061325b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146119be57600080fd5b80151581146119be57600080fd5b6001600160e01b0319811681146119be57600080fdfea26469706673582212208536737799b5dc5b187a89ce2b5b1d8e12887b22eebd02f860850bb3ce337d6864736f6c63430008070033

Deployed Bytecode Sourcemap

65526:11087:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58679:40;15403:10;58679:40;;;-1:-1:-1;;;;;12381:32:1;;;12363:51;;58709:9:0;12445:2:1;12430:18;;12423:34;12336:18;58679:40:0;;;;;;;65526:11087;;;;;31100:305;;;;;;;;;;-1:-1:-1;31100:305:0;;;;;:::i;:::-;;:::i;:::-;;;13405:14:1;;13398:22;13380:41;;13368:2;13353:18;31100:305:0;;;;;;;;34485:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35988:204::-;;;;;;;;;;-1:-1:-1;35988:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;12137:32:1;;;12119:51;;12107:2;12092:18;35988:204:0;11973:203:1;35551:371:0;;;;;;;;;;-1:-1:-1;35551:371:0;;;;;:::i;:::-;;:::i;:::-;;71025:89;;;;;;;;;;;;;:::i;68524:87::-;;;;;;;;;;-1:-1:-1;68524:87:0;;;;;:::i;:::-;;:::i;30349:303::-;;;;;;;;;;-1:-1:-1;67716:1:0;30603:12;30393:7;30587:13;:28;-1:-1:-1;;30587:46:0;30349:303;;;21339:25:1;;;21327:2;21312:18;30349:303:0;21193:177:1;60465:566:0;;;;;;;;;;-1:-1:-1;60465:566:0;;;;;:::i;:::-;;:::i;69670:102::-;;;;;;;;;;-1:-1:-1;69670:102:0;;;;;:::i;:::-;;:::i;71196:168::-;;;;;;;;;;;;;:::i;36845:170::-;;;;;;;;;;-1:-1:-1;36845:170:0;;;;;:::i;:::-;;:::i;65798:38::-;;;;;;;;;;;;65832:4;65798:38;;58810:91;;;;;;;;;;-1:-1:-1;58881:12:0;;58810:91;;69404:114;;;;;;;;;;-1:-1:-1;69404:114:0;;;;;:::i;:::-;;:::i;59939:135::-;;;;;;;;;;-1:-1:-1;59939:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;60036:21:0;;;60009:7;60036:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;59939:135;37086:185;;;;;;;;;;-1:-1:-1;37086:185:0;;;;;:::i;:::-;;:::i;61299:641::-;;;;;;;;;;-1:-1:-1;61299:641:0;;;;;:::i;:::-;;:::i;66477:28::-;;;;;;;;;;-1:-1:-1;66477:28:0;;;;;;;;68785:124;;;;;;;;;;-1:-1:-1;68785:124:0;;;;;:::i;:::-;;:::i;70273:126::-;;;;;;;;;;-1:-1:-1;70273:126:0;;;;;:::i;:::-;;:::i;66546:26::-;;;;;;;;;;-1:-1:-1;66546:26:0;;;;;;;;;;;34294:124;;;;;;;;;;-1:-1:-1;34294:124:0;;;;;:::i;:::-;;:::i;31469:206::-;;;;;;;;;;-1:-1:-1;31469:206:0;;;;;:::i;:::-;;:::i;17250:103::-;;;;;;;;;;;;;:::i;66140:34::-;;;;;;;;;;;;;;;;60165:100;;;;;;;;;;-1:-1:-1;60165:100:0;;;;;:::i;:::-;;:::i;72865:1572::-;;;;;;:::i;:::-;;:::i;16599:87::-;;;;;;;;;;-1:-1:-1;16672:6:0;;-1:-1:-1;;;;;16672:6:0;16599:87;;66064:37;;;;;;;;;;;;;;;;34654:104;;;;;;;;;;;;;:::i;59661:109::-;;;;;;;;;;-1:-1:-1;59661:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;59744:18:0;59717:7;59744:18;;;:9;:18;;;;;;;59661:109;70036:106;;;;;;;;;;-1:-1:-1;70036:106:0;;;;;:::i;:::-;;:::i;36264:279::-;;;;;;;;;;-1:-1:-1;36264:279:0;;;;;:::i;:::-;;:::i;69857:70::-;;;;;;;;;;;;;:::i;69090:153::-;;;;;;;;;;-1:-1:-1;69090:153:0;;;;;:::i;:::-;;:::i;37342:369::-;;;;;;;;;;-1:-1:-1;37342:369:0;;;;;:::i;:::-;;:::i;65893:32::-;;;;;;;;;;;;;;;;65982:40;;;;;;;;;;;;;;;;66396:37;;;;;;;;;;;;;:::i;76135:470::-;;;;;;;;;;-1:-1:-1;76135:470:0;;;;;:::i;:::-;;:::i;66748:24::-;;;;;;;;;;-1:-1:-1;66748:24:0;;;;;;;;;;;;;;;;;;:::i;74591:186::-;;;;;;;;;;-1:-1:-1;74591:186:0;;;;;:::i;:::-;;:::i;59457:105::-;;;;;;;;;;-1:-1:-1;59457:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;59538:16:0;59511:7;59538:16;;;:7;:16;;;;;;;59457:105;59247:119;;;;;;;;;;-1:-1:-1;59247:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;59332:26:0;59305:7;59332:26;;;:19;:26;;;;;;;59247:119;70816:124;;;;;;;;;;-1:-1:-1;70816:124:0;;;;;:::i;:::-;;:::i;58995:95::-;;;;;;;;;;-1:-1:-1;59068:14:0;;58995:95;;36614:164;;;;;;;;;;-1:-1:-1;36614:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36735:25:0;;;36711:4;36735:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36614:164;67844:107;;;;;;;;;;-1:-1:-1;67844:107:0;;;;;:::i;:::-;;:::i;17508:201::-;;;;;;;;;;-1:-1:-1;17508:201:0;;;;;:::i;:::-;;:::i;68145:222::-;;;;;;;;;;-1:-1:-1;68145:222:0;;;;;:::i;:::-;;:::i;71562:1169::-;;;;;;:::i;:::-;;:::i;31100:305::-;31202:4;-1:-1:-1;;;;;;31239:40:0;;-1:-1:-1;;;31239:40:0;;:105;;-1:-1:-1;;;;;;;31296:48:0;;-1:-1:-1;;;31296:48:0;31239:105;:158;;;-1:-1:-1;;;;;;;;;;5075:40:0;;;31361:36;31219:178;31100:305;-1:-1:-1;;31100:305:0:o;34485:100::-;34539:13;34572:5;34565:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34485:100;:::o;35988:204::-;36056:7;36081:16;36089:7;36081;:16::i;:::-;36076:64;;36106:34;;-1:-1:-1;;;36106:34:0;;;;;;;;;;;36076:64;-1:-1:-1;36160:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36160:24:0;;35988:204::o;35551:371::-;35624:13;35640:24;35656:7;35640:15;:24::i;:::-;35624:40;;35685:5;-1:-1:-1;;;;;35679:11:0;:2;-1:-1:-1;;;;;35679:11:0;;35675:48;;;35699:24;;-1:-1:-1;;;35699:24:0;;;;;;;;;;;35675:48;15403:10;-1:-1:-1;;;;;35740:21:0;;;;;;:63;;-1:-1:-1;35766:37:0;35783:5;15403:10;36614:164;:::i;35766:37::-;35765:38;35740:63;35736:138;;;35827:35;;-1:-1:-1;;;35827:35:0;;;;;;;;;;;35736:138;35886:28;35895:2;35899:7;35908:5;35886:8;:28::i;:::-;35613:309;35551:371;;:::o;71025:89::-;16672:6;;-1:-1:-1;;;;;16672:6:0;15403:10;16819:23;16811:68;;;;-1:-1:-1;;;16811:68:0;;;;;;;:::i;:::-;;;;;;;;;71079:11:::1;:27:::0;;71093:13:::1;::::0;71079:11;-1:-1:-1;;71079:27:0::1;::::0;71093:13;71079:27:::1;;;;;;71025:89::o:0;68524:87::-;16672:6;;-1:-1:-1;;;;;16672:6:0;15403:10;16819:23;16811:68;;;;-1:-1:-1;;;16811:68:0;;;;;;;:::i;:::-;68587:6:::1;:16:::0;;;::::1;;;;-1:-1:-1::0;;68587:16:0;;::::1;::::0;;;::::1;::::0;;68524:87::o;60465:566::-;-1:-1:-1;;;;;60541:16:0;;60560:1;60541:16;;;:7;:16;;;;;;60533:71;;;;-1:-1:-1;;;60533:71:0;;;;;;;:::i;:::-;60617:21;60665:15;59068:14;;;58995:95;60665:15;60641:39;;:21;:39;:::i;:::-;60617:63;;60691:15;60709:58;60725:7;60734:13;60749:17;60758:7;-1:-1:-1;;;;;59744:18:0;59717:7;59744:18;;;:9;:18;;;;;;;59661:109;60749:17;60709:15;:58::i;:::-;60691:76;-1:-1:-1;60788:12:0;60780:68;;;;-1:-1:-1;;;60780:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;60861:18:0;;;;;;:9;:18;;;;;:29;;60883:7;;60861:18;:29;;60883:7;;60861:29;:::i;:::-;;;;;;;;60919:7;60901:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;60939:35:0;;-1:-1:-1;60957:7:0;60966;60939:17;:35::i;:::-;60990:33;;;-1:-1:-1;;;;;12381:32:1;;12363:51;;12445:2;12430:18;;12423:34;;;60990:33:0;;12336:18:1;60990:33:0;;;;;;;60522:509;;60465:566;:::o;69670:102::-;16672:6;;-1:-1:-1;;;;;16672:6:0;15403:10;16819:23;16811:68;;;;-1:-1:-1;;;16811:68:0;;;;;;;:::i;:::-;69742:9:::1;:22:::0;69670:102::o;71196:168::-;16672:6;;-1:-1:-1;;;;;16672:6:0;15403:10;16819:23;16811:68;;;;-1:-1:-1;;;16811:68:0;;;;;;;:::i;:::-;71270:13:::1;71255:11;::::0;;;::::1;;;:28;::::0;::::1;;;;;;:::i;:::-;;71247:74;;;::::0;-1:-1:-1;;;71247:74:0;;16071:2:1;71247:74:0::1;::::0;::::1;16053:21:1::0;16110:2;16090:18;;;16083:30;16149:34;16129:18;;;16122:62;-1:-1:-1;;;16200:18:1;;;16193:31;16241:19;;71247:74:0::1;15869:397:1::0;71247:74:0::1;71332:11;:24:::0;;71346:10:::1;::::0;71332:11;-1:-1:-1;;71332:24:0::1;::::0;71346:10;71332:24:::1;::::0;36845:170;36979:28;36989:4;36995:2;36999:7;36979:9;:28::i;69404:114::-;16672:6;;-1:-1:-1;;;;;16672:6:0;15403:10;16819:23;16811:68;;;;-1:-1:-1;;;16811:68:0;;;;;;;:::i;:::-;69482:12:::1;:28:::0;69404:114::o;37086:185::-;37224:39;37241:4;37247:2;37251:7;37224:39;;;;;;;;;;;;:16;:39::i;61299:641::-;-1:-1:-1;;;;;61381:16:0;;61400:1;61381:16;;;:7;:16;;;;;;61373:71;;;;-1:-1:-1;;;61373:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;59332:26:0;;61457:21;59332:26;;;:19;:26;;;;;;61481:30;;-1:-1:-1;;;61481:30:0;;61505:4;61481:30;;;12119:51:1;-1:-1:-1;;;;;61481:15:0;;;;;12092:18:1;;61481:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;61457:77;;61545:15;61563:65;61579:7;61588:13;61603:24;61612:5;61619:7;-1:-1:-1;;;;;60036:21:0;;;60009:7;60036:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;59939:135;61563:65;61545:83;-1:-1:-1;61649:12:0;61641:68;;;;-1:-1:-1;;;61641:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61722:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;61756:7;;61722:21;:41;;61756:7;;61722:41;:::i;:::-;;;;-1:-1:-1;;;;;;;61774:26:0;;;;;;:19;:26;;;;;:37;;61804:7;;61774:26;:37;;61804:7;;61774:37;:::i;:::-;;;;-1:-1:-1;61824:47:0;;-1:-1:-1;61847:5:0;61854:7;61863;61824:22;:47::i;:::-;61887:45;;;-1:-1:-1;;;;;12381:32:1;;;12363:51;;12445:2;12430:18;;12423:34;;;61887:45:0;;;;;12336:18:1;61887:45:0;;;;;;;61362:578;;61299:641;;:::o;68785:124::-;16672:6;;-1:-1:-1;;;;;16672:6:0;15403:10;16819:23;16811:68;;;;-1:-1:-1;;;16811:68:0;;;;;;;:::i;:::-;68867:16:::1;:34:::0;68785:124::o;70273:126::-;16672:6;;-1:-1:-1;;;;;16672:6:0;15403:10;16819:23;16811:68;;;;-1:-1:-1;;;16811:68:0;;;;;;;:::i;:::-;70359:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;70273:126:::0;:::o;34294:124::-;34358:7;34385:20;34397:7;34385:11;:20::i;:::-;:25;;34294:124;-1:-1:-1;;34294:124:0:o;31469:206::-;31533:7;-1:-1:-1;;;;;31557:19:0;;31553:60;;31585:28;;-1:-1:-1;;;31585:28:0;;;;;;;;;;;31553:60;-1:-1:-1;;;;;;31639:19:0;;;;;:12;:19;;;;;:27;;;;31469:206::o;17250:103::-;16672:6;;-1:-1:-1;;;;;16672:6:0;15403:10;16819:23;16811:68;;;;-1:-1:-1;;;16811:68:0;;;;;;;:::i;:::-;17315:30:::1;17342:1;17315:18;:30::i;:::-;17250:103::o:0;60165:100::-;60216:7;60243;60251:5;60243:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;60243:14:0;;60165:100;-1:-1:-1;;60165:100:0:o;72865:1572::-;13697:1;14295:7;;:19;;14287:63;;;;-1:-1:-1;;;14287:63:0;;20674:2:1;14287:63:0;;;20656:21:1;20713:2;20693:18;;;20686:30;20752:33;20732:18;;;20725:61;20803:18;;14287:63:0;20472:355:1;14287:63:0;13697:1;14428:7;:18;72980::::1;73001:13;67716:1:::0;30603:12;30393:7;30587:13;-1:-1:-1;;30587:28:0;;;:46;;30349:303;73001:13:::1;73082:9;::::0;72980:34;;-1:-1:-1;73166:13:0::1;73151:11;::::0;;;::::1;;;:28;::::0;::::1;;;;;;:::i;:::-;;;73143:61;;;::::0;-1:-1:-1;;;73143:61:0;;18077:2:1;73143:61:0::1;::::0;::::1;18059:21:1::0;18116:2;18096:18;;;18089:30;-1:-1:-1;;;18135:18:1;;;18128:50;18195:18;;73143:61:0::1;17875:344:1::0;73143:61:0::1;73274:10;73259:11;::::0;;;::::1;;;:25;::::0;::::1;;;;;;:::i;:::-;;73251:70;;;::::0;-1:-1:-1;;;73251:70:0;;21034:2:1;73251:70:0::1;::::0;::::1;21016:21:1::0;;;21053:18;;;21046:30;21112:34;21092:18;;;21085:62;21164:18;;73251:70:0::1;20832:356:1::0;73251:70:0::1;73419:16;73427:8:::0;73419:5;:16:::1;:::i;:::-;73406:9;:29;;73398:60;;;::::0;-1:-1:-1;;;73398:60:0;;14558:2:1;73398:60:0::1;::::0;::::1;14540:21:1::0;14597:2;14577:18;;;14570:30;-1:-1:-1;;;14616:18:1;;;14609:48;14674:18;;73398:60:0::1;14356:342:1::0;73398:60:0::1;73563:16;::::0;73549:10:::1;73531:29;::::0;;;:17:::1;:29;::::0;;;;;:48;-1:-1:-1;73531:48:0;73635:34:::1;::::0;:16:::1;:34::i;:::-;73588:101;;;;;;;;:::i;:::-;;;;;;;;;;;;;73523:168;;;;;-1:-1:-1::0;;;73523:168:0::1;;;;;;;;:::i;:::-;;73725:16;;73713:8;:28;;73805:34;73822:16;;73805;:34::i;:::-;73750:100;;;;;;;;:::i;:::-;;;;;;;;;;;;;73705:147;;;;;-1:-1:-1::0;;;73705:147:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;65832:4:0::1;73931:24;73947:8:::0;73931:13;:24:::1;:::i;:::-;:38;;73923:107;;;::::0;-1:-1:-1;;;73923:107:0;;18426:2:1;73923:107:0::1;::::0;::::1;18408:21:1::0;18465:2;18445:18;;;18438:30;18504:34;18484:18;;;18477:62;18575:26;18555:18;;;18548:54;18619:19;;73923:107:0::1;18224:420:1::0;73923:107:0::1;74136:10;74118:29;::::0;;;:17:::1;:29;::::0;;;;:41;;74151:8;;74118:29;:41:::1;::::0;74151:8;;74118:41:::1;:::i;:::-;::::0;;;-1:-1:-1;74220:31:0::1;::::0;-1:-1:-1;74230:10:0::1;74242:8:::0;74220:9:::1;:31::i;:::-;65832:4;74333:24;74349:8:::0;74333:13;:24:::1;:::i;:::-;:38;74330:100;;;74388:11;:27:::0;;-1:-1:-1;;74388:27:0::1;::::0;::::1;::::0;;74330:100:::1;-1:-1:-1::0;;13653:1:0;14607:7;:22;-1:-1:-1;72865:1572:0:o;34654:104::-;34710:13;34743:7;34736:14;;;;;:::i;70036:106::-;16672:6;;-1:-1:-1;;;;;16672:6:0;15403:10;16819:23;16811:68;;;;-1:-1:-1;;;16811:68:0;;;;;;;:::i;:::-;70113:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;36264:279::-:0;-1:-1:-1;;;;;36355:24:0;;15403:10;36355:24;36351:54;;;36388:17;;-1:-1:-1;;;36388:17:0;;;;;;;;;;;36351:54;15403:10;36418:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36418:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36418:53:0;;;;;;;;;;36487:48;;13380:41:1;;;36418:42:0;;15403:10;36487:48;;13353:18:1;36487:48:0;;;;;;;36264:279;;:::o;69857:70::-;16672:6;;-1:-1:-1;;;;;16672:6:0;15403:10;16819:23;16811:68;;;;-1:-1:-1;;;16811:68:0;;;;;;;:::i;:::-;69904:8:::1;:15:::0;;-1:-1:-1;;69904:15:0::1;69915:4;69904:15;::::0;;69857:70::o;69090:153::-;16672:6;;-1:-1:-1;;;;;16672:6:0;15403:10;16819:23;16811:68;;;;-1:-1:-1;;;16811:68:0;;;;;;;:::i;:::-;69186:24:::1;:49:::0;69090:153::o;37342:369::-;37509:28;37519:4;37525:2;37529:7;37509:9;:28::i;:::-;-1:-1:-1;;;;;37552:13:0;;19595:19;:23;;37552:76;;;;;37572:56;37603:4;37609:2;37613:7;37622:5;37572:30;:56::i;:::-;37571:57;37552:76;37548:156;;;37652:40;;-1:-1:-1;;;37652:40:0;;;;;;;;;;;37548:156;37342:369;;;;:::o;66396:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;76135:470::-;76205:13;76239:15;76247:6;76239:7;:15::i;:::-;76231:51;;;;-1:-1:-1;;;76231:51:0;;15312:2:1;76231:51:0;;;15294:21:1;15351:2;15331:18;;;15324:30;15390:25;15370:18;;;15363:53;15433:18;;76231:51:0;15110:347:1;76231:51:0;76296:8;;;;76293:70;;76337:14;76330:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76135:470;;;:::o;76293:70::-;76383:28;76414:10;:8;:10::i;:::-;76383:41;;76487:1;76462:14;76456:28;:32;:141;;;;;;;;;;;;;;;;;76529:14;76545:17;:6;:15;:17::i;:::-;76564:13;76512:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76456:141;76435:162;76135:470;-1:-1:-1;;;76135:470:0:o;74591:186::-;16672:6;;-1:-1:-1;;;;;16672:6:0;15403:10;16819:23;16811:68;;;;-1:-1:-1;;;16811:68:0;;;;;;;:::i;:::-;74653:11:::1;74667:13;67716:1:::0;30603:12;30393:7;30587:13;-1:-1:-1;;30587:28:0;;;:46;;30349:303;74667:13:::1;74653:27:::0;-1:-1:-1;65832:4:0::1;74699:10;74653:27:::0;74708:1:::1;74699:10;:::i;:::-;:24;;74691:45;;;::::0;-1:-1:-1;;;74691:45:0;;19569:2:1;74691:45:0::1;::::0;::::1;19551:21:1::0;19608:1;19588:18;;;19581:29;-1:-1:-1;;;19626:18:1;;;19619:38;19674:18;;74691:45:0::1;19367:331:1::0;74691:45:0::1;74747:22;74757:8;74767:1;74747:9;:22::i;70816:124::-:0;16672:6;;-1:-1:-1;;;;;16672:6:0;15403:10;16819:23;16811:68;;;;-1:-1:-1;;;16811:68:0;;;;;;;:::i;:::-;70902:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;67844:107::-:0;16672:6;;-1:-1:-1;;;;;16672:6:0;15403:10;16819:23;16811:68;;;;-1:-1:-1;;;16811:68:0;;;;;;;:::i;:::-;67924:2:::1;:19:::0;67844:107::o;17508:201::-;16672:6;;-1:-1:-1;;;;;16672:6:0;15403:10;16819:23;16811:68;;;;-1:-1:-1;;;16811:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17597:22:0;::::1;17589:73;;;::::0;-1:-1:-1;;;17589:73:0;;14905:2:1;17589:73:0::1;::::0;::::1;14887:21:1::0;14944:2;14924:18;;;14917:30;14983:34;14963:18;;;14956:62;-1:-1:-1;;;15034:18:1;;;15027:36;15080:19;;17589:73:0::1;14703:402:1::0;17589:73:0::1;17673:28;17692:8;17673:18;:28::i;:::-;17508:201:::0;:::o;68145:222::-;16672:6;;-1:-1:-1;;;;;16672:6:0;15403:10;16819:23;16811:68;;;;-1:-1:-1;;;16811:68:0;;;;;;;:::i;:::-;68268:2:::1;:16:::0;;;68295:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;68327:32:0;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;71562:1169::-:0;13697:1;14295:7;;:19;;14287:63;;;;-1:-1:-1;;;14287:63:0;;20674:2:1;14287:63:0;;;20656:21:1;20713:2;20693:18;;;20686:30;20752:33;20732:18;;;20725:61;20803:18;;14287:63:0;20472:355:1;14287:63:0;13697:1;14428:7;:18;71732:13:::1;71717:11;::::0;;;::::1;;;:28;::::0;::::1;;;;;;:::i;:::-;;71709:69;;;::::0;-1:-1:-1;;;71709:69:0;;18851:2:1;71709:69:0::1;::::0;::::1;18833:21:1::0;18890:2;18870:18;;;18863:30;18929;18909:18;;;18902:58;18977:18;;71709:69:0::1;18649:352:1::0;71709:69:0::1;71885:24;::::0;71871:10:::1;71857:25;::::0;;;:13:::1;:25;::::0;;;;;:52;-1:-1:-1;71857:52:0;71965:42:::1;::::0;:16:::1;:42::i;:::-;71918:112;;;;;;;;:::i;:::-;;;;;;;;;;;;;71849:183;;;;;-1:-1:-1::0;;;71849:183:0::1;;;;;;;;:::i;:::-;;72065:24;;72053:8;:36;;72153:42;72170:24;;72153:16;:42::i;:::-;72098:108;;;;;;;;:::i;:::-;;;;;;;;;;;;;72045:163;;;;;-1:-1:-1::0;;;72045:163:0::1;;;;;;;;:::i;:::-;;72272:33;72286:10;72298:6;;72272:13;:33::i;:::-;72264:74;;;::::0;-1:-1:-1;;;72264:74:0;;14201:2:1;72264:74:0::1;::::0;::::1;14183:21:1::0;14240:2;14220:18;;;14213:30;14279;14259:18;;;14252:58;14327:18;;72264:74:0::1;13999:352:1::0;72264:74:0::1;72418:12;::::0;72508:16:::1;72516:8:::0;72418:12;72508:16:::1;:::i;:::-;72495:9;:29;;72487:60;;;::::0;-1:-1:-1;;;72487:60:0;;14558:2:1;72487:60:0::1;::::0;::::1;14540:21:1::0;14597:2;14577:18;;;14570:30;-1:-1:-1;;;14616:18:1;;;14609:48;14674:18;;72487:60:0::1;14356:342:1::0;72487:60:0::1;72629:10;72615:25;::::0;;;:13:::1;:25;::::0;;;;:37;;72644:8;;72615:25;:37:::1;::::0;72644:8;;72615:37:::1;:::i;:::-;::::0;;;-1:-1:-1;72692:31:0::1;::::0;-1:-1:-1;72702:10:0::1;72714:8:::0;72692:9:::1;:31::i;:::-;-1:-1:-1::0;;13653:1:0;14607:7;:22;-1:-1:-1;;71562:1169:0:o;37966:187::-;38023:4;38066:7;67716:1;38047:26;;:53;;;;;38087:13;;38077:7;:23;38047:53;:98;;;;-1:-1:-1;;38118:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;38118:27:0;;;;38117:28;;37966:187::o;45577:196::-;45692:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45692:29:0;-1:-1:-1;;;;;45692:29:0;;;;;;;;;45737:28;;45692:24;;45737:28;;;;;;;45577:196;;;:::o;62118:248::-;62328:12;;-1:-1:-1;;;;;62308:16:0;;62264:7;62308:16;;;:7;:16;;;;;;62264:7;;62343:15;;62292:32;;:13;:32;:::i;:::-;62291:49;;;;:::i;:::-;:67;;;;:::i;:::-;62284:74;62118:248;-1:-1:-1;;;;62118:248:0:o;20561:317::-;20676:6;20651:21;:31;;20643:73;;;;-1:-1:-1;;;20643:73:0;;16900:2:1;20643:73:0;;;16882:21:1;16939:2;16919:18;;;16912:30;16978:31;16958:18;;;16951:59;17027:18;;20643:73:0;16698:353:1;20643:73:0;20730:12;20748:9;-1:-1:-1;;;;;20748:14:0;20770:6;20748:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20729:52;;;20800:7;20792:78;;;;-1:-1:-1;;;20792:78:0;;16473:2:1;20792:78:0;;;16455:21:1;16512:2;16492:18;;;16485:30;16551:34;16531:18;;;16524:62;16622:28;16602:18;;;16595:56;16668:19;;20792:78:0;16271:422:1;41079:2112:0;41194:35;41232:20;41244:7;41232:11;:20::i;:::-;41307:18;;41194:58;;-1:-1:-1;41265:22:0;;-1:-1:-1;;;;;41291:34:0;15403:10;-1:-1:-1;;;;;41291:34:0;;:101;;;-1:-1:-1;41359:18:0;;41342:50;;15403:10;36614:164;:::i;41342:50::-;41291:154;;;-1:-1:-1;15403:10:0;41409:20;41421:7;41409:11;:20::i;:::-;-1:-1:-1;;;;;41409:36:0;;41291:154;41265:181;;41464:17;41459:66;;41490:35;;-1:-1:-1;;;41490:35:0;;;;;;;;;;;41459:66;41562:4;-1:-1:-1;;;;;41540:26:0;:13;:18;;;-1:-1:-1;;;;;41540:26:0;;41536:67;;41575:28;;-1:-1:-1;;;41575:28:0;;;;;;;;;;;41536:67;-1:-1:-1;;;;;41618:16:0;;41614:52;;41643:23;;-1:-1:-1;;;41643:23:0;;;;;;;;;;;41614:52;41787:49;41804:1;41808:7;41817:13;:18;;;41787:8;:49::i;:::-;-1:-1:-1;;;;;42132:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;42132:31:0;;;;;;;-1:-1:-1;;42132:31:0;;;;;;;42178:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42178:29:0;;;;;;;;;;;42224:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42269:61:0;;;;-1:-1:-1;;;42314:15:0;42269:61;;;;;;;;;;;42604:11;;;42634:24;;;;;:29;42604:11;;42634:29;42630:445;;42859:13;;42845:11;:27;42841:219;;;42929:18;;;42897:24;;;:11;:24;;;;;;;;:50;;43012:28;;;;42970:70;;-1:-1:-1;;;42970:70:0;-1:-1:-1;;;;;;42970:70:0;;;-1:-1:-1;;;;;42897:50:0;;;42970:70;;;;;;;42841:219;42107:979;43122:7;43118:2;-1:-1:-1;;;;;43103:27:0;43112:4;-1:-1:-1;;;;;43103:27:0;;;;;;;;;;;43141:42;41183:2008;;41079:2112;;;:::o;52139:211::-;52283:58;;;-1:-1:-1;;;;;12381:32:1;;52283:58:0;;;12363:51:1;12430:18;;;;12423:34;;;52283:58:0;;;;;;;;;;12336:18:1;;;;52283:58:0;;;;;;;;-1:-1:-1;;;;;52283:58:0;-1:-1:-1;;;52283:58:0;;;52256:86;;52276:5;;52256:19;:86::i;33124:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;33234:7:0;;67716:1;33283:23;;:47;;;;;33317:13;;33310:4;:20;33283:47;33279:886;;;33351:31;33385:17;;;:11;:17;;;;;;;;;33351:51;;;;;;;;;-1:-1:-1;;;;;33351:51:0;;;;-1:-1:-1;;;33351:51:0;;;;;;;;;;;-1:-1:-1;;;33351:51:0;;;;;;;;;;;;;;33421:729;;33471:14;;-1:-1:-1;;;;;33471:28:0;;33467:101;;33535:9;33124:1108;-1:-1:-1;;;33124:1108:0:o;33467:101::-;-1:-1:-1;;;33910:6:0;33955:17;;;;:11;:17;;;;;;;;;33943:29;;;;;;;;;-1:-1:-1;;;;;33943:29:0;;;;;-1:-1:-1;;;33943:29:0;;;;;;;;;;;-1:-1:-1;;;33943:29:0;;;;;;;;;;;;;34003:28;33999:109;;34071:9;33124:1108;-1:-1:-1;;;33124:1108:0:o;33999:109::-;33870:261;;;33332:833;33279:886;34193:31;;-1:-1:-1;;;34193:31:0;;;;;;;;;;;17869:191;17962:6;;;-1:-1:-1;;;;;17979:17:0;;;-1:-1:-1;;;;;;17979:17:0;;;;;;;18012:40;;17962:6;;;17979:17;17962:6;;18012:40;;17943:16;;18012:40;17932:128;17869:191;:::o;394:723::-;450:13;671:10;667:53;;-1:-1:-1;;698:10:0;;;;;;;;;;;;-1:-1:-1;;;698:10:0;;;;;394:723::o;667:53::-;745:5;730:12;786:78;793:9;;786:78;;819:8;;;;:::i;:::-;;-1:-1:-1;842:10:0;;-1:-1:-1;850:2:0;842:10;;:::i;:::-;;;786:78;;;874:19;906:6;896:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;896:17:0;;874:39;;924:154;931:10;;924:154;;958:11;968:1;958:11;;:::i;:::-;;-1:-1:-1;1027:10:0;1035:2;1027:5;:10;:::i;:::-;1014:24;;:2;:24;:::i;:::-;1001:39;;984:6;991;984:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;984:56:0;;;;;;;;-1:-1:-1;1055:11:0;1064:2;1055:11;;:::i;:::-;;;924:154;;38161:104;38230:27;38240:2;38244:8;38230:27;;;;;;;;;;;;:9;:27::i;46265:667::-;46449:72;;-1:-1:-1;;;46449:72:0;;46428:4;;-1:-1:-1;;;;;46449:36:0;;;;;:72;;15403:10;;46500:4;;46506:7;;46515:5;;46449:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46449:72:0;;;;;;;;-1:-1:-1;;46449:72:0;;;;;;;;;;;;:::i;:::-;;;46445:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46683:13:0;;46679:235;;46729:40;;-1:-1:-1;;;46729:40:0;;;;;;;;;;;46679:235;46872:6;46866:13;46857:6;46853:2;46849:15;46842:38;46445:480;-1:-1:-1;;;;;;46568:55:0;-1:-1:-1;;;46568:55:0;;-1:-1:-1;46265:667:0;;;;;;:::o;70531:108::-;70591:13;70624:7;70617:14;;;;;:::i;75039:162::-;75127:4;75164:29;75172:14;75178:7;75449:25;;-1:-1:-1;;8030:2:1;8026:15;;;8022:53;75449:25:0;;;8010:66:1;75412:7:0;;8092:12:1;;75449:25:0;;;;;;;;;;;;75439:36;;;;;;75432:43;;75358:125;;;;75172:14;75187:5;;75164:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;75164:7:0;;-1:-1:-1;;;75164:29:0:i;54712:716::-;55136:23;55162:69;55190:4;55162:69;;;;;;;;;;;;;;;;;55170:5;-1:-1:-1;;;;;55162:27:0;;;:69;;;;;:::i;:::-;55246:17;;55136:95;;-1:-1:-1;55246:21:0;55242:179;;55343:10;55332:30;;;;;;;;;;;;:::i;:::-;55324:85;;;;-1:-1:-1;;;55324:85:0;;20263:2:1;55324:85:0;;;20245:21:1;20302:2;20282:18;;;20275:30;20341:34;20321:18;;;20314:62;-1:-1:-1;;;20392:18:1;;;20385:40;20442:19;;55324:85:0;20061:406:1;38628:163:0;38751:32;38757:2;38761:8;38771:5;38778:4;38751:5;:32::i;75778:144::-;75855:4;75879:35;75898:5;75905:2;;75909:4;75879:18;:35::i;22045:229::-;22182:12;22214:52;22236:6;22244:4;22250:1;22253:12;22214:21;:52::i;39050:1775::-;39189:20;39212:13;-1:-1:-1;;;;;39240:16:0;;39236:48;;39265:19;;-1:-1:-1;;;39265:19:0;;;;;;;;;;;39236:48;39299:13;39295:44;;39321:18;;-1:-1:-1;;;39321:18:0;;;;;;;;;;;39295:44;-1:-1:-1;;;;;39690:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;39749:49:0;;39690:44;;;;;;;;39749:49;;;;-1:-1:-1;;39690:44:0;;;;;;39749:49;;;;;;;;;;;;;;;;39815:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39865:66:0;;;;-1:-1:-1;;;39915:15:0;39865:66;;;;;;;;;;39815:25;40012:23;;;40056:4;:23;;;;-1:-1:-1;;;;;;40064:13:0;;19595:19;:23;;40064:15;40052:641;;;40100:314;40131:38;;40156:12;;-1:-1:-1;;;;;40131:38:0;;;40148:1;;40131:38;;40148:1;;40131:38;40197:69;40236:1;40240:2;40244:14;;;;;;40260:5;40197:30;:69::i;:::-;40192:174;;40302:40;;-1:-1:-1;;;40302:40:0;;;;;;;;;;;40192:174;40409:3;40393:12;:19;;40100:314;;40495:12;40478:13;;:29;40474:43;;40509:8;;;40474:43;40052:641;;;40558:120;40589:40;;40614:14;;;;;-1:-1:-1;;;;;40589:40:0;;;40606:1;;40589:40;;40606:1;;40589:40;40673:3;40657:12;:19;;40558:120;;40052:641;-1:-1:-1;40707:13:0;:28;40757:60;37342:369;63961:190;64086:4;64139;64110:25;64123:5;64130:4;64110:12;:25::i;:::-;:33;;63961:190;-1:-1:-1;;;;63961:190:0:o;23165:510::-;23335:12;23393:5;23368:21;:30;;23360:81;;;;-1:-1:-1;;;23360:81:0;;17258:2:1;23360:81:0;;;17240:21:1;17297:2;17277:18;;;17270:30;17336:34;17316:18;;;17309:62;-1:-1:-1;;;17387:18:1;;;17380:36;17433:19;;23360:81:0;17056:402:1;23360:81:0;-1:-1:-1;;;;;19595:19:0;;;23452:60;;;;-1:-1:-1;;;23452:60:0;;19905:2:1;23452:60:0;;;19887:21:1;19944:2;19924:18;;;19917:30;19983:31;19963:18;;;19956:59;20032:18;;23452:60:0;19703:353:1;23452:60:0;23526:12;23540:23;23567:6;-1:-1:-1;;;;;23567:11:0;23586:5;23593:4;23567:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23525:73;;;;23616:51;23633:7;23642:10;23654:12;23616:16;:51::i;:::-;23609:58;23165:510;-1:-1:-1;;;;;;;23165:510:0:o;64513:675::-;64596:7;64639:4;64596:7;64654:497;64678:5;:12;64674:1;:16;64654:497;;;64712:20;64735:5;64741:1;64735:8;;;;;;;;:::i;:::-;;;;;;;64712:31;;64778:12;64762;:28;64758:382;;65264:13;65314:15;;;65350:4;65343:15;;;65397:4;65381:21;;64890:57;;64758:382;;;65264:13;65314:15;;;65350:4;65343:15;;;65397:4;65381:21;;65067:57;;64758:382;-1:-1:-1;64692:3:0;;;;:::i;:::-;;;;64654:497;;;-1:-1:-1;65168:12:0;64513:675;-1:-1:-1;;;64513:675:0:o;25851:712::-;26001:12;26030:7;26026:530;;;-1:-1:-1;26061:10:0;26054:17;;26026:530;26175:17;;:21;26171:374;;26373:10;26367:17;26434:15;26421:10;26417:2;26413:19;26406:44;26171:374;26516:12;26509:20;;-1:-1:-1;;;26509:20:0;;;;;;;;:::i;-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:221::-;693:5;746:3;739:4;731:6;727:17;723:27;713:55;;764:1;761;754:12;713:55;786:79;861:3;852:6;839:20;832:4;824:6;820:17;786:79;:::i;876:247::-;935:6;988:2;976:9;967:7;963:23;959:32;956:52;;;1004:1;1001;994:12;956:52;1043:9;1030:23;1062:31;1087:5;1062:31;:::i;1388:388::-;1456:6;1464;1517:2;1505:9;1496:7;1492:23;1488:32;1485:52;;;1533:1;1530;1523:12;1485:52;1572:9;1559:23;1591:31;1616:5;1591:31;:::i;:::-;1641:5;-1:-1:-1;1698:2:1;1683:18;;1670:32;1711:33;1670:32;1711:33;:::i;:::-;1763:7;1753:17;;;1388:388;;;;;:::o;1781:456::-;1858:6;1866;1874;1927:2;1915:9;1906:7;1902:23;1898:32;1895:52;;;1943:1;1940;1933:12;1895:52;1982:9;1969:23;2001:31;2026:5;2001:31;:::i;:::-;2051:5;-1:-1:-1;2108:2:1;2093:18;;2080:32;2121:33;2080:32;2121:33;:::i;:::-;1781:456;;2173:7;;-1:-1:-1;;;2227:2:1;2212:18;;;;2199:32;;1781:456::o;2242:794::-;2337:6;2345;2353;2361;2414:3;2402:9;2393:7;2389:23;2385:33;2382:53;;;2431:1;2428;2421:12;2382:53;2470:9;2457:23;2489:31;2514:5;2489:31;:::i;:::-;2539:5;-1:-1:-1;2596:2:1;2581:18;;2568:32;2609:33;2568:32;2609:33;:::i;:::-;2661:7;-1:-1:-1;2715:2:1;2700:18;;2687:32;;-1:-1:-1;2770:2:1;2755:18;;2742:32;2797:18;2786:30;;2783:50;;;2829:1;2826;2819:12;2783:50;2852:22;;2905:4;2897:13;;2893:27;-1:-1:-1;2883:55:1;;2934:1;2931;2924:12;2883:55;2957:73;3022:7;3017:2;3004:16;2999:2;2995;2991:11;2957:73;:::i;:::-;2947:83;;;2242:794;;;;;;;:::o;3041:382::-;3106:6;3114;3167:2;3155:9;3146:7;3142:23;3138:32;3135:52;;;3183:1;3180;3173:12;3135:52;3222:9;3209:23;3241:31;3266:5;3241:31;:::i;:::-;3291:5;-1:-1:-1;3348:2:1;3333:18;;3320:32;3361:30;3320:32;3361:30;:::i;3428:315::-;3496:6;3504;3557:2;3545:9;3536:7;3532:23;3528:32;3525:52;;;3573:1;3570;3563:12;3525:52;3612:9;3599:23;3631:31;3656:5;3631:31;:::i;:::-;3681:5;3733:2;3718:18;;;;3705:32;;-1:-1:-1;;;3428:315:1:o;3748:689::-;3843:6;3851;3859;3912:2;3900:9;3891:7;3887:23;3883:32;3880:52;;;3928:1;3925;3918:12;3880:52;3968:9;3955:23;3997:18;4038:2;4030:6;4027:14;4024:34;;;4054:1;4051;4044:12;4024:34;4092:6;4081:9;4077:22;4067:32;;4137:7;4130:4;4126:2;4122:13;4118:27;4108:55;;4159:1;4156;4149:12;4108:55;4199:2;4186:16;4225:2;4217:6;4214:14;4211:34;;;4241:1;4238;4231:12;4211:34;4296:7;4289:4;4279:6;4276:1;4272:14;4268:2;4264:23;4260:34;4257:47;4254:67;;;4317:1;4314;4307:12;4254:67;4348:4;4340:13;;;;4372:6;;-1:-1:-1;4410:20:1;;;;4397:34;;3748:689;-1:-1:-1;;;;3748:689:1:o;4442:241::-;4498:6;4551:2;4539:9;4530:7;4526:23;4522:32;4519:52;;;4567:1;4564;4557:12;4519:52;4606:9;4593:23;4625:28;4647:5;4625:28;:::i;4688:245::-;4755:6;4808:2;4796:9;4787:7;4783:23;4779:32;4776:52;;;4824:1;4821;4814:12;4776:52;4856:9;4850:16;4875:28;4897:5;4875:28;:::i;4938:180::-;4997:6;5050:2;5038:9;5029:7;5025:23;5021:32;5018:52;;;5066:1;5063;5056:12;5018:52;-1:-1:-1;5089:23:1;;4938:180;-1:-1:-1;4938:180:1:o;5123:245::-;5181:6;5234:2;5222:9;5213:7;5209:23;5205:32;5202:52;;;5250:1;5247;5240:12;5202:52;5289:9;5276:23;5308:30;5332:5;5308:30;:::i;5373:249::-;5442:6;5495:2;5483:9;5474:7;5470:23;5466:32;5463:52;;;5511:1;5508;5501:12;5463:52;5543:9;5537:16;5562:30;5586:5;5562:30;:::i;6302:322::-;6371:6;6424:2;6412:9;6403:7;6399:23;6395:32;6392:52;;;6440:1;6437;6430:12;6392:52;6480:9;6467:23;6513:18;6505:6;6502:30;6499:50;;;6545:1;6542;6535:12;6499:50;6568;6610:7;6601:6;6590:9;6586:22;6568:50;:::i;6629:611::-;6726:6;6734;6742;6795:2;6783:9;6774:7;6770:23;6766:32;6763:52;;;6811:1;6808;6801:12;6763:52;6851:9;6838:23;6880:18;6921:2;6913:6;6910:14;6907:34;;;6937:1;6934;6927:12;6907:34;6960:50;7002:7;6993:6;6982:9;6978:22;6960:50;:::i;:::-;6950:60;;7063:2;7052:9;7048:18;7035:32;7019:48;;7092:2;7082:8;7079:16;7076:36;;;7108:1;7105;7098:12;7076:36;;7131:52;7175:7;7164:8;7153:9;7149:24;7131:52;:::i;:::-;7121:62;;;7230:2;7219:9;7215:18;7202:32;7192:42;;6629:611;;;;;:::o;7430:184::-;7500:6;7553:2;7541:9;7532:7;7528:23;7524:32;7521:52;;;7569:1;7566;7559:12;7521:52;-1:-1:-1;7592:16:1;;7430:184;-1:-1:-1;7430:184:1:o;7619:257::-;7660:3;7698:5;7692:12;7725:6;7720:3;7713:19;7741:63;7797:6;7790:4;7785:3;7781:14;7774:4;7767:5;7763:16;7741:63;:::i;:::-;7858:2;7837:15;-1:-1:-1;;7833:29:1;7824:39;;;;7865:4;7820:50;;7619:257;-1:-1:-1;;7619:257:1:o;8115:274::-;8244:3;8282:6;8276:13;8298:53;8344:6;8339:3;8332:4;8324:6;8320:17;8298:53;:::i;:::-;8367:16;;;;;8115:274;-1:-1:-1;;8115:274:1:o;8394:1527::-;8618:3;8656:6;8650:13;8682:4;8695:51;8739:6;8734:3;8729:2;8721:6;8717:15;8695:51;:::i;:::-;8809:13;;8768:16;;;;8831:55;8809:13;8768:16;8853:15;;;8831:55;:::i;:::-;8975:13;;8908:20;;;8948:1;;9035;9057:18;;;;9110;;;;9137:93;;9215:4;9205:8;9201:19;9189:31;;9137:93;9278:2;9268:8;9265:16;9245:18;9242:40;9239:167;;;-1:-1:-1;;;9305:33:1;;9361:4;9358:1;9351:15;9391:4;9312:3;9379:17;9239:167;9422:18;9449:110;;;;9573:1;9568:328;;;;9415:481;;9449:110;-1:-1:-1;;9484:24:1;;9470:39;;9529:20;;;;-1:-1:-1;9449:110:1;;9568:328;21448:1;21441:14;;;21485:4;21472:18;;9663:1;9677:169;9691:8;9688:1;9685:15;9677:169;;;9773:14;;9758:13;;;9751:37;9816:16;;;;9708:10;;9677:169;;;9681:3;;9877:8;9870:5;9866:20;9859:27;;9415:481;-1:-1:-1;9912:3:1;;8394:1527;-1:-1:-1;;;;;;;;;;;8394:1527:1:o;9926:609::-;-1:-1:-1;;;10284:3:1;10277:32;10259:3;10338:6;10332:13;10354:62;10409:6;10404:2;10399:3;10395:12;10388:4;10380:6;10376:17;10354:62;:::i;:::-;-1:-1:-1;;;10475:2:1;10435:16;;;;10467:11;;;10460:42;-1:-1:-1;10526:2:1;10518:11;;9926:609;-1:-1:-1;9926:609:1:o;10540:606::-;-1:-1:-1;;;10898:3:1;10891:32;10873:3;10952:6;10946:13;10968:62;11023:6;11018:2;11013:3;11009:12;11002:4;10994:6;10990:17;10968:62;:::i;:::-;-1:-1:-1;;;11089:2:1;11049:16;;;;11081:11;;;11074:39;-1:-1:-1;11137:2:1;11129:11;;10540:606;-1:-1:-1;10540:606:1:o;11361:607::-;11724:27;11719:3;11712:40;11694:3;11781:6;11775:13;11797:62;11852:6;11847:2;11842:3;11838:12;11831:4;11823:6;11819:17;11797:62;:::i;:::-;-1:-1:-1;;;11918:2:1;11878:16;;;;11910:11;;;11903:30;-1:-1:-1;11957:4:1;11949:13;;11361:607;-1:-1:-1;11361:607:1:o;12468:488::-;-1:-1:-1;;;;;12737:15:1;;;12719:34;;12789:15;;12784:2;12769:18;;12762:43;12836:2;12821:18;;12814:34;;;12884:3;12879:2;12864:18;;12857:31;;;12662:4;;12905:45;;12930:19;;12922:6;12905:45;:::i;:::-;12897:53;12468:488;-1:-1:-1;;;;;;12468:488:1:o;13432:338::-;13574:2;13559:18;;13607:1;13596:13;;13586:144;;13652:10;13647:3;13643:20;13640:1;13633:31;13687:4;13684:1;13677:15;13715:4;13712:1;13705:15;13586:144;13739:25;;;13432:338;:::o;13775:219::-;13924:2;13913:9;13906:21;13887:4;13944:44;13984:2;13973:9;13969:18;13961:6;13944:44;:::i;15462:402::-;15664:2;15646:21;;;15703:2;15683:18;;;15676:30;15742:34;15737:2;15722:18;;15715:62;-1:-1:-1;;;15808:2:1;15793:18;;15786:36;15854:3;15839:19;;15462:402::o;17463:407::-;17665:2;17647:21;;;17704:2;17684:18;;;17677:30;17743:34;17738:2;17723:18;;17716:62;-1:-1:-1;;;17809:2:1;17794:18;;17787:41;17860:3;17845:19;;17463:407::o;19006:356::-;19208:2;19190:21;;;19227:18;;;19220:30;19286:34;19281:2;19266:18;;19259:62;19353:2;19338:18;;19006:356::o;21501:128::-;21541:3;21572:1;21568:6;21565:1;21562:13;21559:39;;;21578:18;;:::i;:::-;-1:-1:-1;21614:9:1;;21501:128::o;21634:120::-;21674:1;21700;21690:35;;21705:18;;:::i;:::-;-1:-1:-1;21739:9:1;;21634:120::o;21759:168::-;21799:7;21865:1;21861;21857:6;21853:14;21850:1;21847:21;21842:1;21835:9;21828:17;21824:45;21821:71;;;21872:18;;:::i;:::-;-1:-1:-1;21912:9:1;;21759:168::o;21932:125::-;21972:4;22000:1;21997;21994:8;21991:34;;;22005:18;;:::i;:::-;-1:-1:-1;22042:9:1;;21932:125::o;22062:258::-;22134:1;22144:113;22158:6;22155:1;22152:13;22144:113;;;22234:11;;;22228:18;22215:11;;;22208:39;22180:2;22173:10;22144:113;;;22275:6;22272:1;22269:13;22266:48;;;-1:-1:-1;;22310:1:1;22292:16;;22285:27;22062:258::o;22325:380::-;22404:1;22400:12;;;;22447;;;22468:61;;22522:4;22514:6;22510:17;22500:27;;22468:61;22575:2;22567:6;22564:14;22544:18;22541:38;22538:161;;;22621:10;22616:3;22612:20;22609:1;22602:31;22656:4;22653:1;22646:15;22684:4;22681:1;22674:15;22538:161;;22325:380;;;:::o;22710:135::-;22749:3;-1:-1:-1;;22770:17:1;;22767:43;;;22790:18;;:::i;:::-;-1:-1:-1;22837:1:1;22826:13;;22710:135::o;22850:112::-;22882:1;22908;22898:35;;22913:18;;:::i;:::-;-1:-1:-1;22947:9:1;;22850:112::o;22967:127::-;23028:10;23023:3;23019:20;23016:1;23009:31;23059:4;23056:1;23049:15;23083:4;23080:1;23073:15;23099:127;23160:10;23155:3;23151:20;23148:1;23141:31;23191:4;23188:1;23181:15;23215:4;23212:1;23205:15;23231:127;23292:10;23287:3;23283:20;23280:1;23273:31;23323:4;23320:1;23313:15;23347:4;23344:1;23337:15;23363:127;23424:10;23419:3;23415:20;23412:1;23405:31;23455:4;23452:1;23445:15;23479:4;23476:1;23469:15;23495:127;23556:10;23551:3;23547:20;23544:1;23537:31;23587:4;23584:1;23577:15;23611:4;23608:1;23601:15;23627:131;-1:-1:-1;;;;;23702:31:1;;23692:42;;23682:70;;23748:1;23745;23738:12;23763:118;23849:5;23842:13;23835:21;23828:5;23825:32;23815:60;;23871:1;23868;23861:12;23886:131;-1:-1:-1;;;;;;23960:32:1;;23950:43;;23940:71;;24007:1;24004;23997:12

Swarm Source

ipfs://8536737799b5dc5b187a89ce2b5b1d8e12887b22eebd02f860850bb3ce337d68
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

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