ETH Price: $3,352.18 (-2.83%)
Gas: 4 Gwei

Token

Gangstapes (GAS)
 

Overview

Max Total Supply

6,969 GAS

Holders

832

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GAS
0x584fA4627BB830372DDFbb2B75709d37E71e7a81
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:
Gangstapes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-28
*/

// SPDX-License-Identifier: MIT


// 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/cryptography/MerkleProof.sol


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

// 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: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
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 1;
    }

    /**
     * @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) {
        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) {
        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) {
        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 {
        _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 virtual 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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, 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: Contract.sol


pragma solidity ^0.8.7;




contract Gangstapes is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;
    mapping(address => uint256) public publicClaimed;
    mapping(address => uint256) public whitelistClaimed;

    string public baseURI;
    string public hiddenMetadataURI;
    mapping (address => bool) public whitelistedAddresses;
    uint256 public publicCost = 0.03 ether;
    uint256 public whitelistCost = 0.02 ether;
    uint256 public maxWhitelist = 8;
    uint256 public maxPublic = 10;

    bool public whitelistStatus = true;
    bool public paused = true;
    bool public revealed;
    uint256 public maxSupply = 6969;

    constructor() ERC721A("Gangstapes", "GAS") {
        
       
    }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============
    function mint(uint256 quantity) external payable nonReentrant {
        require(!paused, "The contract is paused!");
        require(quantity > 0 && totalSupply() + quantity <= maxSupply, "Invalid amount!");

        if (msg.sender != owner()) {
            
            if(whitelistStatus == true) {
                require(whitelistedAddresses[msg.sender] == true, "You're not whitelisted!");
                require(whitelistClaimed[msg.sender] + quantity <= maxWhitelist, "You're not allowed to mint this much!");
                require(quantity <= maxWhitelist, "You're not allowed to mint more than max Mint Amount!");
            if(whitelistClaimed[msg.sender] != 0)
                require(msg.value >= whitelistCost * quantity, "Insufficient Funds!");
            else
                require(msg.value >= whitelistCost * (quantity - 1), "Innsufficient Funds!");
                whitelistClaimed[msg.sender] += quantity;
            }
            else {
                require(publicClaimed[msg.sender] + quantity <= maxPublic, "You're not allowed to mint this much!");
                require(quantity <= maxPublic, "You're not allowed to mint more than max Mint Amount!");
                require(msg.value >= publicCost * quantity, "Insufficient Funds!");
                publicClaimed[msg.sender] += quantity;
            }
        }
        _safeMint(msg.sender, quantity);
    }

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


    // ============ PUBLIC READ-ONLY FUNCTIONS ============
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return hiddenMetadataURI;
        }

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

    function setCost(uint256 _newPublicCost) external onlyOwner {
        publicCost = _newPublicCost;
    }
    function setWhitelistCost(uint256 _newWhitelistCost) external onlyOwner {
        whitelistCost = _newWhitelistCost;
    }
    function setMaxWhitelistPerWallet(uint256 _newMaxWhitelistPerWallet) external onlyOwner {
        maxWhitelist = _newMaxWhitelistPerWallet;
    }
    function addToWhitelist(address[] memory whitelistAddresses) external onlyOwner {
        for(uint256 i = 0 ; i< whitelistAddresses.length; i ++) {
            whitelistedAddresses[whitelistAddresses[i]] = true;
        }
    }
    function setMaxPublic(uint256 _newMaxPublic) external onlyOwner {
        maxPublic = _newMaxPublic;
    }

    function setMaxSuppy(uint256 _amount) external onlyOwner {
        maxSupply = _amount;
    }
    function toggleWhitelist() external onlyOwner {
        whitelistStatus = !whitelistStatus;
    }
    function setPaused(bool _state) external onlyOwner {
        paused = _state;
    }

    function setRevealed(bool _state) external onlyOwner {
        revealed = _state;
    }

    function setHiddenMetadataURI(string memory _URI) external onlyOwner {
        hiddenMetadataURI = _URI;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    function airDrop(uint256 quantity, address _address) external onlyOwner {
        _safeMint(_address, quantity);
    }
    function burn(uint256 tokenId) public onlyOwner{
        _burn(tokenId);
    }
    function burnBatch(uint256[] memory tokenIds) public onlyOwner{
        for (uint256 index = 0; index < tokenIds.length; index++) {
                _burn(tokenIds[index]);
        }
    }

    function withdraw() public onlyOwner {
         // Do not remove this otherwise you will not be able to withdraw the funds.
        // =============================================================================
        (bool ts, ) = payable(owner()).call{value: address(this).balance}("");
        require(ts);
        // =============================================================================
    }
}

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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"whitelistAddresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"burnBatch","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":[],"name":"hiddenMetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setHiddenMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPublic","type":"uint256"}],"name":"setMaxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSuppy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxWhitelistPerWallet","type":"uint256"}],"name":"setMaxWhitelistPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWhitelistCost","type":"uint256"}],"name":"setWhitelistCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052666a94d74f430000600f5566470de4df8200006010556008601155600a6012556001601360006101000a81548160ff0219169083151502179055506001601360016101000a81548160ff021916908315150217905550611b396014553480156200006d57600080fd5b506040518060400160405280600a81526020017f47616e67737461706573000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f47415300000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f292919062000229565b5080600390805190602001906200010b92919062000229565b506200011c6200015260201b60201c565b600081905550505062000144620001386200015b60201b60201c565b6200016360201b60201c565b60016009819055506200033e565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023790620002d9565b90600052602060002090601f0160209004810192826200025b5760008555620002a7565b82601f106200027657805160ff1916838001178555620002a7565b82800160010185558215620002a7579182015b82811115620002a657825182559160200191906001019062000289565b5b509050620002b69190620002ba565b5090565b5b80821115620002d5576000816000905550600101620002bb565b5090565b60006002820490506001821680620002f257607f821691505b602082108114156200030957620003086200030f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614e98806200034e6000396000f3fe60806040526004361061027d5760003560e01c80638693da201161014f578063ba9e12f7116100c1578063e0a808531161007a578063e0a8085314610961578063e4623c1b1461098a578063e7b99ec7146109b3578063e985e9c5146109de578063f2fde38b14610a1b578063fbdb849414610a445761027d565b8063ba9e12f71461083d578063bf0d96c314610868578063c87b56dd14610893578063d49479eb146108d0578063d5abeb01146108f9578063db4bec44146109245761027d565b8063a0712d6811610113578063a0712d6814610740578063a22cb4651461075c578063aed3801514610785578063b5b1cd7c146107ae578063b88d4fde146107eb578063ba2d0366146108145761027d565b80638693da201461066b5780638da5cb5b1461069657806395d89b41146106c15780639ddf7ad3146106ec5780639ec571d5146107175761027d565b806344a0d68a116101f35780636c0360eb116101ac5780636c0360eb1461058157806370a08231146105ac578063715018a6146105e95780637dc42975146106005780637e15144b1461062b5780637f649783146106425761027d565b806344a0d68a14610473578063512507c61461049c57806351830227146104c557806355f804b3146104f05780635c975abb146105195780636352211e146105445761027d565b806316c38b3c1161024557806316c38b3c1461038d57806318160ddd146103b657806323b872dd146103e15780633ccfd60b1461040a57806342842e0e1461042157806342966c681461044a5761027d565b806301ffc9a71461028257806306c933d8146102bf57806306fdde03146102fc578063081812fc14610327578063095ea7b314610364575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a4919061408b565b610a6d565b6040516102b691906144dd565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613e09565b610b4f565b6040516102f391906144dd565b60405180910390f35b34801561030857600080fd5b50610311610b6f565b60405161031e91906144f8565b60405180910390f35b34801561033357600080fd5b5061034e6004803603810190610349919061412e565b610c01565b60405161035b9190614476565b60405180910390f35b34801561037057600080fd5b5061038b60048036038101906103869190613f8c565b610c7d565b005b34801561039957600080fd5b506103b460048036038101906103af919061405e565b610d88565b005b3480156103c257600080fd5b506103cb610e21565b6040516103d8919061467a565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190613e76565b610e38565b005b34801561041657600080fd5b5061041f610e48565b005b34801561042d57600080fd5b5061044860048036038101906104439190613e76565b610f44565b005b34801561045657600080fd5b50610471600480360381019061046c919061412e565b610f64565b005b34801561047f57600080fd5b5061049a6004803603810190610495919061412e565b610fec565b005b3480156104a857600080fd5b506104c360048036038101906104be91906140e5565b611072565b005b3480156104d157600080fd5b506104da611108565b6040516104e791906144dd565b60405180910390f35b3480156104fc57600080fd5b50610517600480360381019061051291906140e5565b61111b565b005b34801561052557600080fd5b5061052e6111b1565b60405161053b91906144dd565b60405180910390f35b34801561055057600080fd5b5061056b6004803603810190610566919061412e565b6111c4565b6040516105789190614476565b60405180910390f35b34801561058d57600080fd5b506105966111da565b6040516105a391906144f8565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190613e09565b611268565b6040516105e0919061467a565b60405180910390f35b3480156105f557600080fd5b506105fe611338565b005b34801561060c57600080fd5b506106156113c0565b604051610622919061467a565b60405180910390f35b34801561063757600080fd5b506106406113c6565b005b34801561064e57600080fd5b5061066960048036038101906106649190613fcc565b61146e565b005b34801561067757600080fd5b5061068061157f565b60405161068d919061467a565b60405180910390f35b3480156106a257600080fd5b506106ab611585565b6040516106b89190614476565b60405180910390f35b3480156106cd57600080fd5b506106d66115af565b6040516106e391906144f8565b60405180910390f35b3480156106f857600080fd5b50610701611641565b60405161070e91906144dd565b60405180910390f35b34801561072357600080fd5b5061073e6004803603810190610739919061412e565b611654565b005b61075a6004803603810190610755919061412e565b6116da565b005b34801561076857600080fd5b50610783600480360381019061077e9190613f4c565b611c7d565b005b34801561079157600080fd5b506107ac60048036038101906107a7919061415b565b611df5565b005b3480156107ba57600080fd5b506107d560048036038101906107d09190613e09565b611e7f565b6040516107e2919061467a565b60405180910390f35b3480156107f757600080fd5b50610812600480360381019061080d9190613ec9565b611e97565b005b34801561082057600080fd5b5061083b6004803603810190610836919061412e565b611f13565b005b34801561084957600080fd5b50610852611f99565b60405161085f91906144f8565b60405180910390f35b34801561087457600080fd5b5061087d612027565b60405161088a919061467a565b60405180910390f35b34801561089f57600080fd5b506108ba60048036038101906108b5919061412e565b61202d565b6040516108c791906144f8565b60405180910390f35b3480156108dc57600080fd5b506108f760048036038101906108f2919061412e565b612183565b005b34801561090557600080fd5b5061090e612209565b60405161091b919061467a565b60405180910390f35b34801561093057600080fd5b5061094b60048036038101906109469190613e09565b61220f565b604051610958919061467a565b60405180910390f35b34801561096d57600080fd5b506109886004803603810190610983919061405e565b612227565b005b34801561099657600080fd5b506109b160048036038101906109ac9190614015565b6122c0565b005b3480156109bf57600080fd5b506109c8612382565b6040516109d5919061467a565b60405180910390f35b3480156109ea57600080fd5b50610a056004803603810190610a009190613e36565b612388565b604051610a1291906144dd565b60405180910390f35b348015610a2757600080fd5b50610a426004803603810190610a3d9190613e09565b61241c565b005b348015610a5057600080fd5b50610a6b6004803603810190610a66919061412e565b612514565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b485750610b478261259a565b5b9050919050565b600e6020528060005260406000206000915054906101000a900460ff1681565b606060028054610b7e9061498d565b80601f0160208091040260200160405190810160405280929190818152602001828054610baa9061498d565b8015610bf75780601f10610bcc57610100808354040283529160200191610bf7565b820191906000526020600020905b815481529060010190602001808311610bda57829003601f168201915b5050505050905090565b6000610c0c82612604565b610c42576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c88826111c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d0f612652565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d415750610d3f81610d3a612652565b612388565b155b15610d78576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d8383838361265a565b505050565b610d90612652565b73ffffffffffffffffffffffffffffffffffffffff16610dae611585565b73ffffffffffffffffffffffffffffffffffffffff1614610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb906145ba565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b6000610e2b61270c565b6001546000540303905090565b610e43838383612715565b505050565b610e50612652565b73ffffffffffffffffffffffffffffffffffffffff16610e6e611585565b73ffffffffffffffffffffffffffffffffffffffff1614610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb906145ba565b60405180910390fd5b6000610ece611585565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ef190614461565b60006040518083038185875af1925050503d8060008114610f2e576040519150601f19603f3d011682016040523d82523d6000602084013e610f33565b606091505b5050905080610f4157600080fd5b50565b610f5f83838360405180602001604052806000815250611e97565b505050565b610f6c612652565b73ffffffffffffffffffffffffffffffffffffffff16610f8a611585565b73ffffffffffffffffffffffffffffffffffffffff1614610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd7906145ba565b60405180910390fd5b610fe981612bcb565b50565b610ff4612652565b73ffffffffffffffffffffffffffffffffffffffff16611012611585565b73ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f906145ba565b60405180910390fd5b80600f8190555050565b61107a612652565b73ffffffffffffffffffffffffffffffffffffffff16611098611585565b73ffffffffffffffffffffffffffffffffffffffff16146110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e5906145ba565b60405180910390fd5b80600d9080519060200190611104929190613a9e565b5050565b601360029054906101000a900460ff1681565b611123612652565b73ffffffffffffffffffffffffffffffffffffffff16611141611585565b73ffffffffffffffffffffffffffffffffffffffff1614611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e906145ba565b60405180910390fd5b80600c90805190602001906111ad929190613a9e565b5050565b601360019054906101000a900460ff1681565b60006111cf82612bd9565b600001519050919050565b600c80546111e79061498d565b80601f01602080910402602001604051908101604052809291908181526020018280546112139061498d565b80156112605780601f1061123557610100808354040283529160200191611260565b820191906000526020600020905b81548152906001019060200180831161124357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611340612652565b73ffffffffffffffffffffffffffffffffffffffff1661135e611585565b73ffffffffffffffffffffffffffffffffffffffff16146113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab906145ba565b60405180910390fd5b6113be6000612e68565b565b60125481565b6113ce612652565b73ffffffffffffffffffffffffffffffffffffffff166113ec611585565b73ffffffffffffffffffffffffffffffffffffffff1614611442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611439906145ba565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b611476612652565b73ffffffffffffffffffffffffffffffffffffffff16611494611585565b73ffffffffffffffffffffffffffffffffffffffff16146114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e1906145ba565b60405180910390fd5b60005b815181101561157b576001600e600084848151811061150f5761150e614af7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611573906149f0565b9150506114ed565b5050565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546115be9061498d565b80601f01602080910402602001604051908101604052809291908181526020018280546115ea9061498d565b80156116375780601f1061160c57610100808354040283529160200191611637565b820191906000526020600020905b81548152906001019060200180831161161a57829003601f168201915b5050505050905090565b601360009054906101000a900460ff1681565b61165c612652565b73ffffffffffffffffffffffffffffffffffffffff1661167a611585565b73ffffffffffffffffffffffffffffffffffffffff16146116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c7906145ba565b60405180910390fd5b8060148190555050565b60026009541415611720576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117179061463a565b60405180910390fd5b6002600981905550601360019054906101000a900460ff1615611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f906145da565b60405180910390fd5b60008111801561179c57506014548161178f610e21565b61179991906147c2565b11155b6117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d29061457a565b60405180910390fd5b6117e3611585565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c685760011515601360009054906101000a900460ff1615151415611aec5760011515600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bb9061465a565b60405180910390fd5b60115481600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461191291906147c2565b1115611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194a9061453a565b60405180910390fd5b601154811115611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f9061461a565b60405180910390fd5b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611a3457806010546119ed9190614849565b341015611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a269061455a565b60405180910390fd5b611a91565b600181611a4191906148a3565b601054611a4e9190614849565b341015611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a879061459a565b60405180910390fd5b5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ae091906147c2565b92505081905550611c67565b60125481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b3a91906147c2565b1115611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b729061453a565b60405180910390fd5b601254811115611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb79061461a565b60405180910390fd5b80600f54611bce9190614849565b341015611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c079061455a565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c5f91906147c2565b925050819055505b5b611c723382612f2e565b600160098190555050565b611c85612652565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cea576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611cf7612652565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611da4612652565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611de991906144dd565b60405180910390a35050565b611dfd612652565b73ffffffffffffffffffffffffffffffffffffffff16611e1b611585565b73ffffffffffffffffffffffffffffffffffffffff1614611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e68906145ba565b60405180910390fd5b611e7b8183612f2e565b5050565b600a6020528060005260406000206000915090505481565b611ea2848484612715565b611ec18373ffffffffffffffffffffffffffffffffffffffff16612f4c565b8015611ed65750611ed484848484612f6f565b155b15611f0d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611f1b612652565b73ffffffffffffffffffffffffffffffffffffffff16611f39611585565b73ffffffffffffffffffffffffffffffffffffffff1614611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f86906145ba565b60405180910390fd5b8060118190555050565b600d8054611fa69061498d565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd29061498d565b801561201f5780601f10611ff45761010080835404028352916020019161201f565b820191906000526020600020905b81548152906001019060200180831161200257829003601f168201915b505050505081565b60115481565b606061203882612604565b612077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206e906145fa565b60405180910390fd5b60001515601360029054906101000a900460ff161515141561212557600d80546120a09061498d565b80601f01602080910402602001604051908101604052809291908181526020018280546120cc9061498d565b80156121195780601f106120ee57610100808354040283529160200191612119565b820191906000526020600020905b8154815290600101906020018083116120fc57829003601f168201915b5050505050905061217e565b600061212f6130cf565b9050600081511161214f576040518060200160405280600081525061217a565b8061215984613161565b60405160200161216a929190614432565b6040516020818303038152906040525b9150505b919050565b61218b612652565b73ffffffffffffffffffffffffffffffffffffffff166121a9611585565b73ffffffffffffffffffffffffffffffffffffffff16146121ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f6906145ba565b60405180910390fd5b8060108190555050565b60145481565b600b6020528060005260406000206000915090505481565b61222f612652565b73ffffffffffffffffffffffffffffffffffffffff1661224d611585565b73ffffffffffffffffffffffffffffffffffffffff16146122a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229a906145ba565b60405180910390fd5b80601360026101000a81548160ff02191690831515021790555050565b6122c8612652565b73ffffffffffffffffffffffffffffffffffffffff166122e6611585565b73ffffffffffffffffffffffffffffffffffffffff161461233c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612333906145ba565b60405180910390fd5b60005b815181101561237e5761236b82828151811061235e5761235d614af7565b5b6020026020010151612bcb565b8080612376906149f0565b91505061233f565b5050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612424612652565b73ffffffffffffffffffffffffffffffffffffffff16612442611585565b73ffffffffffffffffffffffffffffffffffffffff1614612498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248f906145ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff9061451a565b60405180910390fd5b61251181612e68565b50565b61251c612652565b73ffffffffffffffffffffffffffffffffffffffff1661253a611585565b73ffffffffffffffffffffffffffffffffffffffff1614612590576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612587906145ba565b60405180910390fd5b8060128190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161260f61270c565b1115801561261e575060005482105b801561264b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061272082612bd9565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461278b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127ac612652565b73ffffffffffffffffffffffffffffffffffffffff1614806127db57506127da856127d5612652565b612388565b5b8061282057506127e9612652565b73ffffffffffffffffffffffffffffffffffffffff1661280884610c01565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612859576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128c0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128cd85858560016132c2565b6128d96000848761265a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b59576000548214612b5857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bc485858560016132c8565b5050505050565b612bd68160006132ce565b50565b612be1613b24565b600082905080612bef61270c565b11158015612bfe575060005481105b15612e31576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e2f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d13578092505050612e63565b5b600115612e2e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e29578092505050612e63565b612d14565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f488282604051806020016040528060008152506136be565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f95612652565b8786866040518563ffffffff1660e01b8152600401612fb79493929190614491565b602060405180830381600087803b158015612fd157600080fd5b505af192505050801561300257506040513d601f19601f82011682018060405250810190612fff91906140b8565b60015b61307c573d8060008114613032576040519150601f19603f3d011682016040523d82523d6000602084013e613037565b606091505b50600081511415613074576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546130de9061498d565b80601f016020809104026020016040519081016040528092919081815260200182805461310a9061498d565b80156131575780601f1061312c57610100808354040283529160200191613157565b820191906000526020600020905b81548152906001019060200180831161313a57829003601f168201915b5050505050905090565b606060008214156131a9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132bd565b600082905060005b600082146131db5780806131c4906149f0565b915050600a826131d49190614818565b91506131b1565b60008167ffffffffffffffff8111156131f7576131f6614b26565b5b6040519080825280601f01601f1916602001820160405280156132295781602001600182028036833780820191505090505b5090505b600085146132b65760018261324291906148a3565b9150600a856132519190614a39565b603061325d91906147c2565b60f81b81838151811061327357613272614af7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132af9190614818565b945061322d565b8093505050505b919050565b50505050565b50505050565b60006132d983612bd9565b905060008160000151905082156133ba5760008173ffffffffffffffffffffffffffffffffffffffff1661330b612652565b73ffffffffffffffffffffffffffffffffffffffff16148061333a575061333982613334612652565b612388565b5b8061337f5750613348612652565b73ffffffffffffffffffffffffffffffffffffffff1661336786610c01565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806133b8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b6133c88160008660016132c2565b6133d46000858361265a565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561363857600054821461363757848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136a68160008660016132c8565b60016000815480929190600101919050555050505050565b6136cb83838360016136d0565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561373d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613778576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61378560008683876132c2565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561394f575061394e8773ffffffffffffffffffffffffffffffffffffffff16612f4c565b5b15613a15575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139c46000888480600101955088612f6f565b6139fa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613955578260005414613a1057600080fd5b613a81565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613a16575b816000819055505050613a9760008683876132c8565b5050505050565b828054613aaa9061498d565b90600052602060002090601f016020900481019282613acc5760008555613b13565b82601f10613ae557805160ff1916838001178555613b13565b82800160010185558215613b13579182015b82811115613b12578251825591602001919060010190613af7565b5b509050613b209190613b67565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b80576000816000905550600101613b68565b5090565b6000613b97613b92846146ba565b614695565b90508083825260208201905082856020860282011115613bba57613bb9614b5a565b5b60005b85811015613bea5781613bd08882613ce8565b845260208401935060208301925050600181019050613bbd565b5050509392505050565b6000613c07613c02846146e6565b614695565b90508083825260208201905082856020860282011115613c2a57613c29614b5a565b5b60005b85811015613c5a5781613c408882613df4565b845260208401935060208301925050600181019050613c2d565b5050509392505050565b6000613c77613c7284614712565b614695565b905082815260208101848484011115613c9357613c92614b5f565b5b613c9e84828561494b565b509392505050565b6000613cb9613cb484614743565b614695565b905082815260208101848484011115613cd557613cd4614b5f565b5b613ce084828561494b565b509392505050565b600081359050613cf781614e06565b92915050565b600082601f830112613d1257613d11614b55565b5b8135613d22848260208601613b84565b91505092915050565b600082601f830112613d4057613d3f614b55565b5b8135613d50848260208601613bf4565b91505092915050565b600081359050613d6881614e1d565b92915050565b600081359050613d7d81614e34565b92915050565b600081519050613d9281614e34565b92915050565b600082601f830112613dad57613dac614b55565b5b8135613dbd848260208601613c64565b91505092915050565b600082601f830112613ddb57613dda614b55565b5b8135613deb848260208601613ca6565b91505092915050565b600081359050613e0381614e4b565b92915050565b600060208284031215613e1f57613e1e614b69565b5b6000613e2d84828501613ce8565b91505092915050565b60008060408385031215613e4d57613e4c614b69565b5b6000613e5b85828601613ce8565b9250506020613e6c85828601613ce8565b9150509250929050565b600080600060608486031215613e8f57613e8e614b69565b5b6000613e9d86828701613ce8565b9350506020613eae86828701613ce8565b9250506040613ebf86828701613df4565b9150509250925092565b60008060008060808587031215613ee357613ee2614b69565b5b6000613ef187828801613ce8565b9450506020613f0287828801613ce8565b9350506040613f1387828801613df4565b925050606085013567ffffffffffffffff811115613f3457613f33614b64565b5b613f4087828801613d98565b91505092959194509250565b60008060408385031215613f6357613f62614b69565b5b6000613f7185828601613ce8565b9250506020613f8285828601613d59565b9150509250929050565b60008060408385031215613fa357613fa2614b69565b5b6000613fb185828601613ce8565b9250506020613fc285828601613df4565b9150509250929050565b600060208284031215613fe257613fe1614b69565b5b600082013567ffffffffffffffff81111561400057613fff614b64565b5b61400c84828501613cfd565b91505092915050565b60006020828403121561402b5761402a614b69565b5b600082013567ffffffffffffffff81111561404957614048614b64565b5b61405584828501613d2b565b91505092915050565b60006020828403121561407457614073614b69565b5b600061408284828501613d59565b91505092915050565b6000602082840312156140a1576140a0614b69565b5b60006140af84828501613d6e565b91505092915050565b6000602082840312156140ce576140cd614b69565b5b60006140dc84828501613d83565b91505092915050565b6000602082840312156140fb576140fa614b69565b5b600082013567ffffffffffffffff81111561411957614118614b64565b5b61412584828501613dc6565b91505092915050565b60006020828403121561414457614143614b69565b5b600061415284828501613df4565b91505092915050565b6000806040838503121561417257614171614b69565b5b600061418085828601613df4565b925050602061419185828601613ce8565b9150509250929050565b6141a4816148d7565b82525050565b6141b3816148e9565b82525050565b60006141c482614774565b6141ce818561478a565b93506141de81856020860161495a565b6141e781614b6e565b840191505092915050565b60006141fd8261477f565b61420781856147a6565b935061421781856020860161495a565b61422081614b6e565b840191505092915050565b60006142368261477f565b61424081856147b7565b935061425081856020860161495a565b80840191505092915050565b60006142696026836147a6565b915061427482614b7f565b604082019050919050565b600061428c6025836147a6565b915061429782614bce565b604082019050919050565b60006142af6013836147a6565b91506142ba82614c1d565b602082019050919050565b60006142d2600f836147a6565b91506142dd82614c46565b602082019050919050565b60006142f56005836147b7565b915061430082614c6f565b600582019050919050565b60006143186014836147a6565b915061432382614c98565b602082019050919050565b600061433b6020836147a6565b915061434682614cc1565b602082019050919050565b600061435e6017836147a6565b915061436982614cea565b602082019050919050565b6000614381602f836147a6565b915061438c82614d13565b604082019050919050565b60006143a460008361479b565b91506143af82614d62565b600082019050919050565b60006143c76035836147a6565b91506143d282614d65565b604082019050919050565b60006143ea601f836147a6565b91506143f582614db4565b602082019050919050565b600061440d6017836147a6565b915061441882614ddd565b602082019050919050565b61442c81614941565b82525050565b600061443e828561422b565b915061444a828461422b565b9150614455826142e8565b91508190509392505050565b600061446c82614397565b9150819050919050565b600060208201905061448b600083018461419b565b92915050565b60006080820190506144a6600083018761419b565b6144b3602083018661419b565b6144c06040830185614423565b81810360608301526144d281846141b9565b905095945050505050565b60006020820190506144f260008301846141aa565b92915050565b6000602082019050818103600083015261451281846141f2565b905092915050565b600060208201905081810360008301526145338161425c565b9050919050565b600060208201905081810360008301526145538161427f565b9050919050565b60006020820190508181036000830152614573816142a2565b9050919050565b60006020820190508181036000830152614593816142c5565b9050919050565b600060208201905081810360008301526145b38161430b565b9050919050565b600060208201905081810360008301526145d38161432e565b9050919050565b600060208201905081810360008301526145f381614351565b9050919050565b6000602082019050818103600083015261461381614374565b9050919050565b60006020820190508181036000830152614633816143ba565b9050919050565b60006020820190508181036000830152614653816143dd565b9050919050565b6000602082019050818103600083015261467381614400565b9050919050565b600060208201905061468f6000830184614423565b92915050565b600061469f6146b0565b90506146ab82826149bf565b919050565b6000604051905090565b600067ffffffffffffffff8211156146d5576146d4614b26565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561470157614700614b26565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561472d5761472c614b26565b5b61473682614b6e565b9050602081019050919050565b600067ffffffffffffffff82111561475e5761475d614b26565b5b61476782614b6e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006147cd82614941565b91506147d883614941565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561480d5761480c614a6a565b5b828201905092915050565b600061482382614941565b915061482e83614941565b92508261483e5761483d614a99565b5b828204905092915050565b600061485482614941565b915061485f83614941565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561489857614897614a6a565b5b828202905092915050565b60006148ae82614941565b91506148b983614941565b9250828210156148cc576148cb614a6a565b5b828203905092915050565b60006148e282614921565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561497857808201518184015260208101905061495d565b83811115614987576000848401525b50505050565b600060028204905060018216806149a557607f821691505b602082108114156149b9576149b8614ac8565b5b50919050565b6149c882614b6e565b810181811067ffffffffffffffff821117156149e7576149e6614b26565b5b80604052505050565b60006149fb82614941565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a2e57614a2d614a6a565b5b600182019050919050565b6000614a4482614941565b9150614a4f83614941565b925082614a5f57614a5e614a99565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e7420746869732060008201527f6d75636821000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742046756e64732100000000000000000000000000600082015250565b7f496e76616c696420616d6f756e74210000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f496e6e73756666696369656e742046756e647321000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e74206d6f72652060008201527f7468616e206d6178204d696e7420416d6f756e74210000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f596f75277265206e6f742077686974656c697374656421000000000000000000600082015250565b614e0f816148d7565b8114614e1a57600080fd5b50565b614e26816148e9565b8114614e3157600080fd5b50565b614e3d816148f5565b8114614e4857600080fd5b50565b614e5481614941565b8114614e5f57600080fd5b5056fea264697066735822122071761a0a94bb3a53461b0f65cb88193bdab7b4cfd21545afcd394c8eeb1cfdeb64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80638693da201161014f578063ba9e12f7116100c1578063e0a808531161007a578063e0a8085314610961578063e4623c1b1461098a578063e7b99ec7146109b3578063e985e9c5146109de578063f2fde38b14610a1b578063fbdb849414610a445761027d565b8063ba9e12f71461083d578063bf0d96c314610868578063c87b56dd14610893578063d49479eb146108d0578063d5abeb01146108f9578063db4bec44146109245761027d565b8063a0712d6811610113578063a0712d6814610740578063a22cb4651461075c578063aed3801514610785578063b5b1cd7c146107ae578063b88d4fde146107eb578063ba2d0366146108145761027d565b80638693da201461066b5780638da5cb5b1461069657806395d89b41146106c15780639ddf7ad3146106ec5780639ec571d5146107175761027d565b806344a0d68a116101f35780636c0360eb116101ac5780636c0360eb1461058157806370a08231146105ac578063715018a6146105e95780637dc42975146106005780637e15144b1461062b5780637f649783146106425761027d565b806344a0d68a14610473578063512507c61461049c57806351830227146104c557806355f804b3146104f05780635c975abb146105195780636352211e146105445761027d565b806316c38b3c1161024557806316c38b3c1461038d57806318160ddd146103b657806323b872dd146103e15780633ccfd60b1461040a57806342842e0e1461042157806342966c681461044a5761027d565b806301ffc9a71461028257806306c933d8146102bf57806306fdde03146102fc578063081812fc14610327578063095ea7b314610364575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a4919061408b565b610a6d565b6040516102b691906144dd565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613e09565b610b4f565b6040516102f391906144dd565b60405180910390f35b34801561030857600080fd5b50610311610b6f565b60405161031e91906144f8565b60405180910390f35b34801561033357600080fd5b5061034e6004803603810190610349919061412e565b610c01565b60405161035b9190614476565b60405180910390f35b34801561037057600080fd5b5061038b60048036038101906103869190613f8c565b610c7d565b005b34801561039957600080fd5b506103b460048036038101906103af919061405e565b610d88565b005b3480156103c257600080fd5b506103cb610e21565b6040516103d8919061467a565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190613e76565b610e38565b005b34801561041657600080fd5b5061041f610e48565b005b34801561042d57600080fd5b5061044860048036038101906104439190613e76565b610f44565b005b34801561045657600080fd5b50610471600480360381019061046c919061412e565b610f64565b005b34801561047f57600080fd5b5061049a6004803603810190610495919061412e565b610fec565b005b3480156104a857600080fd5b506104c360048036038101906104be91906140e5565b611072565b005b3480156104d157600080fd5b506104da611108565b6040516104e791906144dd565b60405180910390f35b3480156104fc57600080fd5b50610517600480360381019061051291906140e5565b61111b565b005b34801561052557600080fd5b5061052e6111b1565b60405161053b91906144dd565b60405180910390f35b34801561055057600080fd5b5061056b6004803603810190610566919061412e565b6111c4565b6040516105789190614476565b60405180910390f35b34801561058d57600080fd5b506105966111da565b6040516105a391906144f8565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190613e09565b611268565b6040516105e0919061467a565b60405180910390f35b3480156105f557600080fd5b506105fe611338565b005b34801561060c57600080fd5b506106156113c0565b604051610622919061467a565b60405180910390f35b34801561063757600080fd5b506106406113c6565b005b34801561064e57600080fd5b5061066960048036038101906106649190613fcc565b61146e565b005b34801561067757600080fd5b5061068061157f565b60405161068d919061467a565b60405180910390f35b3480156106a257600080fd5b506106ab611585565b6040516106b89190614476565b60405180910390f35b3480156106cd57600080fd5b506106d66115af565b6040516106e391906144f8565b60405180910390f35b3480156106f857600080fd5b50610701611641565b60405161070e91906144dd565b60405180910390f35b34801561072357600080fd5b5061073e6004803603810190610739919061412e565b611654565b005b61075a6004803603810190610755919061412e565b6116da565b005b34801561076857600080fd5b50610783600480360381019061077e9190613f4c565b611c7d565b005b34801561079157600080fd5b506107ac60048036038101906107a7919061415b565b611df5565b005b3480156107ba57600080fd5b506107d560048036038101906107d09190613e09565b611e7f565b6040516107e2919061467a565b60405180910390f35b3480156107f757600080fd5b50610812600480360381019061080d9190613ec9565b611e97565b005b34801561082057600080fd5b5061083b6004803603810190610836919061412e565b611f13565b005b34801561084957600080fd5b50610852611f99565b60405161085f91906144f8565b60405180910390f35b34801561087457600080fd5b5061087d612027565b60405161088a919061467a565b60405180910390f35b34801561089f57600080fd5b506108ba60048036038101906108b5919061412e565b61202d565b6040516108c791906144f8565b60405180910390f35b3480156108dc57600080fd5b506108f760048036038101906108f2919061412e565b612183565b005b34801561090557600080fd5b5061090e612209565b60405161091b919061467a565b60405180910390f35b34801561093057600080fd5b5061094b60048036038101906109469190613e09565b61220f565b604051610958919061467a565b60405180910390f35b34801561096d57600080fd5b506109886004803603810190610983919061405e565b612227565b005b34801561099657600080fd5b506109b160048036038101906109ac9190614015565b6122c0565b005b3480156109bf57600080fd5b506109c8612382565b6040516109d5919061467a565b60405180910390f35b3480156109ea57600080fd5b50610a056004803603810190610a009190613e36565b612388565b604051610a1291906144dd565b60405180910390f35b348015610a2757600080fd5b50610a426004803603810190610a3d9190613e09565b61241c565b005b348015610a5057600080fd5b50610a6b6004803603810190610a66919061412e565b612514565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b485750610b478261259a565b5b9050919050565b600e6020528060005260406000206000915054906101000a900460ff1681565b606060028054610b7e9061498d565b80601f0160208091040260200160405190810160405280929190818152602001828054610baa9061498d565b8015610bf75780601f10610bcc57610100808354040283529160200191610bf7565b820191906000526020600020905b815481529060010190602001808311610bda57829003601f168201915b5050505050905090565b6000610c0c82612604565b610c42576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c88826111c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d0f612652565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d415750610d3f81610d3a612652565b612388565b155b15610d78576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d8383838361265a565b505050565b610d90612652565b73ffffffffffffffffffffffffffffffffffffffff16610dae611585565b73ffffffffffffffffffffffffffffffffffffffff1614610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb906145ba565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b6000610e2b61270c565b6001546000540303905090565b610e43838383612715565b505050565b610e50612652565b73ffffffffffffffffffffffffffffffffffffffff16610e6e611585565b73ffffffffffffffffffffffffffffffffffffffff1614610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb906145ba565b60405180910390fd5b6000610ece611585565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ef190614461565b60006040518083038185875af1925050503d8060008114610f2e576040519150601f19603f3d011682016040523d82523d6000602084013e610f33565b606091505b5050905080610f4157600080fd5b50565b610f5f83838360405180602001604052806000815250611e97565b505050565b610f6c612652565b73ffffffffffffffffffffffffffffffffffffffff16610f8a611585565b73ffffffffffffffffffffffffffffffffffffffff1614610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd7906145ba565b60405180910390fd5b610fe981612bcb565b50565b610ff4612652565b73ffffffffffffffffffffffffffffffffffffffff16611012611585565b73ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f906145ba565b60405180910390fd5b80600f8190555050565b61107a612652565b73ffffffffffffffffffffffffffffffffffffffff16611098611585565b73ffffffffffffffffffffffffffffffffffffffff16146110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e5906145ba565b60405180910390fd5b80600d9080519060200190611104929190613a9e565b5050565b601360029054906101000a900460ff1681565b611123612652565b73ffffffffffffffffffffffffffffffffffffffff16611141611585565b73ffffffffffffffffffffffffffffffffffffffff1614611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e906145ba565b60405180910390fd5b80600c90805190602001906111ad929190613a9e565b5050565b601360019054906101000a900460ff1681565b60006111cf82612bd9565b600001519050919050565b600c80546111e79061498d565b80601f01602080910402602001604051908101604052809291908181526020018280546112139061498d565b80156112605780601f1061123557610100808354040283529160200191611260565b820191906000526020600020905b81548152906001019060200180831161124357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611340612652565b73ffffffffffffffffffffffffffffffffffffffff1661135e611585565b73ffffffffffffffffffffffffffffffffffffffff16146113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab906145ba565b60405180910390fd5b6113be6000612e68565b565b60125481565b6113ce612652565b73ffffffffffffffffffffffffffffffffffffffff166113ec611585565b73ffffffffffffffffffffffffffffffffffffffff1614611442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611439906145ba565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b611476612652565b73ffffffffffffffffffffffffffffffffffffffff16611494611585565b73ffffffffffffffffffffffffffffffffffffffff16146114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e1906145ba565b60405180910390fd5b60005b815181101561157b576001600e600084848151811061150f5761150e614af7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611573906149f0565b9150506114ed565b5050565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546115be9061498d565b80601f01602080910402602001604051908101604052809291908181526020018280546115ea9061498d565b80156116375780601f1061160c57610100808354040283529160200191611637565b820191906000526020600020905b81548152906001019060200180831161161a57829003601f168201915b5050505050905090565b601360009054906101000a900460ff1681565b61165c612652565b73ffffffffffffffffffffffffffffffffffffffff1661167a611585565b73ffffffffffffffffffffffffffffffffffffffff16146116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c7906145ba565b60405180910390fd5b8060148190555050565b60026009541415611720576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117179061463a565b60405180910390fd5b6002600981905550601360019054906101000a900460ff1615611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f906145da565b60405180910390fd5b60008111801561179c57506014548161178f610e21565b61179991906147c2565b11155b6117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d29061457a565b60405180910390fd5b6117e3611585565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c685760011515601360009054906101000a900460ff1615151415611aec5760011515600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bb9061465a565b60405180910390fd5b60115481600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461191291906147c2565b1115611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194a9061453a565b60405180910390fd5b601154811115611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f9061461a565b60405180910390fd5b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611a3457806010546119ed9190614849565b341015611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a269061455a565b60405180910390fd5b611a91565b600181611a4191906148a3565b601054611a4e9190614849565b341015611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a879061459a565b60405180910390fd5b5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ae091906147c2565b92505081905550611c67565b60125481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b3a91906147c2565b1115611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b729061453a565b60405180910390fd5b601254811115611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb79061461a565b60405180910390fd5b80600f54611bce9190614849565b341015611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c079061455a565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c5f91906147c2565b925050819055505b5b611c723382612f2e565b600160098190555050565b611c85612652565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cea576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611cf7612652565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611da4612652565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611de991906144dd565b60405180910390a35050565b611dfd612652565b73ffffffffffffffffffffffffffffffffffffffff16611e1b611585565b73ffffffffffffffffffffffffffffffffffffffff1614611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e68906145ba565b60405180910390fd5b611e7b8183612f2e565b5050565b600a6020528060005260406000206000915090505481565b611ea2848484612715565b611ec18373ffffffffffffffffffffffffffffffffffffffff16612f4c565b8015611ed65750611ed484848484612f6f565b155b15611f0d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611f1b612652565b73ffffffffffffffffffffffffffffffffffffffff16611f39611585565b73ffffffffffffffffffffffffffffffffffffffff1614611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f86906145ba565b60405180910390fd5b8060118190555050565b600d8054611fa69061498d565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd29061498d565b801561201f5780601f10611ff45761010080835404028352916020019161201f565b820191906000526020600020905b81548152906001019060200180831161200257829003601f168201915b505050505081565b60115481565b606061203882612604565b612077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206e906145fa565b60405180910390fd5b60001515601360029054906101000a900460ff161515141561212557600d80546120a09061498d565b80601f01602080910402602001604051908101604052809291908181526020018280546120cc9061498d565b80156121195780601f106120ee57610100808354040283529160200191612119565b820191906000526020600020905b8154815290600101906020018083116120fc57829003601f168201915b5050505050905061217e565b600061212f6130cf565b9050600081511161214f576040518060200160405280600081525061217a565b8061215984613161565b60405160200161216a929190614432565b6040516020818303038152906040525b9150505b919050565b61218b612652565b73ffffffffffffffffffffffffffffffffffffffff166121a9611585565b73ffffffffffffffffffffffffffffffffffffffff16146121ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f6906145ba565b60405180910390fd5b8060108190555050565b60145481565b600b6020528060005260406000206000915090505481565b61222f612652565b73ffffffffffffffffffffffffffffffffffffffff1661224d611585565b73ffffffffffffffffffffffffffffffffffffffff16146122a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229a906145ba565b60405180910390fd5b80601360026101000a81548160ff02191690831515021790555050565b6122c8612652565b73ffffffffffffffffffffffffffffffffffffffff166122e6611585565b73ffffffffffffffffffffffffffffffffffffffff161461233c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612333906145ba565b60405180910390fd5b60005b815181101561237e5761236b82828151811061235e5761235d614af7565b5b6020026020010151612bcb565b8080612376906149f0565b91505061233f565b5050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612424612652565b73ffffffffffffffffffffffffffffffffffffffff16612442611585565b73ffffffffffffffffffffffffffffffffffffffff1614612498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248f906145ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff9061451a565b60405180910390fd5b61251181612e68565b50565b61251c612652565b73ffffffffffffffffffffffffffffffffffffffff1661253a611585565b73ffffffffffffffffffffffffffffffffffffffff1614612590576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612587906145ba565b60405180910390fd5b8060128190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161260f61270c565b1115801561261e575060005482105b801561264b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061272082612bd9565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461278b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127ac612652565b73ffffffffffffffffffffffffffffffffffffffff1614806127db57506127da856127d5612652565b612388565b5b8061282057506127e9612652565b73ffffffffffffffffffffffffffffffffffffffff1661280884610c01565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612859576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128c0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128cd85858560016132c2565b6128d96000848761265a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b59576000548214612b5857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bc485858560016132c8565b5050505050565b612bd68160006132ce565b50565b612be1613b24565b600082905080612bef61270c565b11158015612bfe575060005481105b15612e31576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e2f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d13578092505050612e63565b5b600115612e2e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e29578092505050612e63565b612d14565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f488282604051806020016040528060008152506136be565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f95612652565b8786866040518563ffffffff1660e01b8152600401612fb79493929190614491565b602060405180830381600087803b158015612fd157600080fd5b505af192505050801561300257506040513d601f19601f82011682018060405250810190612fff91906140b8565b60015b61307c573d8060008114613032576040519150601f19603f3d011682016040523d82523d6000602084013e613037565b606091505b50600081511415613074576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546130de9061498d565b80601f016020809104026020016040519081016040528092919081815260200182805461310a9061498d565b80156131575780601f1061312c57610100808354040283529160200191613157565b820191906000526020600020905b81548152906001019060200180831161313a57829003601f168201915b5050505050905090565b606060008214156131a9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132bd565b600082905060005b600082146131db5780806131c4906149f0565b915050600a826131d49190614818565b91506131b1565b60008167ffffffffffffffff8111156131f7576131f6614b26565b5b6040519080825280601f01601f1916602001820160405280156132295781602001600182028036833780820191505090505b5090505b600085146132b65760018261324291906148a3565b9150600a856132519190614a39565b603061325d91906147c2565b60f81b81838151811061327357613272614af7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132af9190614818565b945061322d565b8093505050505b919050565b50505050565b50505050565b60006132d983612bd9565b905060008160000151905082156133ba5760008173ffffffffffffffffffffffffffffffffffffffff1661330b612652565b73ffffffffffffffffffffffffffffffffffffffff16148061333a575061333982613334612652565b612388565b5b8061337f5750613348612652565b73ffffffffffffffffffffffffffffffffffffffff1661336786610c01565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806133b8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b6133c88160008660016132c2565b6133d46000858361265a565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561363857600054821461363757848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136a68160008660016132c8565b60016000815480929190600101919050555050505050565b6136cb83838360016136d0565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561373d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613778576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61378560008683876132c2565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561394f575061394e8773ffffffffffffffffffffffffffffffffffffffff16612f4c565b5b15613a15575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139c46000888480600101955088612f6f565b6139fa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613955578260005414613a1057600080fd5b613a81565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613a16575b816000819055505050613a9760008683876132c8565b5050505050565b828054613aaa9061498d565b90600052602060002090601f016020900481019282613acc5760008555613b13565b82601f10613ae557805160ff1916838001178555613b13565b82800160010185558215613b13579182015b82811115613b12578251825591602001919060010190613af7565b5b509050613b209190613b67565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b80576000816000905550600101613b68565b5090565b6000613b97613b92846146ba565b614695565b90508083825260208201905082856020860282011115613bba57613bb9614b5a565b5b60005b85811015613bea5781613bd08882613ce8565b845260208401935060208301925050600181019050613bbd565b5050509392505050565b6000613c07613c02846146e6565b614695565b90508083825260208201905082856020860282011115613c2a57613c29614b5a565b5b60005b85811015613c5a5781613c408882613df4565b845260208401935060208301925050600181019050613c2d565b5050509392505050565b6000613c77613c7284614712565b614695565b905082815260208101848484011115613c9357613c92614b5f565b5b613c9e84828561494b565b509392505050565b6000613cb9613cb484614743565b614695565b905082815260208101848484011115613cd557613cd4614b5f565b5b613ce084828561494b565b509392505050565b600081359050613cf781614e06565b92915050565b600082601f830112613d1257613d11614b55565b5b8135613d22848260208601613b84565b91505092915050565b600082601f830112613d4057613d3f614b55565b5b8135613d50848260208601613bf4565b91505092915050565b600081359050613d6881614e1d565b92915050565b600081359050613d7d81614e34565b92915050565b600081519050613d9281614e34565b92915050565b600082601f830112613dad57613dac614b55565b5b8135613dbd848260208601613c64565b91505092915050565b600082601f830112613ddb57613dda614b55565b5b8135613deb848260208601613ca6565b91505092915050565b600081359050613e0381614e4b565b92915050565b600060208284031215613e1f57613e1e614b69565b5b6000613e2d84828501613ce8565b91505092915050565b60008060408385031215613e4d57613e4c614b69565b5b6000613e5b85828601613ce8565b9250506020613e6c85828601613ce8565b9150509250929050565b600080600060608486031215613e8f57613e8e614b69565b5b6000613e9d86828701613ce8565b9350506020613eae86828701613ce8565b9250506040613ebf86828701613df4565b9150509250925092565b60008060008060808587031215613ee357613ee2614b69565b5b6000613ef187828801613ce8565b9450506020613f0287828801613ce8565b9350506040613f1387828801613df4565b925050606085013567ffffffffffffffff811115613f3457613f33614b64565b5b613f4087828801613d98565b91505092959194509250565b60008060408385031215613f6357613f62614b69565b5b6000613f7185828601613ce8565b9250506020613f8285828601613d59565b9150509250929050565b60008060408385031215613fa357613fa2614b69565b5b6000613fb185828601613ce8565b9250506020613fc285828601613df4565b9150509250929050565b600060208284031215613fe257613fe1614b69565b5b600082013567ffffffffffffffff81111561400057613fff614b64565b5b61400c84828501613cfd565b91505092915050565b60006020828403121561402b5761402a614b69565b5b600082013567ffffffffffffffff81111561404957614048614b64565b5b61405584828501613d2b565b91505092915050565b60006020828403121561407457614073614b69565b5b600061408284828501613d59565b91505092915050565b6000602082840312156140a1576140a0614b69565b5b60006140af84828501613d6e565b91505092915050565b6000602082840312156140ce576140cd614b69565b5b60006140dc84828501613d83565b91505092915050565b6000602082840312156140fb576140fa614b69565b5b600082013567ffffffffffffffff81111561411957614118614b64565b5b61412584828501613dc6565b91505092915050565b60006020828403121561414457614143614b69565b5b600061415284828501613df4565b91505092915050565b6000806040838503121561417257614171614b69565b5b600061418085828601613df4565b925050602061419185828601613ce8565b9150509250929050565b6141a4816148d7565b82525050565b6141b3816148e9565b82525050565b60006141c482614774565b6141ce818561478a565b93506141de81856020860161495a565b6141e781614b6e565b840191505092915050565b60006141fd8261477f565b61420781856147a6565b935061421781856020860161495a565b61422081614b6e565b840191505092915050565b60006142368261477f565b61424081856147b7565b935061425081856020860161495a565b80840191505092915050565b60006142696026836147a6565b915061427482614b7f565b604082019050919050565b600061428c6025836147a6565b915061429782614bce565b604082019050919050565b60006142af6013836147a6565b91506142ba82614c1d565b602082019050919050565b60006142d2600f836147a6565b91506142dd82614c46565b602082019050919050565b60006142f56005836147b7565b915061430082614c6f565b600582019050919050565b60006143186014836147a6565b915061432382614c98565b602082019050919050565b600061433b6020836147a6565b915061434682614cc1565b602082019050919050565b600061435e6017836147a6565b915061436982614cea565b602082019050919050565b6000614381602f836147a6565b915061438c82614d13565b604082019050919050565b60006143a460008361479b565b91506143af82614d62565b600082019050919050565b60006143c76035836147a6565b91506143d282614d65565b604082019050919050565b60006143ea601f836147a6565b91506143f582614db4565b602082019050919050565b600061440d6017836147a6565b915061441882614ddd565b602082019050919050565b61442c81614941565b82525050565b600061443e828561422b565b915061444a828461422b565b9150614455826142e8565b91508190509392505050565b600061446c82614397565b9150819050919050565b600060208201905061448b600083018461419b565b92915050565b60006080820190506144a6600083018761419b565b6144b3602083018661419b565b6144c06040830185614423565b81810360608301526144d281846141b9565b905095945050505050565b60006020820190506144f260008301846141aa565b92915050565b6000602082019050818103600083015261451281846141f2565b905092915050565b600060208201905081810360008301526145338161425c565b9050919050565b600060208201905081810360008301526145538161427f565b9050919050565b60006020820190508181036000830152614573816142a2565b9050919050565b60006020820190508181036000830152614593816142c5565b9050919050565b600060208201905081810360008301526145b38161430b565b9050919050565b600060208201905081810360008301526145d38161432e565b9050919050565b600060208201905081810360008301526145f381614351565b9050919050565b6000602082019050818103600083015261461381614374565b9050919050565b60006020820190508181036000830152614633816143ba565b9050919050565b60006020820190508181036000830152614653816143dd565b9050919050565b6000602082019050818103600083015261467381614400565b9050919050565b600060208201905061468f6000830184614423565b92915050565b600061469f6146b0565b90506146ab82826149bf565b919050565b6000604051905090565b600067ffffffffffffffff8211156146d5576146d4614b26565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561470157614700614b26565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561472d5761472c614b26565b5b61473682614b6e565b9050602081019050919050565b600067ffffffffffffffff82111561475e5761475d614b26565b5b61476782614b6e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006147cd82614941565b91506147d883614941565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561480d5761480c614a6a565b5b828201905092915050565b600061482382614941565b915061482e83614941565b92508261483e5761483d614a99565b5b828204905092915050565b600061485482614941565b915061485f83614941565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561489857614897614a6a565b5b828202905092915050565b60006148ae82614941565b91506148b983614941565b9250828210156148cc576148cb614a6a565b5b828203905092915050565b60006148e282614921565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561497857808201518184015260208101905061495d565b83811115614987576000848401525b50505050565b600060028204905060018216806149a557607f821691505b602082108114156149b9576149b8614ac8565b5b50919050565b6149c882614b6e565b810181811067ffffffffffffffff821117156149e7576149e6614b26565b5b80604052505050565b60006149fb82614941565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a2e57614a2d614a6a565b5b600182019050919050565b6000614a4482614941565b9150614a4f83614941565b925082614a5f57614a5e614a99565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e7420746869732060008201527f6d75636821000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742046756e64732100000000000000000000000000600082015250565b7f496e76616c696420616d6f756e74210000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f496e6e73756666696369656e742046756e647321000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e74206d6f72652060008201527f7468616e206d6178204d696e7420416d6f756e74210000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f596f75277265206e6f742077686974656c697374656421000000000000000000600082015250565b614e0f816148d7565b8114614e1a57600080fd5b50565b614e26816148e9565b8114614e3157600080fd5b50565b614e3d816148f5565b8114614e4857600080fd5b50565b614e5481614941565b8114614e5f57600080fd5b5056fea264697066735822122071761a0a94bb3a53461b0f65cb88193bdab7b4cfd21545afcd394c8eeb1cfdeb64736f6c63430008070033

Deployed Bytecode Sourcemap

47688:5329:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29885:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47965:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32998:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34501:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34064:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51766:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29134:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35366:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52601:413;;;;;;;;;;;;;:::i;:::-;;35607:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52316:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50812:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51956:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48267:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52076:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48235:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32806:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47899:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30254:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7623:103;;;;;;;;;;;;;:::i;:::-;;48156:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51661:99;;;;;;;;;;;;;:::i;:::-;;51207:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48025:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6972:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33167:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48194:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51560:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48475:1420;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34777:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52190:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47784:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35863:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51054:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47927:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48118;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50082:722;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50924:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48294:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47839:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51859:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52402:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48070:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35135:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7881:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51444:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29885:305;29987:4;30039:25;30024:40;;;:11;:40;;;;:105;;;;30096:33;30081:48;;;:11;:48;;;;30024:105;:158;;;;30146:36;30170:11;30146:23;:36::i;:::-;30024:158;30004:178;;29885:305;;;:::o;47965:53::-;;;;;;;;;;;;;;;;;;;;;;:::o;32998:100::-;33052:13;33085:5;33078:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32998:100;:::o;34501:204::-;34569:7;34594:16;34602:7;34594;:16::i;:::-;34589:64;;34619:34;;;;;;;;;;;;;;34589:64;34673:15;:24;34689:7;34673:24;;;;;;;;;;;;;;;;;;;;;34666:31;;34501:204;;;:::o;34064:371::-;34137:13;34153:24;34169:7;34153:15;:24::i;:::-;34137:40;;34198:5;34192:11;;:2;:11;;;34188:48;;;34212:24;;;;;;;;;;;;;;34188:48;34269:5;34253:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34279:37;34296:5;34303:12;:10;:12::i;:::-;34279:16;:37::i;:::-;34278:38;34253:63;34249:138;;;34340:35;;;;;;;;;;;;;;34249:138;34399:28;34408:2;34412:7;34421:5;34399:8;:28::i;:::-;34126:309;34064:371;;:::o;51766:85::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51837:6:::1;51828;;:15;;;;;;;;;;;;;;;;;;51766:85:::0;:::o;29134:303::-;29178:7;29403:15;:13;:15::i;:::-;29388:12;;29372:13;;:28;:46;29365:53;;29134:303;:::o;35366:170::-;35500:28;35510:4;35516:2;35520:7;35500:9;:28::i;:::-;35366:170;;;:::o;52601:413::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52826:7:::1;52847;:5;:7::i;:::-;52839:21;;52868;52839:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52825:69;;;52913:2;52905:11;;;::::0;::::1;;52638:376;52601:413::o:0;35607:185::-;35745:39;35762:4;35768:2;35772:7;35745:39;;;;;;;;;;;;:16;:39::i;:::-;35607:185;;;:::o;52316:80::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52374:14:::1;52380:7;52374:5;:14::i;:::-;52316:80:::0;:::o;50812:106::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50896:14:::1;50883:10;:27;;;;50812:106:::0;:::o;51956:112::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52056:4:::1;52036:17;:24;;;;;;;;;;;;:::i;:::-;;51956:112:::0;:::o;48267:20::-;;;;;;;;;;;;;:::o;52076:106::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52163:11:::1;52153:7;:21;;;;;;;;;;;;:::i;:::-;;52076:106:::0;:::o;48235:25::-;;;;;;;;;;;;;:::o;32806:125::-;32870:7;32897:21;32910:7;32897:12;:21::i;:::-;:26;;;32890:33;;32806:125;;;:::o;47899:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30254:206::-;30318:7;30359:1;30342:19;;:5;:19;;;30338:60;;;30370:28;;;;;;;;;;;;;;30338:60;30424:12;:19;30437:5;30424:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30416:36;;30409:43;;30254:206;;;:::o;7623:103::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7688:30:::1;7715:1;7688:18;:30::i;:::-;7623:103::o:0;48156:29::-;;;;:::o;51661:99::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51737:15:::1;;;;;;;;;;;51736:16;51718:15;;:34;;;;;;;;;;;;;;;;;;51661:99::o:0;51207:231::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51302:9:::1;51298:133;51321:18;:25;51318:1;:28;51298:133;;;51415:4;51369:20;:43;51390:18;51409:1;51390:21;;;;;;;;:::i;:::-;;;;;;;;51369:43;;;;;;;;;;;;;;;;:50;;;;;;;;;;;;;;;;;;51348:4;;;;;:::i;:::-;;;;51298:133;;;;51207:231:::0;:::o;48025:38::-;;;;:::o;6972:87::-;7018:7;7045:6;;;;;;;;;;;7038:13;;6972:87;:::o;33167:104::-;33223:13;33256:7;33249:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33167:104;:::o;48194:34::-;;;;;;;;;;;;;:::o;51560:95::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51640:7:::1;51628:9;:19;;;;51560:95:::0;:::o;48475:1420::-;1785:1;2383:7;;:19;;2375:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1785:1;2516:7;:18;;;;48557:6:::1;;;;;;;;;;;48556:7;48548:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;48621:1;48610:8;:12;:53;;;;;48654:9;;48642:8;48626:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;48610:53;48602:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;48714:7;:5;:7::i;:::-;48700:21;;:10;:21;;;48696:1150;;48774:4;48755:23;;:15;;;;;;;;;;;:23;;;48752:1083;;;48843:4;48807:40;;:20;:32;48828:10;48807:32;;;;;;;;;;;;;;;;;;;;;;;;;:40;;;48799:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;48945:12;;48933:8;48902:16;:28;48919:10;48902:28;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:55;;48894:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;49038:12;;49026:8;:24;;49018:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;49158:1;49126:16;:28;49143:10;49126:28;;;;;;;;;;;;;;;;:33;49123:237;;49215:8;49199:13;;:24;;;;:::i;:::-;49186:9;:37;;49178:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49123:237;;;49333:1;49322:8;:12;;;;:::i;:::-;49305:13;;:30;;;;:::i;:::-;49292:9;:43;;49284:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;49123:237;49411:8;49379:16;:28;49396:10;49379:28;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;48752:1083;;;49521:9;;49509:8;49481:13;:25;49495:10;49481:25;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:49;;49473:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;49611:9;;49599:8;:21;;49591:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;49731:8;49718:10;;:21;;;;:::i;:::-;49705:9;:34;;49697:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49811:8;49782:13;:25;49796:10;49782:25;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;48752:1083;48696:1150;49856:31;49866:10;49878:8;49856:9;:31::i;:::-;1741:1:::0;2695:7;:22;;;;48475:1420;:::o;34777:287::-;34888:12;:10;:12::i;:::-;34876:24;;:8;:24;;;34872:54;;;34909:17;;;;;;;;;;;;;;34872:54;34984:8;34939:18;:32;34958:12;:10;:12::i;:::-;34939:32;;;;;;;;;;;;;;;:42;34972:8;34939:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35037:8;35008:48;;35023:12;:10;:12::i;:::-;35008:48;;;35047:8;35008:48;;;;;;:::i;:::-;;;;;;;;34777:287;;:::o;52190:120::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52273:29:::1;52283:8;52293;52273:9;:29::i;:::-;52190:120:::0;;:::o;47784:48::-;;;;;;;;;;;;;;;;;:::o;35863:369::-;36030:28;36040:4;36046:2;36050:7;36030:9;:28::i;:::-;36073:15;:2;:13;;;:15::i;:::-;:76;;;;;36093:56;36124:4;36130:2;36134:7;36143:5;36093:30;:56::i;:::-;36092:57;36073:76;36069:156;;;36173:40;;;;;;;;;;;;;;36069:156;35863:369;;;;:::o;51054:147::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51168:25:::1;51153:12;:40;;;;51054:147:::0;:::o;47927:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48118:::-;;;;:::o;50082:722::-;50200:13;50253:16;50261:7;50253;:16::i;:::-;50231:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;50373:5;50361:17;;:8;;;;;;;;;;;:17;;;50357:74;;;50402:17;50395:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50357:74;50443:28;50474:10;:8;:10::i;:::-;50443:41;;50546:1;50521:14;50515:28;:32;:281;;;;;;;;;;;;;;;;;50639:14;50680:18;:7;:16;:18::i;:::-;50596:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50515:281;50495:301;;;50082:722;;;;:::o;50924:124::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51023:17:::1;51007:13;:33;;;;50924:124:::0;:::o;48294:31::-;;;;:::o;47839:51::-;;;;;;;;;;;;;;;;;:::o;51859:89::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51934:6:::1;51923:8;;:17;;;;;;;;;;;;;;;;;;51859:89:::0;:::o;52402:191::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52480:13:::1;52475:111;52507:8;:15;52499:5;:23;52475:111;;;52552:22;52558:8;52567:5;52558:15;;;;;;;;:::i;:::-;;;;;;;;52552:5;:22::i;:::-;52524:7;;;;;:::i;:::-;;;;52475:111;;;;52402:191:::0;:::o;48070:41::-;;;;:::o;35135:164::-;35232:4;35256:18;:25;35275:5;35256:25;;;;;;;;;;;;;;;:35;35282:8;35256:35;;;;;;;;;;;;;;;;;;;;;;;;;35249:42;;35135:164;;;;:::o;7881:201::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7990:1:::1;7970:22;;:8;:22;;;;7962:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8046:28;8065:8;8046:18;:28::i;:::-;7881:201:::0;:::o;51444:108::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51531:13:::1;51519:9;:25;;;;51444:108:::0;:::o;19779:157::-;19864:4;19903:25;19888:40;;;:11;:40;;;;19881:47;;19779:157;;;:::o;36487:174::-;36544:4;36587:7;36568:15;:13;:15::i;:::-;:26;;:53;;;;;36608:13;;36598:7;:23;36568:53;:85;;;;;36626:11;:20;36638:7;36626:20;;;;;;;;;;;:27;;;;;;;;;;;;36625:28;36568:85;36561:92;;36487:174;;;:::o;5696:98::-;5749:7;5776:10;5769:17;;5696:98;:::o;44644:196::-;44786:2;44759:15;:24;44775:7;44759:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44824:7;44820:2;44804:28;;44813:5;44804:28;;;;;;;;;;;;44644:196;;;:::o;28908:92::-;28964:7;28991:1;28984:8;;28908:92;:::o;39587:2130::-;39702:35;39740:21;39753:7;39740:12;:21::i;:::-;39702:59;;39800:4;39778:26;;:13;:18;;;:26;;;39774:67;;39813:28;;;;;;;;;;;;;;39774:67;39854:22;39896:4;39880:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39917:36;39934:4;39940:12;:10;:12::i;:::-;39917:16;:36::i;:::-;39880:73;:126;;;;39994:12;:10;:12::i;:::-;39970:36;;:20;39982:7;39970:11;:20::i;:::-;:36;;;39880:126;39854:153;;40025:17;40020:66;;40051:35;;;;;;;;;;;;;;40020:66;40115:1;40101:16;;:2;:16;;;40097:52;;;40126:23;;;;;;;;;;;;;;40097:52;40162:43;40184:4;40190:2;40194:7;40203:1;40162:21;:43::i;:::-;40270:35;40287:1;40291:7;40300:4;40270:8;:35::i;:::-;40631:1;40601:12;:18;40614:4;40601:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40675:1;40647:12;:16;40660:2;40647:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40693:31;40727:11;:20;40739:7;40727:20;;;;;;;;;;;40693:54;;40778:2;40762:8;:13;;;:18;;;;;;;;;;;;;;;;;;40828:15;40795:8;:23;;;:49;;;;;;;;;;;;;;;;;;41096:19;41128:1;41118:7;:11;41096:33;;41144:31;41178:11;:24;41190:11;41178:24;;;;;;;;;;;41144:58;;41246:1;41221:27;;:8;:13;;;;;;;;;;;;:27;;;41217:384;;;41431:13;;41416:11;:28;41412:174;;41485:4;41469:8;:13;;;:20;;;;;;;;;;;;;;;;;;41538:13;:28;;;41512:8;:23;;;:54;;;;;;;;;;;;;;;;;;41412:174;41217:384;40576:1036;;;41648:7;41644:2;41629:27;;41638:4;41629:27;;;;;;;;;;;;41667:42;41688:4;41694:2;41698:7;41707:1;41667:20;:42::i;:::-;39691:2026;;39587:2130;;;:::o;41800:89::-;41860:21;41866:7;41875:5;41860;:21::i;:::-;41800:89;:::o;31635:1109::-;31697:21;;:::i;:::-;31731:12;31746:7;31731:22;;31814:4;31795:15;:13;:15::i;:::-;:23;;:47;;;;;31829:13;;31822:4;:20;31795:47;31791:886;;;31863:31;31897:11;:17;31909:4;31897:17;;;;;;;;;;;31863:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31938:9;:16;;;31933:729;;32009:1;31983:28;;:9;:14;;;:28;;;31979:101;;32047:9;32040:16;;;;;;31979:101;32382:261;32389:4;32382:261;;;32422:6;;;;;;;;32467:11;:17;32479:4;32467:17;;;;;;;;;;;32455:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32541:1;32515:28;;:9;:14;;;:28;;;32511:109;;32583:9;32576:16;;;;;;32511:109;32382:261;;;31933:729;31844:833;31791:886;32705:31;;;;;;;;;;;;;;31635:1109;;;;:::o;8242:191::-;8316:16;8335:6;;;;;;;;;;;8316:25;;8361:8;8352:6;;:17;;;;;;;;;;;;;;;;;;8416:8;8385:40;;8406:8;8385:40;;;;;;;;;;;;8305:128;8242:191;:::o;36669:104::-;36738:27;36748:2;36752:8;36738:27;;;;;;;;;;;;:9;:27::i;:::-;36669:104;;:::o;9673:326::-;9733:4;9990:1;9968:7;:19;;;:23;9961:30;;9673:326;;;:::o;45332:667::-;45495:4;45532:2;45516:36;;;45553:12;:10;:12::i;:::-;45567:4;45573:7;45582:5;45516:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45512:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45767:1;45750:6;:13;:18;45746:235;;;45796:40;;;;;;;;;;;;;;45746:235;45939:6;45933:13;45924:6;45920:2;45916:15;45909:38;45512:480;45645:45;;;45635:55;;;:6;:55;;;;45628:62;;;45332:667;;;;;;:::o;49903:108::-;49963:13;49996:7;49989:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49903:108;:::o;3258:723::-;3314:13;3544:1;3535:5;:10;3531:53;;;3562:10;;;;;;;;;;;;;;;;;;;;;3531:53;3594:12;3609:5;3594:20;;3625:14;3650:78;3665:1;3657:4;:9;3650:78;;3683:8;;;;;:::i;:::-;;;;3714:2;3706:10;;;;;:::i;:::-;;;3650:78;;;3738:19;3770:6;3760:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3738:39;;3788:154;3804:1;3795:5;:10;3788:154;;3832:1;3822:11;;;;;:::i;:::-;;;3899:2;3891:5;:10;;;;:::i;:::-;3878:2;:24;;;;:::i;:::-;3865:39;;3848:6;3855;3848:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3928:2;3919:11;;;;;:::i;:::-;;;3788:154;;;3966:6;3952:21;;;;;3258:723;;;;:::o;46647:159::-;;;;;:::o;47465:158::-;;;;;:::o;42118:2408::-;42198:35;42236:21;42249:7;42236:12;:21::i;:::-;42198:59;;42270:12;42285:13;:18;;;42270:33;;42320:13;42316:290;;;42350:22;42392:4;42376:20;;:12;:10;:12::i;:::-;:20;;;:77;;;;42417:36;42434:4;42440:12;:10;:12::i;:::-;42417:16;:36::i;:::-;42376:77;:134;;;;42498:12;:10;:12::i;:::-;42474:36;;:20;42486:7;42474:11;:20::i;:::-;:36;;;42376:134;42350:161;;42533:17;42528:66;;42559:35;;;;;;;;;;;;;;42528:66;42335:271;42316:290;42618:51;42640:4;42654:1;42658:7;42667:1;42618:21;:51::i;:::-;42734:35;42751:1;42755:7;42764:4;42734:8;:35::i;:::-;43065:31;43099:12;:18;43112:4;43099:18;;;;;;;;;;;;;;;43065:52;;43155:1;43132:11;:19;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43199:1;43171:11;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43299:31;43333:11;:20;43345:7;43333:20;;;;;;;;;;;43299:54;;43384:4;43368:8;:13;;;:20;;;;;;;;;;;;;;;;;;43436:15;43403:8;:23;;;:49;;;;;;;;;;;;;;;;;;43485:4;43467:8;:15;;;:22;;;;;;;;;;;;;;;;;;43737:19;43769:1;43759:7;:11;43737:33;;43785:31;43819:11;:24;43831:11;43819:24;;;;;;;;;;;43785:58;;43887:1;43862:27;;:8;:13;;;;;;;;;;;;:27;;;43858:384;;;44072:13;;44057:11;:28;44053:174;;44126:4;44110:8;:13;;;:20;;;;;;;;;;;;;;;;;;44179:13;:28;;;44153:8;:23;;;:54;;;;;;;;;;;;;;;;;;44053:174;43858:384;43040:1213;;;;44297:7;44293:1;44270:35;;44279:4;44270:35;;;;;;;;;;;;44316:50;44337:4;44351:1;44355:7;44364:1;44316:20;:50::i;:::-;44493:12;;:14;;;;;;;;;;;;;42187:2339;;42118:2408;;:::o;37136:163::-;37259:32;37265:2;37269:8;37279:5;37286:4;37259:5;:32::i;:::-;37136:163;;;:::o;37558:1775::-;37697:20;37720:13;;37697:36;;37762:1;37748:16;;:2;:16;;;37744:48;;;37773:19;;;;;;;;;;;;;;37744:48;37819:1;37807:8;:13;37803:44;;;37829:18;;;;;;;;;;;;;;37803:44;37860:61;37890:1;37894:2;37898:12;37912:8;37860:21;:61::i;:::-;38233:8;38198:12;:16;38211:2;38198:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38297:8;38257:12;:16;38270:2;38257:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38356:2;38323:11;:25;38335:12;38323:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38423:15;38373:11;:25;38385:12;38373:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38456:20;38479:12;38456:35;;38506:11;38535:8;38520:12;:23;38506:37;;38564:4;:23;;;;;38572:15;:2;:13;;;:15::i;:::-;38564:23;38560:641;;;38608:314;38664:12;38660:2;38639:38;;38656:1;38639:38;;;;;;;;;;;;38705:69;38744:1;38748:2;38752:14;;;;;;38768:5;38705:30;:69::i;:::-;38700:174;;38810:40;;;;;;;;;;;;;;38700:174;38917:3;38901:12;:19;;38608:314;;39003:12;38986:13;;:29;38982:43;;39017:8;;;38982:43;38560:641;;;39066:120;39122:14;;;;;;39118:2;39097:40;;39114:1;39097:40;;;;;;;;;;;;39181:3;39165:12;:19;;39066:120;;38560:641;39231:12;39215:13;:28;;;;38173:1082;;39265:60;39294:1;39298:2;39302:12;39316:8;39265:20;:60::i;:::-;37686:1647;37558:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:::-;2957:5;3006:3;2999:4;2991:6;2987:17;2983:27;2973:122;;3014:79;;:::i;:::-;2973:122;3131:6;3118:20;3156:94;3246:3;3238:6;3231:4;3223:6;3219:17;3156:94;:::i;:::-;3147:103;;2963:293;2886:370;;;;:::o;3262:133::-;3305:5;3343:6;3330:20;3321:29;;3359:30;3383:5;3359:30;:::i;:::-;3262:133;;;;:::o;3401:137::-;3446:5;3484:6;3471:20;3462:29;;3500:32;3526:5;3500:32;:::i;:::-;3401:137;;;;:::o;3544:141::-;3600:5;3631:6;3625:13;3616:22;;3647:32;3673:5;3647:32;:::i;:::-;3544:141;;;;:::o;3704:338::-;3759:5;3808:3;3801:4;3793:6;3789:17;3785:27;3775:122;;3816:79;;:::i;:::-;3775:122;3933:6;3920:20;3958:78;4032:3;4024:6;4017:4;4009:6;4005:17;3958:78;:::i;:::-;3949:87;;3765:277;3704:338;;;;:::o;4062:340::-;4118:5;4167:3;4160:4;4152:6;4148:17;4144:27;4134:122;;4175:79;;:::i;:::-;4134:122;4292:6;4279:20;4317:79;4392:3;4384:6;4377:4;4369:6;4365:17;4317:79;:::i;:::-;4308:88;;4124:278;4062:340;;;;:::o;4408:139::-;4454:5;4492:6;4479:20;4470:29;;4508:33;4535:5;4508:33;:::i;:::-;4408:139;;;;:::o;4553:329::-;4612:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:119;;;4667:79;;:::i;:::-;4629:119;4787:1;4812:53;4857:7;4848:6;4837:9;4833:22;4812:53;:::i;:::-;4802:63;;4758:117;4553:329;;;;:::o;4888:474::-;4956:6;4964;5013:2;5001:9;4992:7;4988:23;4984:32;4981:119;;;5019:79;;:::i;:::-;4981:119;5139:1;5164:53;5209:7;5200:6;5189:9;5185:22;5164:53;:::i;:::-;5154:63;;5110:117;5266:2;5292:53;5337:7;5328:6;5317:9;5313:22;5292:53;:::i;:::-;5282:63;;5237:118;4888:474;;;;;:::o;5368:619::-;5445:6;5453;5461;5510:2;5498:9;5489:7;5485:23;5481:32;5478:119;;;5516:79;;:::i;:::-;5478:119;5636:1;5661:53;5706:7;5697:6;5686:9;5682:22;5661:53;:::i;:::-;5651:63;;5607:117;5763:2;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5734:118;5891:2;5917:53;5962:7;5953:6;5942:9;5938:22;5917:53;:::i;:::-;5907:63;;5862:118;5368:619;;;;;:::o;5993:943::-;6088:6;6096;6104;6112;6161:3;6149:9;6140:7;6136:23;6132:33;6129:120;;;6168:79;;:::i;:::-;6129:120;6288:1;6313:53;6358:7;6349:6;6338:9;6334:22;6313:53;:::i;:::-;6303:63;;6259:117;6415:2;6441:53;6486:7;6477:6;6466:9;6462:22;6441:53;:::i;:::-;6431:63;;6386:118;6543:2;6569:53;6614:7;6605:6;6594:9;6590:22;6569:53;:::i;:::-;6559:63;;6514:118;6699:2;6688:9;6684:18;6671:32;6730:18;6722:6;6719:30;6716:117;;;6752:79;;:::i;:::-;6716:117;6857:62;6911:7;6902:6;6891:9;6887:22;6857:62;:::i;:::-;6847:72;;6642:287;5993:943;;;;;;;:::o;6942:468::-;7007:6;7015;7064:2;7052:9;7043:7;7039:23;7035:32;7032:119;;;7070:79;;:::i;:::-;7032:119;7190:1;7215:53;7260:7;7251:6;7240:9;7236:22;7215:53;:::i;:::-;7205:63;;7161:117;7317:2;7343:50;7385:7;7376:6;7365:9;7361:22;7343:50;:::i;:::-;7333:60;;7288:115;6942:468;;;;;:::o;7416:474::-;7484:6;7492;7541:2;7529:9;7520:7;7516:23;7512:32;7509:119;;;7547:79;;:::i;:::-;7509:119;7667:1;7692:53;7737:7;7728:6;7717:9;7713:22;7692:53;:::i;:::-;7682:63;;7638:117;7794:2;7820:53;7865:7;7856:6;7845:9;7841:22;7820:53;:::i;:::-;7810:63;;7765:118;7416:474;;;;;:::o;7896:539::-;7980:6;8029:2;8017:9;8008:7;8004:23;8000:32;7997:119;;;8035:79;;:::i;:::-;7997:119;8183:1;8172:9;8168:17;8155:31;8213:18;8205:6;8202:30;8199:117;;;8235:79;;:::i;:::-;8199:117;8340:78;8410:7;8401:6;8390:9;8386:22;8340:78;:::i;:::-;8330:88;;8126:302;7896:539;;;;:::o;8441:::-;8525:6;8574:2;8562:9;8553:7;8549:23;8545:32;8542:119;;;8580:79;;:::i;:::-;8542:119;8728:1;8717:9;8713:17;8700:31;8758:18;8750:6;8747:30;8744:117;;;8780:79;;:::i;:::-;8744:117;8885:78;8955:7;8946:6;8935:9;8931:22;8885:78;:::i;:::-;8875:88;;8671:302;8441:539;;;;:::o;8986:323::-;9042:6;9091:2;9079:9;9070:7;9066:23;9062:32;9059:119;;;9097:79;;:::i;:::-;9059:119;9217:1;9242:50;9284:7;9275:6;9264:9;9260:22;9242:50;:::i;:::-;9232:60;;9188:114;8986:323;;;;:::o;9315:327::-;9373:6;9422:2;9410:9;9401:7;9397:23;9393:32;9390:119;;;9428:79;;:::i;:::-;9390:119;9548:1;9573:52;9617:7;9608:6;9597:9;9593:22;9573:52;:::i;:::-;9563:62;;9519:116;9315:327;;;;:::o;9648:349::-;9717:6;9766:2;9754:9;9745:7;9741:23;9737:32;9734:119;;;9772:79;;:::i;:::-;9734:119;9892:1;9917:63;9972:7;9963:6;9952:9;9948:22;9917:63;:::i;:::-;9907:73;;9863:127;9648:349;;;;:::o;10003:509::-;10072:6;10121:2;10109:9;10100:7;10096:23;10092:32;10089:119;;;10127:79;;:::i;:::-;10089:119;10275:1;10264:9;10260:17;10247:31;10305:18;10297:6;10294:30;10291:117;;;10327:79;;:::i;:::-;10291:117;10432:63;10487:7;10478:6;10467:9;10463:22;10432:63;:::i;:::-;10422:73;;10218:287;10003:509;;;;:::o;10518:329::-;10577:6;10626:2;10614:9;10605:7;10601:23;10597:32;10594:119;;;10632:79;;:::i;:::-;10594:119;10752:1;10777:53;10822:7;10813:6;10802:9;10798:22;10777:53;:::i;:::-;10767:63;;10723:117;10518:329;;;;:::o;10853:474::-;10921:6;10929;10978:2;10966:9;10957:7;10953:23;10949:32;10946:119;;;10984:79;;:::i;:::-;10946:119;11104:1;11129:53;11174:7;11165:6;11154:9;11150:22;11129:53;:::i;:::-;11119:63;;11075:117;11231:2;11257:53;11302:7;11293:6;11282:9;11278:22;11257:53;:::i;:::-;11247:63;;11202:118;10853:474;;;;;:::o;11333:118::-;11420:24;11438:5;11420:24;:::i;:::-;11415:3;11408:37;11333:118;;:::o;11457:109::-;11538:21;11553:5;11538:21;:::i;:::-;11533:3;11526:34;11457:109;;:::o;11572:360::-;11658:3;11686:38;11718:5;11686:38;:::i;:::-;11740:70;11803:6;11798:3;11740:70;:::i;:::-;11733:77;;11819:52;11864:6;11859:3;11852:4;11845:5;11841:16;11819:52;:::i;:::-;11896:29;11918:6;11896:29;:::i;:::-;11891:3;11887:39;11880:46;;11662:270;11572:360;;;;:::o;11938:364::-;12026:3;12054:39;12087:5;12054:39;:::i;:::-;12109:71;12173:6;12168:3;12109:71;:::i;:::-;12102:78;;12189:52;12234:6;12229:3;12222:4;12215:5;12211:16;12189:52;:::i;:::-;12266:29;12288:6;12266:29;:::i;:::-;12261:3;12257:39;12250:46;;12030:272;11938:364;;;;:::o;12308:377::-;12414:3;12442:39;12475:5;12442:39;:::i;:::-;12497:89;12579:6;12574:3;12497:89;:::i;:::-;12490:96;;12595:52;12640:6;12635:3;12628:4;12621:5;12617:16;12595:52;:::i;:::-;12672:6;12667:3;12663:16;12656:23;;12418:267;12308:377;;;;:::o;12691:366::-;12833:3;12854:67;12918:2;12913:3;12854:67;:::i;:::-;12847:74;;12930:93;13019:3;12930:93;:::i;:::-;13048:2;13043:3;13039:12;13032:19;;12691:366;;;:::o;13063:::-;13205:3;13226:67;13290:2;13285:3;13226:67;:::i;:::-;13219:74;;13302:93;13391:3;13302:93;:::i;:::-;13420:2;13415:3;13411:12;13404:19;;13063:366;;;:::o;13435:::-;13577:3;13598:67;13662:2;13657:3;13598:67;:::i;:::-;13591:74;;13674:93;13763:3;13674:93;:::i;:::-;13792:2;13787:3;13783:12;13776:19;;13435:366;;;:::o;13807:::-;13949:3;13970:67;14034:2;14029:3;13970:67;:::i;:::-;13963:74;;14046:93;14135:3;14046:93;:::i;:::-;14164:2;14159:3;14155:12;14148:19;;13807:366;;;:::o;14179:400::-;14339:3;14360:84;14442:1;14437:3;14360:84;:::i;:::-;14353:91;;14453:93;14542:3;14453:93;:::i;:::-;14571:1;14566:3;14562:11;14555:18;;14179:400;;;:::o;14585:366::-;14727:3;14748:67;14812:2;14807:3;14748:67;:::i;:::-;14741:74;;14824:93;14913:3;14824:93;:::i;:::-;14942:2;14937:3;14933:12;14926:19;;14585:366;;;:::o;14957:::-;15099:3;15120:67;15184:2;15179:3;15120:67;:::i;:::-;15113:74;;15196:93;15285:3;15196:93;:::i;:::-;15314:2;15309:3;15305:12;15298:19;;14957:366;;;:::o;15329:::-;15471:3;15492:67;15556:2;15551:3;15492:67;:::i;:::-;15485:74;;15568:93;15657:3;15568:93;:::i;:::-;15686:2;15681:3;15677:12;15670:19;;15329:366;;;:::o;15701:::-;15843:3;15864:67;15928:2;15923:3;15864:67;:::i;:::-;15857:74;;15940:93;16029:3;15940:93;:::i;:::-;16058:2;16053:3;16049:12;16042:19;;15701:366;;;:::o;16073:398::-;16232:3;16253:83;16334:1;16329:3;16253:83;:::i;:::-;16246:90;;16345:93;16434:3;16345:93;:::i;:::-;16463:1;16458:3;16454:11;16447:18;;16073:398;;;:::o;16477:366::-;16619:3;16640:67;16704:2;16699:3;16640:67;:::i;:::-;16633:74;;16716:93;16805:3;16716:93;:::i;:::-;16834:2;16829:3;16825:12;16818:19;;16477:366;;;:::o;16849:::-;16991:3;17012:67;17076:2;17071:3;17012:67;:::i;:::-;17005:74;;17088:93;17177:3;17088:93;:::i;:::-;17206:2;17201:3;17197:12;17190:19;;16849:366;;;:::o;17221:::-;17363:3;17384:67;17448:2;17443:3;17384:67;:::i;:::-;17377:74;;17460:93;17549:3;17460:93;:::i;:::-;17578:2;17573:3;17569:12;17562:19;;17221:366;;;:::o;17593:118::-;17680:24;17698:5;17680:24;:::i;:::-;17675:3;17668:37;17593:118;;:::o;17717:701::-;17998:3;18020:95;18111:3;18102:6;18020:95;:::i;:::-;18013:102;;18132:95;18223:3;18214:6;18132:95;:::i;:::-;18125:102;;18244:148;18388:3;18244:148;:::i;:::-;18237:155;;18409:3;18402:10;;17717:701;;;;;:::o;18424:379::-;18608:3;18630:147;18773:3;18630:147;:::i;:::-;18623:154;;18794:3;18787:10;;18424:379;;;:::o;18809:222::-;18902:4;18940:2;18929:9;18925:18;18917:26;;18953:71;19021:1;19010:9;19006:17;18997:6;18953:71;:::i;:::-;18809:222;;;;:::o;19037:640::-;19232:4;19270:3;19259:9;19255:19;19247:27;;19284:71;19352:1;19341:9;19337:17;19328:6;19284:71;:::i;:::-;19365:72;19433:2;19422:9;19418:18;19409:6;19365:72;:::i;:::-;19447;19515:2;19504:9;19500:18;19491:6;19447:72;:::i;:::-;19566:9;19560:4;19556:20;19551:2;19540:9;19536:18;19529:48;19594:76;19665:4;19656:6;19594:76;:::i;:::-;19586:84;;19037:640;;;;;;;:::o;19683:210::-;19770:4;19808:2;19797:9;19793:18;19785:26;;19821:65;19883:1;19872:9;19868:17;19859:6;19821:65;:::i;:::-;19683:210;;;;:::o;19899:313::-;20012:4;20050:2;20039:9;20035:18;20027:26;;20099:9;20093:4;20089:20;20085:1;20074:9;20070:17;20063:47;20127:78;20200:4;20191:6;20127:78;:::i;:::-;20119:86;;19899:313;;;;:::o;20218:419::-;20384:4;20422:2;20411:9;20407:18;20399:26;;20471:9;20465:4;20461:20;20457:1;20446:9;20442:17;20435:47;20499:131;20625:4;20499:131;:::i;:::-;20491:139;;20218:419;;;:::o;20643:::-;20809:4;20847:2;20836:9;20832:18;20824:26;;20896:9;20890:4;20886:20;20882:1;20871:9;20867:17;20860:47;20924:131;21050:4;20924:131;:::i;:::-;20916:139;;20643:419;;;:::o;21068:::-;21234:4;21272:2;21261:9;21257:18;21249:26;;21321:9;21315:4;21311:20;21307:1;21296:9;21292:17;21285:47;21349:131;21475:4;21349:131;:::i;:::-;21341:139;;21068:419;;;:::o;21493:::-;21659:4;21697:2;21686:9;21682:18;21674:26;;21746:9;21740:4;21736:20;21732:1;21721:9;21717:17;21710:47;21774:131;21900:4;21774:131;:::i;:::-;21766:139;;21493:419;;;:::o;21918:::-;22084:4;22122:2;22111:9;22107:18;22099:26;;22171:9;22165:4;22161:20;22157:1;22146:9;22142:17;22135:47;22199:131;22325:4;22199:131;:::i;:::-;22191:139;;21918:419;;;:::o;22343:::-;22509:4;22547:2;22536:9;22532:18;22524:26;;22596:9;22590:4;22586:20;22582:1;22571:9;22567:17;22560:47;22624:131;22750:4;22624:131;:::i;:::-;22616:139;;22343:419;;;:::o;22768:::-;22934:4;22972:2;22961:9;22957:18;22949:26;;23021:9;23015:4;23011:20;23007:1;22996:9;22992:17;22985:47;23049:131;23175:4;23049:131;:::i;:::-;23041:139;;22768:419;;;:::o;23193:::-;23359:4;23397:2;23386:9;23382:18;23374:26;;23446:9;23440:4;23436:20;23432:1;23421:9;23417:17;23410:47;23474:131;23600:4;23474:131;:::i;:::-;23466:139;;23193:419;;;:::o;23618:::-;23784:4;23822:2;23811:9;23807:18;23799:26;;23871:9;23865:4;23861:20;23857:1;23846:9;23842:17;23835:47;23899:131;24025:4;23899:131;:::i;:::-;23891:139;;23618:419;;;:::o;24043:::-;24209:4;24247:2;24236:9;24232:18;24224:26;;24296:9;24290:4;24286:20;24282:1;24271:9;24267:17;24260:47;24324:131;24450:4;24324:131;:::i;:::-;24316:139;;24043:419;;;:::o;24468:::-;24634:4;24672:2;24661:9;24657:18;24649:26;;24721:9;24715:4;24711:20;24707:1;24696:9;24692:17;24685:47;24749:131;24875:4;24749:131;:::i;:::-;24741:139;;24468:419;;;:::o;24893:222::-;24986:4;25024:2;25013:9;25009:18;25001:26;;25037:71;25105:1;25094:9;25090:17;25081:6;25037:71;:::i;:::-;24893:222;;;;:::o;25121:129::-;25155:6;25182:20;;:::i;:::-;25172:30;;25211:33;25239:4;25231:6;25211:33;:::i;:::-;25121:129;;;:::o;25256:75::-;25289:6;25322:2;25316:9;25306:19;;25256:75;:::o;25337:311::-;25414:4;25504:18;25496:6;25493:30;25490:56;;;25526:18;;:::i;:::-;25490:56;25576:4;25568:6;25564:17;25556:25;;25636:4;25630;25626:15;25618:23;;25337:311;;;:::o;25654:::-;25731:4;25821:18;25813:6;25810:30;25807:56;;;25843:18;;:::i;:::-;25807:56;25893:4;25885:6;25881:17;25873:25;;25953:4;25947;25943:15;25935:23;;25654:311;;;:::o;25971:307::-;26032:4;26122:18;26114:6;26111:30;26108:56;;;26144:18;;:::i;:::-;26108:56;26182:29;26204:6;26182:29;:::i;:::-;26174:37;;26266:4;26260;26256:15;26248:23;;25971:307;;;:::o;26284:308::-;26346:4;26436:18;26428:6;26425:30;26422:56;;;26458:18;;:::i;:::-;26422:56;26496:29;26518:6;26496:29;:::i;:::-;26488:37;;26580:4;26574;26570:15;26562:23;;26284:308;;;:::o;26598:98::-;26649:6;26683:5;26677:12;26667:22;;26598:98;;;:::o;26702:99::-;26754:6;26788:5;26782:12;26772:22;;26702:99;;;:::o;26807:168::-;26890:11;26924:6;26919:3;26912:19;26964:4;26959:3;26955:14;26940:29;;26807:168;;;;:::o;26981:147::-;27082:11;27119:3;27104:18;;26981:147;;;;:::o;27134:169::-;27218:11;27252:6;27247:3;27240:19;27292:4;27287:3;27283:14;27268:29;;27134:169;;;;:::o;27309:148::-;27411:11;27448:3;27433:18;;27309:148;;;;:::o;27463:305::-;27503:3;27522:20;27540:1;27522:20;:::i;:::-;27517:25;;27556:20;27574:1;27556:20;:::i;:::-;27551:25;;27710:1;27642:66;27638:74;27635:1;27632:81;27629:107;;;27716:18;;:::i;:::-;27629:107;27760:1;27757;27753:9;27746:16;;27463:305;;;;:::o;27774:185::-;27814:1;27831:20;27849:1;27831:20;:::i;:::-;27826:25;;27865:20;27883:1;27865:20;:::i;:::-;27860:25;;27904:1;27894:35;;27909:18;;:::i;:::-;27894:35;27951:1;27948;27944:9;27939:14;;27774:185;;;;:::o;27965:348::-;28005:7;28028:20;28046:1;28028:20;:::i;:::-;28023:25;;28062:20;28080:1;28062:20;:::i;:::-;28057:25;;28250:1;28182:66;28178:74;28175:1;28172:81;28167:1;28160:9;28153:17;28149:105;28146:131;;;28257:18;;:::i;:::-;28146:131;28305:1;28302;28298:9;28287:20;;27965:348;;;;:::o;28319:191::-;28359:4;28379:20;28397:1;28379:20;:::i;:::-;28374:25;;28413:20;28431:1;28413:20;:::i;:::-;28408:25;;28452:1;28449;28446:8;28443:34;;;28457:18;;:::i;:::-;28443:34;28502:1;28499;28495:9;28487:17;;28319:191;;;;:::o;28516:96::-;28553:7;28582:24;28600:5;28582:24;:::i;:::-;28571:35;;28516:96;;;:::o;28618:90::-;28652:7;28695:5;28688:13;28681:21;28670:32;;28618:90;;;:::o;28714:149::-;28750:7;28790:66;28783:5;28779:78;28768:89;;28714:149;;;:::o;28869:126::-;28906:7;28946:42;28939:5;28935:54;28924:65;;28869:126;;;:::o;29001:77::-;29038:7;29067:5;29056:16;;29001:77;;;:::o;29084:154::-;29168:6;29163:3;29158;29145:30;29230:1;29221:6;29216:3;29212:16;29205:27;29084:154;;;:::o;29244:307::-;29312:1;29322:113;29336:6;29333:1;29330:13;29322:113;;;29421:1;29416:3;29412:11;29406:18;29402:1;29397:3;29393:11;29386:39;29358:2;29355:1;29351:10;29346:15;;29322:113;;;29453:6;29450:1;29447:13;29444:101;;;29533:1;29524:6;29519:3;29515:16;29508:27;29444:101;29293:258;29244:307;;;:::o;29557:320::-;29601:6;29638:1;29632:4;29628:12;29618:22;;29685:1;29679:4;29675:12;29706:18;29696:81;;29762:4;29754:6;29750:17;29740:27;;29696:81;29824:2;29816:6;29813:14;29793:18;29790:38;29787:84;;;29843:18;;:::i;:::-;29787:84;29608:269;29557:320;;;:::o;29883:281::-;29966:27;29988:4;29966:27;:::i;:::-;29958:6;29954:40;30096:6;30084:10;30081:22;30060:18;30048:10;30045:34;30042:62;30039:88;;;30107:18;;:::i;:::-;30039:88;30147:10;30143:2;30136:22;29926:238;29883:281;;:::o;30170:233::-;30209:3;30232:24;30250:5;30232:24;:::i;:::-;30223:33;;30278:66;30271:5;30268:77;30265:103;;;30348:18;;:::i;:::-;30265:103;30395:1;30388:5;30384:13;30377:20;;30170:233;;;:::o;30409:176::-;30441:1;30458:20;30476:1;30458:20;:::i;:::-;30453:25;;30492:20;30510:1;30492:20;:::i;:::-;30487:25;;30531:1;30521:35;;30536:18;;:::i;:::-;30521:35;30577:1;30574;30570:9;30565:14;;30409:176;;;;:::o;30591:180::-;30639:77;30636:1;30629:88;30736:4;30733:1;30726:15;30760:4;30757:1;30750:15;30777:180;30825:77;30822:1;30815:88;30922:4;30919:1;30912:15;30946:4;30943:1;30936:15;30963:180;31011:77;31008:1;31001:88;31108:4;31105:1;31098:15;31132:4;31129:1;31122:15;31149:180;31197:77;31194:1;31187:88;31294:4;31291:1;31284:15;31318:4;31315:1;31308:15;31335:180;31383:77;31380:1;31373:88;31480:4;31477:1;31470:15;31504:4;31501:1;31494:15;31521:117;31630:1;31627;31620:12;31644:117;31753:1;31750;31743:12;31767:117;31876:1;31873;31866:12;31890:117;31999:1;31996;31989:12;32013:117;32122:1;32119;32112:12;32136:102;32177:6;32228:2;32224:7;32219:2;32212:5;32208:14;32204:28;32194:38;;32136:102;;;:::o;32244:225::-;32384:34;32380:1;32372:6;32368:14;32361:58;32453:8;32448:2;32440:6;32436:15;32429:33;32244:225;:::o;32475:224::-;32615:34;32611:1;32603:6;32599:14;32592:58;32684:7;32679:2;32671:6;32667:15;32660:32;32475:224;:::o;32705:169::-;32845:21;32841:1;32833:6;32829:14;32822:45;32705:169;:::o;32880:165::-;33020:17;33016:1;33008:6;33004:14;32997:41;32880:165;:::o;33051:155::-;33191:7;33187:1;33179:6;33175:14;33168:31;33051:155;:::o;33212:170::-;33352:22;33348:1;33340:6;33336:14;33329:46;33212:170;:::o;33388:182::-;33528:34;33524:1;33516:6;33512:14;33505:58;33388:182;:::o;33576:173::-;33716:25;33712:1;33704:6;33700:14;33693:49;33576:173;:::o;33755:234::-;33895:34;33891:1;33883:6;33879:14;33872:58;33964:17;33959:2;33951:6;33947:15;33940:42;33755:234;:::o;33995:114::-;;:::o;34115:240::-;34255:34;34251:1;34243:6;34239:14;34232:58;34324:23;34319:2;34311:6;34307:15;34300:48;34115:240;:::o;34361:181::-;34501:33;34497:1;34489:6;34485:14;34478:57;34361:181;:::o;34548:173::-;34688:25;34684:1;34676:6;34672:14;34665:49;34548:173;:::o;34727:122::-;34800:24;34818:5;34800:24;:::i;:::-;34793:5;34790:35;34780:63;;34839:1;34836;34829:12;34780:63;34727:122;:::o;34855:116::-;34925:21;34940:5;34925:21;:::i;:::-;34918:5;34915:32;34905:60;;34961:1;34958;34951:12;34905:60;34855:116;:::o;34977:120::-;35049:23;35066:5;35049:23;:::i;:::-;35042:5;35039:34;35029:62;;35087:1;35084;35077:12;35029:62;34977:120;:::o;35103:122::-;35176:24;35194:5;35176:24;:::i;:::-;35169:5;35166:35;35156:63;;35215:1;35212;35205:12;35156:63;35103:122;:::o

Swarm Source

ipfs://71761a0a94bb3a53461b0f65cb88193bdab7b4cfd21545afcd394c8eeb1cfdeb
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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