ETH Price: $3,378.38 (-1.91%)
Gas: 2 Gwei

Token

Shinobi Bunny Dawn (SBD)
 

Overview

Max Total Supply

5,555 SBD

Holders

2,390

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tlieberman22.eth
Balance
1 SBD
0x729cfa0f61946c8a558da84103f332d310a9d26a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

5555 Destructive Shinobi Bunnies are out to destroy monsters!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ShinobiBunnyDawn

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-07-01
*/

// SPDX-License-Identifier: MIT 
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/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 v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/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: erc721a/contracts/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 0;
    }

    /**
     * @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: @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: contracts/ShinobiBunnyDawn.sol


pragma solidity >=0.8.0 <0.9.0;





contract ShinobiBunnyDawn is ERC721A, Ownable { 

  using Strings for uint256;

  string public uriPrefix = "ipfs://QmTRJw1vHVfEpkcKpCVMXdeX8VM9vc2UdYvt2WrhXq6pQ2/";
  string public uriSuffix = ".json"; 
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.005 ether; 

  uint256 public maxSupply = 5555; 
  uint256 public maxMintAmountPerTx = 10; 
  uint256 public totalMaxMintAmount = 11; 

  uint256 public freeMaxMintAmount = 1; 

  bool public paused = true;
  bool public publicSale = false;
  bool public revealed = true;

  mapping(address => uint256) public addressMintedBalance; 

  constructor() ERC721A("Shinobi Bunny Dawn", "SBD") { 
        setHiddenMetadataUri("ipfs://__CID__/hidden.json"); 
            ownerMint(50); 
    } 

  // MODIFIERS 
  
  modifier mintCompliance(uint256 _mintAmount) {
    if (msg.sender != owner()) { 
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    }
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  } 

  modifier mintPriceCompliance(uint256 _mintAmount) {
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
   if (ownerMintedCount >= freeMaxMintAmount) {
        require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
   }
        _;
  }

  // MINTS 

   function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!'); 
    require(publicSale, "Not open to public yet!");
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];

    if (ownerMintedCount < freeMaxMintAmount) {  
            require(ownerMintedCount + _mintAmount <= freeMaxMintAmount, "Exceeded Free Mint Limit");
        } else if (ownerMintedCount >= freeMaxMintAmount) { 
            require(ownerMintedCount + _mintAmount <= totalMaxMintAmount, "Exceeded Mint Limit");
        }

    _safeMint(_msgSender(), _mintAmount);
    for (uint256 i = 1; i <=_mintAmount; i++){
        addressMintedBalance[msg.sender]++;
    }
  }

  function ownerMint(uint256 _mintAmount) public payable onlyOwner {
     require(_mintAmount > 0, 'Invalid mint amount!');
     require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _safeMint(_msgSender(), _mintAmount);
  }

function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }
  
  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned && ownership.addr != address(0)) {
        latestOwnerAddress = ownership.addr;
      }

      if (latestOwnerAddress == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  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(), uriSuffix))
        : '';
  }

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

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost; 
  }

   function setFreeMaxMintAmount(uint256 _freeMaxMintAmount) public onlyOwner {
    freeMaxMintAmount = _freeMaxMintAmount; 
  }

  function setTotalMaxMintAmount(uint _amount) public onlyOwner {
      require(_amount <= maxSupply, "Exceed total amount");
      totalMaxMintAmount = _amount;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setPublicSale(bool _state) public onlyOwner {
    publicSale = _state;
  }

  // WITHDRAW
    function withdraw() public payable onlyOwner {
  
    (bool os, ) = payable(owner()).call{value: address(this).balance}(""); 
    require(os);
   
  }

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

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":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMaxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","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":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMaxMintAmount","type":"uint256"}],"name":"setFreeMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","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":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTotalMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMaxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060600160405280603681526020016200598560369139600990805190602001906200003592919062000b3c565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200008392919062000b3c565b506611c37937e08000600c556115b3600d55600a600e55600b600f5560016010556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055503480156200010257600080fd5b506040518060400160405280601281526020017f5368696e6f62692042756e6e79204461776e00000000000000000000000000008152506040518060400160405280600381526020017f534244000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200018792919062000b3c565b508060039080519060200190620001a092919062000b3c565b50620001b16200023760201b60201c565b6000819055505050620001d9620001cd6200024060201b60201c565b6200024860201b60201c565b6200021f6040518060400160405280601a81526020017f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e0000000000008152506200030e60201b60201c565b620002316032620003b960201b60201c565b62001030565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200031e6200024060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003446200051660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200039d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003949062000d83565b60405180910390fd5b80600b9080519060200190620003b592919062000b3c565b5050565b620003c96200024060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003ef6200051660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000448576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043f9062000d83565b60405180910390fd5b600081116200048e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004859062000d61565b60405180910390fd5b600d5481620004a26200054060201b60201c565b620004ae919062000df4565b1115620004f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004e99062000da5565b60405180910390fd5b62000513620005066200024060201b60201c565b826200055f60201b60201c565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000620005526200023760201b60201c565b6001546000540303905090565b620005818282604051806020016040528060008152506200058560201b60201c565b5050565b6200059a83838360016200059f60201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156200060d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141562000649576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200065e60008683876200099b60201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015620008365750620008358773ffffffffffffffffffffffffffffffffffffffff16620009a160201b620025921760201c565b5b1562000909575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620008b46000888480600101955088620009c460201b60201c565b620008eb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156200083d5782600054146200090357600080fd5b62000976565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156200090a575b81600081905550505062000994600086838762000b3660201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620009f26200024060201b60201c565b8786866040518563ffffffff1660e01b815260040162000a16949392919062000d0d565b602060405180830381600087803b15801562000a3157600080fd5b505af192505050801562000a6557506040513d601f19601f8201168201806040525081019062000a62919062000c03565b60015b62000ae3573d806000811462000a98576040519150601f19603f3d011682016040523d82523d6000602084013e62000a9d565b606091505b5060008151141562000adb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b82805462000b4a9062000ef1565b90600052602060002090601f01602090048101928262000b6e576000855562000bba565b82601f1062000b8957805160ff191683800117855562000bba565b8280016001018555821562000bba579182015b8281111562000bb957825182559160200191906001019062000b9c565b5b50905062000bc9919062000bcd565b5090565b5b8082111562000be857600081600090555060010162000bce565b5090565b60008151905062000bfd8162001016565b92915050565b60006020828403121562000c1c5762000c1b62000f85565b5b600062000c2c8482850162000bec565b91505092915050565b62000c408162000e51565b82525050565b600062000c538262000dc7565b62000c5f818562000dd2565b935062000c7181856020860162000ebb565b62000c7c8162000f8a565b840191505092915050565b600062000c9660148362000de3565b915062000ca38262000f9b565b602082019050919050565b600062000cbd60208362000de3565b915062000cca8262000fc4565b602082019050919050565b600062000ce460148362000de3565b915062000cf18262000fed565b602082019050919050565b62000d078162000eb1565b82525050565b600060808201905062000d24600083018762000c35565b62000d33602083018662000c35565b62000d42604083018562000cfc565b818103606083015262000d56818462000c46565b905095945050505050565b6000602082019050818103600083015262000d7c8162000c87565b9050919050565b6000602082019050818103600083015262000d9e8162000cae565b9050919050565b6000602082019050818103600083015262000dc08162000cd5565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000e018262000eb1565b915062000e0e8362000eb1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e465762000e4562000f27565b5b828201905092915050565b600062000e5e8262000e91565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000edb57808201518184015260208101905062000ebe565b8381111562000eeb576000848401525b50505050565b6000600282049050600182168062000f0a57607f821691505b6020821081141562000f215762000f2062000f56565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b620010218162000e65565b81146200102d57600080fd5b50565b61494580620010406000396000f3fe6080604052600436106102675760003560e01c806362b99ad411610144578063b071401b116100b6578063e0a808531161007a578063e0a80853146108ec578063e4386d2614610915578063e985e9c514610940578063efbd73f41461097d578063f19e75d4146109a6578063f2fde38b146109c257610267565b8063b071401b14610809578063b88d4fde14610832578063c87b56dd1461085b578063d4fcb2ae14610898578063d5abeb01146108c157610267565b80638da5cb5b116101085780638da5cb5b1461071857806394354fd01461074357806395d89b411461076e578063a0712d6814610799578063a22cb465146107b5578063a45ba8e7146107de57610267565b806362b99ad4146106335780636352211e1461065e57806370a082311461069b578063715018a6146106d85780637ec4a659146106ef57610267565b806323b872dd116101dd57806344a0d68a116101a157806344a0d68a146105375780634fdd43cb1461056057806351830227146105895780635503a0e8146105b45780635aca1bb6146105df5780635c975abb1461060857610267565b806323b872dd1461047357806333bc1c5c1461049c5780633ccfd60b146104c757806342842e0e146104d1578063438b6300146104fa57610267565b80631159aca41161022f5780631159aca41461036357806313faede61461038e57806316ba10e0146103b957806316c38b3c146103e257806318160ddd1461040b57806318cae2691461043657610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780631042779c1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613ab7565b6109eb565b6040516102a0919061400e565b60405180910390f35b3480156102b557600080fd5b506102be610acd565b6040516102cb9190614029565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613b5a565b610b5f565b6040516103089190613f85565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613a4a565b610bdb565b005b34801561034657600080fd5b50610361600480360381019061035c9190613b5a565b610ce6565b005b34801561036f57600080fd5b50610378610db1565b60405161038591906141ab565b60405180910390f35b34801561039a57600080fd5b506103a3610db7565b6040516103b091906141ab565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613b11565b610dbd565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613a8a565b610e53565b005b34801561041757600080fd5b50610420610eec565b60405161042d91906141ab565b60405180910390f35b34801561044257600080fd5b5061045d600480360381019061045891906138c7565b610f03565b60405161046a91906141ab565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190613934565b610f1b565b005b3480156104a857600080fd5b506104b1610f2b565b6040516104be919061400e565b60405180910390f35b6104cf610f3e565b005b3480156104dd57600080fd5b506104f860048036038101906104f39190613934565b61103a565b005b34801561050657600080fd5b50610521600480360381019061051c91906138c7565b61105a565b60405161052e9190613fec565b60405180910390f35b34801561054357600080fd5b5061055e60048036038101906105599190613b5a565b611275565b005b34801561056c57600080fd5b5061058760048036038101906105829190613b11565b6112fb565b005b34801561059557600080fd5b5061059e611391565b6040516105ab919061400e565b60405180910390f35b3480156105c057600080fd5b506105c96113a4565b6040516105d69190614029565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190613a8a565b611432565b005b34801561061457600080fd5b5061061d6114cb565b60405161062a919061400e565b60405180910390f35b34801561063f57600080fd5b506106486114de565b6040516106559190614029565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190613b5a565b61156c565b6040516106929190613f85565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd91906138c7565b611582565b6040516106cf91906141ab565b60405180910390f35b3480156106e457600080fd5b506106ed611652565b005b3480156106fb57600080fd5b5061071660048036038101906107119190613b11565b6116da565b005b34801561072457600080fd5b5061072d611770565b60405161073a9190613f85565b60405180910390f35b34801561074f57600080fd5b5061075861179a565b60405161076591906141ab565b60405180910390f35b34801561077a57600080fd5b506107836117a0565b6040516107909190614029565b60405180910390f35b6107b360048036038101906107ae9190613b5a565b611832565b005b3480156107c157600080fd5b506107dc60048036038101906107d79190613a0a565b611be1565b005b3480156107ea57600080fd5b506107f3611d59565b6040516108009190614029565b60405180910390f35b34801561081557600080fd5b50610830600480360381019061082b9190613b5a565b611de7565b005b34801561083e57600080fd5b5061085960048036038101906108549190613987565b611e6d565b005b34801561086757600080fd5b50610882600480360381019061087d9190613b5a565b611ee9565b60405161088f9190614029565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba9190613b5a565b612042565b005b3480156108cd57600080fd5b506108d66120c8565b6040516108e391906141ab565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190613a8a565b6120ce565b005b34801561092157600080fd5b5061092a612167565b60405161093791906141ab565b60405180910390f35b34801561094c57600080fd5b50610967600480360381019061096291906138f4565b61216d565b604051610974919061400e565b60405180910390f35b34801561098957600080fd5b506109a4600480360381019061099f9190613b87565b612201565b005b6109c060048036038101906109bb9190613b5a565b612370565b005b3480156109ce57600080fd5b506109e960048036038101906109e491906138c7565b61249a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac65750610ac5826125b5565b5b9050919050565b606060028054610adc906144b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b08906144b4565b8015610b555780601f10610b2a57610100808354040283529160200191610b55565b820191906000526020600020905b815481529060010190602001808311610b3857829003601f168201915b5050505050905090565b6000610b6a8261261f565b610ba0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be68261156c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c4e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c6d61266d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c9f5750610c9d81610c9861266d565b61216d565b155b15610cd6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce1838383612675565b505050565b610cee61266d565b73ffffffffffffffffffffffffffffffffffffffff16610d0c611770565b73ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d59906140eb565b60405180910390fd5b600d54811115610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e906140ab565b60405180910390fd5b80600f8190555050565b60105481565b600c5481565b610dc561266d565b73ffffffffffffffffffffffffffffffffffffffff16610de3611770565b73ffffffffffffffffffffffffffffffffffffffff1614610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e30906140eb565b60405180910390fd5b80600a9080519060200190610e4f929190613698565b5050565b610e5b61266d565b73ffffffffffffffffffffffffffffffffffffffff16610e79611770565b73ffffffffffffffffffffffffffffffffffffffff1614610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec6906140eb565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610ef6612727565b6001546000540303905090565b60126020528060005260406000206000915090505481565b610f26838383612730565b505050565b601160019054906101000a900460ff1681565b610f4661266d565b73ffffffffffffffffffffffffffffffffffffffff16610f64611770565b73ffffffffffffffffffffffffffffffffffffffff1614610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb1906140eb565b60405180910390fd5b6000610fc4611770565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fe790613f70565b60006040518083038185875af1925050503d8060008114611024576040519150601f19603f3d011682016040523d82523d6000602084013e611029565b606091505b505090508061103757600080fd5b50565b61105583838360405180602001604052806000815250611e6d565b505050565b6060600061106783611582565b905060008167ffffffffffffffff8111156110855761108461464d565b5b6040519080825280602002602001820160405280156110b35781602001602082028036833780820191505090505b50905060006110c0612727565b90506000805b84821080156110d75750600d548311155b15611268576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156111e45750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b156111f157806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561125457838584815181106112395761123861461e565b5b602002602001018181525050828061125090614517565b9350505b838061125f90614517565b945050506110c6565b8395505050505050919050565b61127d61266d565b73ffffffffffffffffffffffffffffffffffffffff1661129b611770565b73ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e8906140eb565b60405180910390fd5b80600c8190555050565b61130361266d565b73ffffffffffffffffffffffffffffffffffffffff16611321611770565b73ffffffffffffffffffffffffffffffffffffffff1614611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e906140eb565b60405180910390fd5b80600b908051906020019061138d929190613698565b5050565b601160029054906101000a900460ff1681565b600a80546113b1906144b4565b80601f01602080910402602001604051908101604052809291908181526020018280546113dd906144b4565b801561142a5780601f106113ff5761010080835404028352916020019161142a565b820191906000526020600020905b81548152906001019060200180831161140d57829003601f168201915b505050505081565b61143a61266d565b73ffffffffffffffffffffffffffffffffffffffff16611458611770565b73ffffffffffffffffffffffffffffffffffffffff16146114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a5906140eb565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b601160009054906101000a900460ff1681565b600980546114eb906144b4565b80601f0160208091040260200160405190810160405280929190818152602001828054611517906144b4565b80156115645780601f1061153957610100808354040283529160200191611564565b820191906000526020600020905b81548152906001019060200180831161154757829003601f168201915b505050505081565b600061157782612be6565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ea576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61165a61266d565b73ffffffffffffffffffffffffffffffffffffffff16611678611770565b73ffffffffffffffffffffffffffffffffffffffff16146116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c5906140eb565b60405180910390fd5b6116d86000612e75565b565b6116e261266d565b73ffffffffffffffffffffffffffffffffffffffff16611700611770565b73ffffffffffffffffffffffffffffffffffffffff1614611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d906140eb565b60405180910390fd5b806009908051906020019061176c929190613698565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600380546117af906144b4565b80601f01602080910402602001604051908101604052809291908181526020018280546117db906144b4565b80156118285780601f106117fd57610100808354040283529160200191611828565b820191906000526020600020905b81548152906001019060200180831161180b57829003601f168201915b5050505050905090565b8061183b611770565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118bf5760008111801561187f5750600e548111155b6118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b59061408b565b60405180910390fd5b5b600d54816118cb610eec565b6118d591906142e9565b1115611916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190d9061414b565b60405180910390fd5b816000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060105481106119b55781600c546119729190614370565b3410156119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab9061418b565b60405180910390fd5b5b601160009054906101000a900460ff1615611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc9061410b565b60405180910390fd5b601160019054906101000a900460ff16611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b9061416b565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601054811015611af7576010548582611ab191906142e9565b1115611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae9906140cb565b60405180910390fd5b611b52565b6010548110611b5157600f548582611b0f91906142e9565b1115611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b479061404b565b60405180910390fd5b5b5b611b63611b5d61266d565b86612f3b565b6000600190505b858111611bd957601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611bc190614517565b91905055508080611bd190614517565b915050611b6a565b505050505050565b611be961266d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c4e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611c5b61266d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d0861266d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d4d919061400e565b60405180910390a35050565b600b8054611d66906144b4565b80601f0160208091040260200160405190810160405280929190818152602001828054611d92906144b4565b8015611ddf5780601f10611db457610100808354040283529160200191611ddf565b820191906000526020600020905b815481529060010190602001808311611dc257829003601f168201915b505050505081565b611def61266d565b73ffffffffffffffffffffffffffffffffffffffff16611e0d611770565b73ffffffffffffffffffffffffffffffffffffffff1614611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a906140eb565b60405180910390fd5b80600e8190555050565b611e78848484612730565b611e978373ffffffffffffffffffffffffffffffffffffffff16612592565b8015611eac5750611eaa84848484612f59565b155b15611ee3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611ef48261261f565b611f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2a9061412b565b60405180910390fd5b60001515601160029054906101000a900460ff1615151415611fe157600b8054611f5c906144b4565b80601f0160208091040260200160405190810160405280929190818152602001828054611f88906144b4565b8015611fd55780601f10611faa57610100808354040283529160200191611fd5565b820191906000526020600020905b815481529060010190602001808311611fb857829003601f168201915b5050505050905061203d565b6000611feb6130b9565b9050600081511161200b5760405180602001604052806000815250612039565b806120158461314b565b600a60405160200161202993929190613f3f565b6040516020818303038152906040525b9150505b919050565b61204a61266d565b73ffffffffffffffffffffffffffffffffffffffff16612068611770565b73ffffffffffffffffffffffffffffffffffffffff16146120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b5906140eb565b60405180910390fd5b8060108190555050565b600d5481565b6120d661266d565b73ffffffffffffffffffffffffffffffffffffffff166120f4611770565b73ffffffffffffffffffffffffffffffffffffffff161461214a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612141906140eb565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8161220a611770565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461228e5760008111801561224e5750600e548111155b61228d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122849061408b565b60405180910390fd5b5b600d548161229a610eec565b6122a491906142e9565b11156122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc9061414b565b60405180910390fd5b6122ed61266d565b73ffffffffffffffffffffffffffffffffffffffff1661230b611770565b73ffffffffffffffffffffffffffffffffffffffff1614612361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612358906140eb565b60405180910390fd5b61236b8284612f3b565b505050565b61237861266d565b73ffffffffffffffffffffffffffffffffffffffff16612396611770565b73ffffffffffffffffffffffffffffffffffffffff16146123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e3906140eb565b60405180910390fd5b6000811161242f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124269061408b565b60405180910390fd5b600d548161243b610eec565b61244591906142e9565b1115612486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247d9061414b565b60405180910390fd5b61249761249161266d565b82612f3b565b50565b6124a261266d565b73ffffffffffffffffffffffffffffffffffffffff166124c0611770565b73ffffffffffffffffffffffffffffffffffffffff1614612516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250d906140eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257d9061406b565b60405180910390fd5b61258f81612e75565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161262a612727565b11158015612639575060005482105b8015612666575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061273b82612be6565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127a6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127c761266d565b73ffffffffffffffffffffffffffffffffffffffff1614806127f657506127f5856127f061266d565b61216d565b5b8061283b575061280461266d565b73ffffffffffffffffffffffffffffffffffffffff1661282384610b5f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612874576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128db576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128e885858560016132ac565b6128f460008487612675565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b74576000548214612b7357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bdf85858560016132b2565b5050505050565b612bee61371e565b600082905080612bfc612727565b11158015612c0b575060005481105b15612e3e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e3c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d20578092505050612e70565b5b600115612e3b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e36578092505050612e70565b612d21565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f558282604051806020016040528060008152506132b8565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f7f61266d565b8786866040518563ffffffff1660e01b8152600401612fa19493929190613fa0565b602060405180830381600087803b158015612fbb57600080fd5b505af1925050508015612fec57506040513d601f19601f82011682018060405250810190612fe99190613ae4565b60015b613066573d806000811461301c576040519150601f19603f3d011682016040523d82523d6000602084013e613021565b606091505b5060008151141561305e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546130c8906144b4565b80601f01602080910402602001604051908101604052809291908181526020018280546130f4906144b4565b80156131415780601f1061311657610100808354040283529160200191613141565b820191906000526020600020905b81548152906001019060200180831161312457829003601f168201915b5050505050905090565b60606000821415613193576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132a7565b600082905060005b600082146131c55780806131ae90614517565b915050600a826131be919061433f565b915061319b565b60008167ffffffffffffffff8111156131e1576131e061464d565b5b6040519080825280601f01601f1916602001820160405280156132135781602001600182028036833780820191505090505b5090505b600085146132a05760018261322c91906143ca565b9150600a8561323b9190614560565b603061324791906142e9565b60f81b81838151811061325d5761325c61461e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613299919061433f565b9450613217565b8093505050505b919050565b50505050565b50505050565b6132c583838360016132ca565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613337576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613372576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61337f60008683876132ac565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561354957506135488773ffffffffffffffffffffffffffffffffffffffff16612592565b5b1561360f575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135be6000888480600101955088612f59565b6135f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561354f57826000541461360a57600080fd5b61367b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613610575b81600081905550505061369160008683876132b2565b5050505050565b8280546136a4906144b4565b90600052602060002090601f0160209004810192826136c6576000855561370d565b82601f106136df57805160ff191683800117855561370d565b8280016001018555821561370d579182015b8281111561370c5782518255916020019190600101906136f1565b5b50905061371a9190613761565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561377a576000816000905550600101613762565b5090565b600061379161378c846141eb565b6141c6565b9050828152602081018484840111156137ad576137ac614681565b5b6137b8848285614472565b509392505050565b60006137d36137ce8461421c565b6141c6565b9050828152602081018484840111156137ef576137ee614681565b5b6137fa848285614472565b509392505050565b600081359050613811816148b3565b92915050565b600081359050613826816148ca565b92915050565b60008135905061383b816148e1565b92915050565b600081519050613850816148e1565b92915050565b600082601f83011261386b5761386a61467c565b5b813561387b84826020860161377e565b91505092915050565b600082601f8301126138995761389861467c565b5b81356138a98482602086016137c0565b91505092915050565b6000813590506138c1816148f8565b92915050565b6000602082840312156138dd576138dc61468b565b5b60006138eb84828501613802565b91505092915050565b6000806040838503121561390b5761390a61468b565b5b600061391985828601613802565b925050602061392a85828601613802565b9150509250929050565b60008060006060848603121561394d5761394c61468b565b5b600061395b86828701613802565b935050602061396c86828701613802565b925050604061397d868287016138b2565b9150509250925092565b600080600080608085870312156139a1576139a061468b565b5b60006139af87828801613802565b94505060206139c087828801613802565b93505060406139d1878288016138b2565b925050606085013567ffffffffffffffff8111156139f2576139f1614686565b5b6139fe87828801613856565b91505092959194509250565b60008060408385031215613a2157613a2061468b565b5b6000613a2f85828601613802565b9250506020613a4085828601613817565b9150509250929050565b60008060408385031215613a6157613a6061468b565b5b6000613a6f85828601613802565b9250506020613a80858286016138b2565b9150509250929050565b600060208284031215613aa057613a9f61468b565b5b6000613aae84828501613817565b91505092915050565b600060208284031215613acd57613acc61468b565b5b6000613adb8482850161382c565b91505092915050565b600060208284031215613afa57613af961468b565b5b6000613b0884828501613841565b91505092915050565b600060208284031215613b2757613b2661468b565b5b600082013567ffffffffffffffff811115613b4557613b44614686565b5b613b5184828501613884565b91505092915050565b600060208284031215613b7057613b6f61468b565b5b6000613b7e848285016138b2565b91505092915050565b60008060408385031215613b9e57613b9d61468b565b5b6000613bac858286016138b2565b9250506020613bbd85828601613802565b9150509250929050565b6000613bd38383613f21565b60208301905092915050565b613be8816143fe565b82525050565b6000613bf982614272565b613c0381856142a0565b9350613c0e8361424d565b8060005b83811015613c3f578151613c268882613bc7565b9750613c3183614293565b925050600181019050613c12565b5085935050505092915050565b613c5581614410565b82525050565b6000613c668261427d565b613c7081856142b1565b9350613c80818560208601614481565b613c8981614690565b840191505092915050565b6000613c9f82614288565b613ca981856142cd565b9350613cb9818560208601614481565b613cc281614690565b840191505092915050565b6000613cd882614288565b613ce281856142de565b9350613cf2818560208601614481565b80840191505092915050565b60008154613d0b816144b4565b613d1581866142de565b94506001821660008114613d305760018114613d4157613d74565b60ff19831686528186019350613d74565b613d4a8561425d565b60005b83811015613d6c57815481890152600182019150602081019050613d4d565b838801955050505b50505092915050565b6000613d8a6013836142cd565b9150613d95826146a1565b602082019050919050565b6000613dad6026836142cd565b9150613db8826146ca565b604082019050919050565b6000613dd06014836142cd565b9150613ddb82614719565b602082019050919050565b6000613df36013836142cd565b9150613dfe82614742565b602082019050919050565b6000613e166018836142cd565b9150613e218261476b565b602082019050919050565b6000613e396020836142cd565b9150613e4482614794565b602082019050919050565b6000613e5c6017836142cd565b9150613e67826147bd565b602082019050919050565b6000613e7f602f836142cd565b9150613e8a826147e6565b604082019050919050565b6000613ea26000836142c2565b9150613ead82614835565b600082019050919050565b6000613ec56014836142cd565b9150613ed082614838565b602082019050919050565b6000613ee86017836142cd565b9150613ef382614861565b602082019050919050565b6000613f0b6013836142cd565b9150613f168261488a565b602082019050919050565b613f2a81614468565b82525050565b613f3981614468565b82525050565b6000613f4b8286613ccd565b9150613f578285613ccd565b9150613f638284613cfe565b9150819050949350505050565b6000613f7b82613e95565b9150819050919050565b6000602082019050613f9a6000830184613bdf565b92915050565b6000608082019050613fb56000830187613bdf565b613fc26020830186613bdf565b613fcf6040830185613f30565b8181036060830152613fe18184613c5b565b905095945050505050565b600060208201905081810360008301526140068184613bee565b905092915050565b60006020820190506140236000830184613c4c565b92915050565b600060208201905081810360008301526140438184613c94565b905092915050565b6000602082019050818103600083015261406481613d7d565b9050919050565b6000602082019050818103600083015261408481613da0565b9050919050565b600060208201905081810360008301526140a481613dc3565b9050919050565b600060208201905081810360008301526140c481613de6565b9050919050565b600060208201905081810360008301526140e481613e09565b9050919050565b6000602082019050818103600083015261410481613e2c565b9050919050565b6000602082019050818103600083015261412481613e4f565b9050919050565b6000602082019050818103600083015261414481613e72565b9050919050565b6000602082019050818103600083015261416481613eb8565b9050919050565b6000602082019050818103600083015261418481613edb565b9050919050565b600060208201905081810360008301526141a481613efe565b9050919050565b60006020820190506141c06000830184613f30565b92915050565b60006141d06141e1565b90506141dc82826144e6565b919050565b6000604051905090565b600067ffffffffffffffff8211156142065761420561464d565b5b61420f82614690565b9050602081019050919050565b600067ffffffffffffffff8211156142375761423661464d565b5b61424082614690565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142f482614468565b91506142ff83614468565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561433457614333614591565b5b828201905092915050565b600061434a82614468565b915061435583614468565b925082614365576143646145c0565b5b828204905092915050565b600061437b82614468565b915061438683614468565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143bf576143be614591565b5b828202905092915050565b60006143d582614468565b91506143e083614468565b9250828210156143f3576143f2614591565b5b828203905092915050565b600061440982614448565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561449f578082015181840152602081019050614484565b838111156144ae576000848401525b50505050565b600060028204905060018216806144cc57607f821691505b602082108114156144e0576144df6145ef565b5b50919050565b6144ef82614690565b810181811067ffffffffffffffff8211171561450e5761450d61464d565b5b80604052505050565b600061452282614468565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561455557614554614591565b5b600182019050919050565b600061456b82614468565b915061457683614468565b925082614586576145856145c0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4578636565646564204d696e74204c696d697400000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f45786365656420746f74616c20616d6f756e7400000000000000000000000000600082015250565b7f45786365656465642046726565204d696e74204c696d69740000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4e6f74206f70656e20746f207075626c69632079657421000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6148bc816143fe565b81146148c757600080fd5b50565b6148d381614410565b81146148de57600080fd5b50565b6148ea8161441c565b81146148f557600080fd5b50565b61490181614468565b811461490c57600080fd5b5056fea264697066735822122010c97ce4b0082533dfd4eb0884b1b137719d21b8fa502ba51f2978f2fbbc576764736f6c63430008070033697066733a2f2f516d54524a77317648566645706b634b7043564d5864655838564d397663325564597674325772685871367051322f

Deployed Bytecode

0x6080604052600436106102675760003560e01c806362b99ad411610144578063b071401b116100b6578063e0a808531161007a578063e0a80853146108ec578063e4386d2614610915578063e985e9c514610940578063efbd73f41461097d578063f19e75d4146109a6578063f2fde38b146109c257610267565b8063b071401b14610809578063b88d4fde14610832578063c87b56dd1461085b578063d4fcb2ae14610898578063d5abeb01146108c157610267565b80638da5cb5b116101085780638da5cb5b1461071857806394354fd01461074357806395d89b411461076e578063a0712d6814610799578063a22cb465146107b5578063a45ba8e7146107de57610267565b806362b99ad4146106335780636352211e1461065e57806370a082311461069b578063715018a6146106d85780637ec4a659146106ef57610267565b806323b872dd116101dd57806344a0d68a116101a157806344a0d68a146105375780634fdd43cb1461056057806351830227146105895780635503a0e8146105b45780635aca1bb6146105df5780635c975abb1461060857610267565b806323b872dd1461047357806333bc1c5c1461049c5780633ccfd60b146104c757806342842e0e146104d1578063438b6300146104fa57610267565b80631159aca41161022f5780631159aca41461036357806313faede61461038e57806316ba10e0146103b957806316c38b3c146103e257806318160ddd1461040b57806318cae2691461043657610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780631042779c1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613ab7565b6109eb565b6040516102a0919061400e565b60405180910390f35b3480156102b557600080fd5b506102be610acd565b6040516102cb9190614029565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613b5a565b610b5f565b6040516103089190613f85565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613a4a565b610bdb565b005b34801561034657600080fd5b50610361600480360381019061035c9190613b5a565b610ce6565b005b34801561036f57600080fd5b50610378610db1565b60405161038591906141ab565b60405180910390f35b34801561039a57600080fd5b506103a3610db7565b6040516103b091906141ab565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613b11565b610dbd565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613a8a565b610e53565b005b34801561041757600080fd5b50610420610eec565b60405161042d91906141ab565b60405180910390f35b34801561044257600080fd5b5061045d600480360381019061045891906138c7565b610f03565b60405161046a91906141ab565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190613934565b610f1b565b005b3480156104a857600080fd5b506104b1610f2b565b6040516104be919061400e565b60405180910390f35b6104cf610f3e565b005b3480156104dd57600080fd5b506104f860048036038101906104f39190613934565b61103a565b005b34801561050657600080fd5b50610521600480360381019061051c91906138c7565b61105a565b60405161052e9190613fec565b60405180910390f35b34801561054357600080fd5b5061055e60048036038101906105599190613b5a565b611275565b005b34801561056c57600080fd5b5061058760048036038101906105829190613b11565b6112fb565b005b34801561059557600080fd5b5061059e611391565b6040516105ab919061400e565b60405180910390f35b3480156105c057600080fd5b506105c96113a4565b6040516105d69190614029565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190613a8a565b611432565b005b34801561061457600080fd5b5061061d6114cb565b60405161062a919061400e565b60405180910390f35b34801561063f57600080fd5b506106486114de565b6040516106559190614029565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190613b5a565b61156c565b6040516106929190613f85565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd91906138c7565b611582565b6040516106cf91906141ab565b60405180910390f35b3480156106e457600080fd5b506106ed611652565b005b3480156106fb57600080fd5b5061071660048036038101906107119190613b11565b6116da565b005b34801561072457600080fd5b5061072d611770565b60405161073a9190613f85565b60405180910390f35b34801561074f57600080fd5b5061075861179a565b60405161076591906141ab565b60405180910390f35b34801561077a57600080fd5b506107836117a0565b6040516107909190614029565b60405180910390f35b6107b360048036038101906107ae9190613b5a565b611832565b005b3480156107c157600080fd5b506107dc60048036038101906107d79190613a0a565b611be1565b005b3480156107ea57600080fd5b506107f3611d59565b6040516108009190614029565b60405180910390f35b34801561081557600080fd5b50610830600480360381019061082b9190613b5a565b611de7565b005b34801561083e57600080fd5b5061085960048036038101906108549190613987565b611e6d565b005b34801561086757600080fd5b50610882600480360381019061087d9190613b5a565b611ee9565b60405161088f9190614029565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba9190613b5a565b612042565b005b3480156108cd57600080fd5b506108d66120c8565b6040516108e391906141ab565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190613a8a565b6120ce565b005b34801561092157600080fd5b5061092a612167565b60405161093791906141ab565b60405180910390f35b34801561094c57600080fd5b50610967600480360381019061096291906138f4565b61216d565b604051610974919061400e565b60405180910390f35b34801561098957600080fd5b506109a4600480360381019061099f9190613b87565b612201565b005b6109c060048036038101906109bb9190613b5a565b612370565b005b3480156109ce57600080fd5b506109e960048036038101906109e491906138c7565b61249a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac65750610ac5826125b5565b5b9050919050565b606060028054610adc906144b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b08906144b4565b8015610b555780601f10610b2a57610100808354040283529160200191610b55565b820191906000526020600020905b815481529060010190602001808311610b3857829003601f168201915b5050505050905090565b6000610b6a8261261f565b610ba0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be68261156c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c4e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c6d61266d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c9f5750610c9d81610c9861266d565b61216d565b155b15610cd6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce1838383612675565b505050565b610cee61266d565b73ffffffffffffffffffffffffffffffffffffffff16610d0c611770565b73ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d59906140eb565b60405180910390fd5b600d54811115610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e906140ab565b60405180910390fd5b80600f8190555050565b60105481565b600c5481565b610dc561266d565b73ffffffffffffffffffffffffffffffffffffffff16610de3611770565b73ffffffffffffffffffffffffffffffffffffffff1614610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e30906140eb565b60405180910390fd5b80600a9080519060200190610e4f929190613698565b5050565b610e5b61266d565b73ffffffffffffffffffffffffffffffffffffffff16610e79611770565b73ffffffffffffffffffffffffffffffffffffffff1614610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec6906140eb565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610ef6612727565b6001546000540303905090565b60126020528060005260406000206000915090505481565b610f26838383612730565b505050565b601160019054906101000a900460ff1681565b610f4661266d565b73ffffffffffffffffffffffffffffffffffffffff16610f64611770565b73ffffffffffffffffffffffffffffffffffffffff1614610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb1906140eb565b60405180910390fd5b6000610fc4611770565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fe790613f70565b60006040518083038185875af1925050503d8060008114611024576040519150601f19603f3d011682016040523d82523d6000602084013e611029565b606091505b505090508061103757600080fd5b50565b61105583838360405180602001604052806000815250611e6d565b505050565b6060600061106783611582565b905060008167ffffffffffffffff8111156110855761108461464d565b5b6040519080825280602002602001820160405280156110b35781602001602082028036833780820191505090505b50905060006110c0612727565b90506000805b84821080156110d75750600d548311155b15611268576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156111e45750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b156111f157806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561125457838584815181106112395761123861461e565b5b602002602001018181525050828061125090614517565b9350505b838061125f90614517565b945050506110c6565b8395505050505050919050565b61127d61266d565b73ffffffffffffffffffffffffffffffffffffffff1661129b611770565b73ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e8906140eb565b60405180910390fd5b80600c8190555050565b61130361266d565b73ffffffffffffffffffffffffffffffffffffffff16611321611770565b73ffffffffffffffffffffffffffffffffffffffff1614611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e906140eb565b60405180910390fd5b80600b908051906020019061138d929190613698565b5050565b601160029054906101000a900460ff1681565b600a80546113b1906144b4565b80601f01602080910402602001604051908101604052809291908181526020018280546113dd906144b4565b801561142a5780601f106113ff5761010080835404028352916020019161142a565b820191906000526020600020905b81548152906001019060200180831161140d57829003601f168201915b505050505081565b61143a61266d565b73ffffffffffffffffffffffffffffffffffffffff16611458611770565b73ffffffffffffffffffffffffffffffffffffffff16146114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a5906140eb565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b601160009054906101000a900460ff1681565b600980546114eb906144b4565b80601f0160208091040260200160405190810160405280929190818152602001828054611517906144b4565b80156115645780601f1061153957610100808354040283529160200191611564565b820191906000526020600020905b81548152906001019060200180831161154757829003601f168201915b505050505081565b600061157782612be6565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ea576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61165a61266d565b73ffffffffffffffffffffffffffffffffffffffff16611678611770565b73ffffffffffffffffffffffffffffffffffffffff16146116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c5906140eb565b60405180910390fd5b6116d86000612e75565b565b6116e261266d565b73ffffffffffffffffffffffffffffffffffffffff16611700611770565b73ffffffffffffffffffffffffffffffffffffffff1614611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d906140eb565b60405180910390fd5b806009908051906020019061176c929190613698565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600380546117af906144b4565b80601f01602080910402602001604051908101604052809291908181526020018280546117db906144b4565b80156118285780601f106117fd57610100808354040283529160200191611828565b820191906000526020600020905b81548152906001019060200180831161180b57829003601f168201915b5050505050905090565b8061183b611770565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118bf5760008111801561187f5750600e548111155b6118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b59061408b565b60405180910390fd5b5b600d54816118cb610eec565b6118d591906142e9565b1115611916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190d9061414b565b60405180910390fd5b816000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060105481106119b55781600c546119729190614370565b3410156119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab9061418b565b60405180910390fd5b5b601160009054906101000a900460ff1615611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc9061410b565b60405180910390fd5b601160019054906101000a900460ff16611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b9061416b565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601054811015611af7576010548582611ab191906142e9565b1115611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae9906140cb565b60405180910390fd5b611b52565b6010548110611b5157600f548582611b0f91906142e9565b1115611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b479061404b565b60405180910390fd5b5b5b611b63611b5d61266d565b86612f3b565b6000600190505b858111611bd957601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611bc190614517565b91905055508080611bd190614517565b915050611b6a565b505050505050565b611be961266d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c4e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611c5b61266d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d0861266d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d4d919061400e565b60405180910390a35050565b600b8054611d66906144b4565b80601f0160208091040260200160405190810160405280929190818152602001828054611d92906144b4565b8015611ddf5780601f10611db457610100808354040283529160200191611ddf565b820191906000526020600020905b815481529060010190602001808311611dc257829003601f168201915b505050505081565b611def61266d565b73ffffffffffffffffffffffffffffffffffffffff16611e0d611770565b73ffffffffffffffffffffffffffffffffffffffff1614611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a906140eb565b60405180910390fd5b80600e8190555050565b611e78848484612730565b611e978373ffffffffffffffffffffffffffffffffffffffff16612592565b8015611eac5750611eaa84848484612f59565b155b15611ee3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611ef48261261f565b611f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2a9061412b565b60405180910390fd5b60001515601160029054906101000a900460ff1615151415611fe157600b8054611f5c906144b4565b80601f0160208091040260200160405190810160405280929190818152602001828054611f88906144b4565b8015611fd55780601f10611faa57610100808354040283529160200191611fd5565b820191906000526020600020905b815481529060010190602001808311611fb857829003601f168201915b5050505050905061203d565b6000611feb6130b9565b9050600081511161200b5760405180602001604052806000815250612039565b806120158461314b565b600a60405160200161202993929190613f3f565b6040516020818303038152906040525b9150505b919050565b61204a61266d565b73ffffffffffffffffffffffffffffffffffffffff16612068611770565b73ffffffffffffffffffffffffffffffffffffffff16146120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b5906140eb565b60405180910390fd5b8060108190555050565b600d5481565b6120d661266d565b73ffffffffffffffffffffffffffffffffffffffff166120f4611770565b73ffffffffffffffffffffffffffffffffffffffff161461214a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612141906140eb565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8161220a611770565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461228e5760008111801561224e5750600e548111155b61228d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122849061408b565b60405180910390fd5b5b600d548161229a610eec565b6122a491906142e9565b11156122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc9061414b565b60405180910390fd5b6122ed61266d565b73ffffffffffffffffffffffffffffffffffffffff1661230b611770565b73ffffffffffffffffffffffffffffffffffffffff1614612361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612358906140eb565b60405180910390fd5b61236b8284612f3b565b505050565b61237861266d565b73ffffffffffffffffffffffffffffffffffffffff16612396611770565b73ffffffffffffffffffffffffffffffffffffffff16146123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e3906140eb565b60405180910390fd5b6000811161242f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124269061408b565b60405180910390fd5b600d548161243b610eec565b61244591906142e9565b1115612486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247d9061414b565b60405180910390fd5b61249761249161266d565b82612f3b565b50565b6124a261266d565b73ffffffffffffffffffffffffffffffffffffffff166124c0611770565b73ffffffffffffffffffffffffffffffffffffffff1614612516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250d906140eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257d9061406b565b60405180910390fd5b61258f81612e75565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161262a612727565b11158015612639575060005482105b8015612666575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061273b82612be6565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127a6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127c761266d565b73ffffffffffffffffffffffffffffffffffffffff1614806127f657506127f5856127f061266d565b61216d565b5b8061283b575061280461266d565b73ffffffffffffffffffffffffffffffffffffffff1661282384610b5f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612874576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128db576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128e885858560016132ac565b6128f460008487612675565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b74576000548214612b7357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bdf85858560016132b2565b5050505050565b612bee61371e565b600082905080612bfc612727565b11158015612c0b575060005481105b15612e3e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e3c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d20578092505050612e70565b5b600115612e3b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e36578092505050612e70565b612d21565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f558282604051806020016040528060008152506132b8565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f7f61266d565b8786866040518563ffffffff1660e01b8152600401612fa19493929190613fa0565b602060405180830381600087803b158015612fbb57600080fd5b505af1925050508015612fec57506040513d601f19601f82011682018060405250810190612fe99190613ae4565b60015b613066573d806000811461301c576040519150601f19603f3d011682016040523d82523d6000602084013e613021565b606091505b5060008151141561305e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546130c8906144b4565b80601f01602080910402602001604051908101604052809291908181526020018280546130f4906144b4565b80156131415780601f1061311657610100808354040283529160200191613141565b820191906000526020600020905b81548152906001019060200180831161312457829003601f168201915b5050505050905090565b60606000821415613193576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132a7565b600082905060005b600082146131c55780806131ae90614517565b915050600a826131be919061433f565b915061319b565b60008167ffffffffffffffff8111156131e1576131e061464d565b5b6040519080825280601f01601f1916602001820160405280156132135781602001600182028036833780820191505090505b5090505b600085146132a05760018261322c91906143ca565b9150600a8561323b9190614560565b603061324791906142e9565b60f81b81838151811061325d5761325c61461e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613299919061433f565b9450613217565b8093505050505b919050565b50505050565b50505050565b6132c583838360016132ca565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613337576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613372576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61337f60008683876132ac565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561354957506135488773ffffffffffffffffffffffffffffffffffffffff16612592565b5b1561360f575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135be6000888480600101955088612f59565b6135f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561354f57826000541461360a57600080fd5b61367b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613610575b81600081905550505061369160008683876132b2565b5050505050565b8280546136a4906144b4565b90600052602060002090601f0160209004810192826136c6576000855561370d565b82601f106136df57805160ff191683800117855561370d565b8280016001018555821561370d579182015b8281111561370c5782518255916020019190600101906136f1565b5b50905061371a9190613761565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561377a576000816000905550600101613762565b5090565b600061379161378c846141eb565b6141c6565b9050828152602081018484840111156137ad576137ac614681565b5b6137b8848285614472565b509392505050565b60006137d36137ce8461421c565b6141c6565b9050828152602081018484840111156137ef576137ee614681565b5b6137fa848285614472565b509392505050565b600081359050613811816148b3565b92915050565b600081359050613826816148ca565b92915050565b60008135905061383b816148e1565b92915050565b600081519050613850816148e1565b92915050565b600082601f83011261386b5761386a61467c565b5b813561387b84826020860161377e565b91505092915050565b600082601f8301126138995761389861467c565b5b81356138a98482602086016137c0565b91505092915050565b6000813590506138c1816148f8565b92915050565b6000602082840312156138dd576138dc61468b565b5b60006138eb84828501613802565b91505092915050565b6000806040838503121561390b5761390a61468b565b5b600061391985828601613802565b925050602061392a85828601613802565b9150509250929050565b60008060006060848603121561394d5761394c61468b565b5b600061395b86828701613802565b935050602061396c86828701613802565b925050604061397d868287016138b2565b9150509250925092565b600080600080608085870312156139a1576139a061468b565b5b60006139af87828801613802565b94505060206139c087828801613802565b93505060406139d1878288016138b2565b925050606085013567ffffffffffffffff8111156139f2576139f1614686565b5b6139fe87828801613856565b91505092959194509250565b60008060408385031215613a2157613a2061468b565b5b6000613a2f85828601613802565b9250506020613a4085828601613817565b9150509250929050565b60008060408385031215613a6157613a6061468b565b5b6000613a6f85828601613802565b9250506020613a80858286016138b2565b9150509250929050565b600060208284031215613aa057613a9f61468b565b5b6000613aae84828501613817565b91505092915050565b600060208284031215613acd57613acc61468b565b5b6000613adb8482850161382c565b91505092915050565b600060208284031215613afa57613af961468b565b5b6000613b0884828501613841565b91505092915050565b600060208284031215613b2757613b2661468b565b5b600082013567ffffffffffffffff811115613b4557613b44614686565b5b613b5184828501613884565b91505092915050565b600060208284031215613b7057613b6f61468b565b5b6000613b7e848285016138b2565b91505092915050565b60008060408385031215613b9e57613b9d61468b565b5b6000613bac858286016138b2565b9250506020613bbd85828601613802565b9150509250929050565b6000613bd38383613f21565b60208301905092915050565b613be8816143fe565b82525050565b6000613bf982614272565b613c0381856142a0565b9350613c0e8361424d565b8060005b83811015613c3f578151613c268882613bc7565b9750613c3183614293565b925050600181019050613c12565b5085935050505092915050565b613c5581614410565b82525050565b6000613c668261427d565b613c7081856142b1565b9350613c80818560208601614481565b613c8981614690565b840191505092915050565b6000613c9f82614288565b613ca981856142cd565b9350613cb9818560208601614481565b613cc281614690565b840191505092915050565b6000613cd882614288565b613ce281856142de565b9350613cf2818560208601614481565b80840191505092915050565b60008154613d0b816144b4565b613d1581866142de565b94506001821660008114613d305760018114613d4157613d74565b60ff19831686528186019350613d74565b613d4a8561425d565b60005b83811015613d6c57815481890152600182019150602081019050613d4d565b838801955050505b50505092915050565b6000613d8a6013836142cd565b9150613d95826146a1565b602082019050919050565b6000613dad6026836142cd565b9150613db8826146ca565b604082019050919050565b6000613dd06014836142cd565b9150613ddb82614719565b602082019050919050565b6000613df36013836142cd565b9150613dfe82614742565b602082019050919050565b6000613e166018836142cd565b9150613e218261476b565b602082019050919050565b6000613e396020836142cd565b9150613e4482614794565b602082019050919050565b6000613e5c6017836142cd565b9150613e67826147bd565b602082019050919050565b6000613e7f602f836142cd565b9150613e8a826147e6565b604082019050919050565b6000613ea26000836142c2565b9150613ead82614835565b600082019050919050565b6000613ec56014836142cd565b9150613ed082614838565b602082019050919050565b6000613ee86017836142cd565b9150613ef382614861565b602082019050919050565b6000613f0b6013836142cd565b9150613f168261488a565b602082019050919050565b613f2a81614468565b82525050565b613f3981614468565b82525050565b6000613f4b8286613ccd565b9150613f578285613ccd565b9150613f638284613cfe565b9150819050949350505050565b6000613f7b82613e95565b9150819050919050565b6000602082019050613f9a6000830184613bdf565b92915050565b6000608082019050613fb56000830187613bdf565b613fc26020830186613bdf565b613fcf6040830185613f30565b8181036060830152613fe18184613c5b565b905095945050505050565b600060208201905081810360008301526140068184613bee565b905092915050565b60006020820190506140236000830184613c4c565b92915050565b600060208201905081810360008301526140438184613c94565b905092915050565b6000602082019050818103600083015261406481613d7d565b9050919050565b6000602082019050818103600083015261408481613da0565b9050919050565b600060208201905081810360008301526140a481613dc3565b9050919050565b600060208201905081810360008301526140c481613de6565b9050919050565b600060208201905081810360008301526140e481613e09565b9050919050565b6000602082019050818103600083015261410481613e2c565b9050919050565b6000602082019050818103600083015261412481613e4f565b9050919050565b6000602082019050818103600083015261414481613e72565b9050919050565b6000602082019050818103600083015261416481613eb8565b9050919050565b6000602082019050818103600083015261418481613edb565b9050919050565b600060208201905081810360008301526141a481613efe565b9050919050565b60006020820190506141c06000830184613f30565b92915050565b60006141d06141e1565b90506141dc82826144e6565b919050565b6000604051905090565b600067ffffffffffffffff8211156142065761420561464d565b5b61420f82614690565b9050602081019050919050565b600067ffffffffffffffff8211156142375761423661464d565b5b61424082614690565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142f482614468565b91506142ff83614468565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561433457614333614591565b5b828201905092915050565b600061434a82614468565b915061435583614468565b925082614365576143646145c0565b5b828204905092915050565b600061437b82614468565b915061438683614468565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143bf576143be614591565b5b828202905092915050565b60006143d582614468565b91506143e083614468565b9250828210156143f3576143f2614591565b5b828203905092915050565b600061440982614448565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561449f578082015181840152602081019050614484565b838111156144ae576000848401525b50505050565b600060028204905060018216806144cc57607f821691505b602082108114156144e0576144df6145ef565b5b50919050565b6144ef82614690565b810181811067ffffffffffffffff8211171561450e5761450d61464d565b5b80604052505050565b600061452282614468565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561455557614554614591565b5b600182019050919050565b600061456b82614468565b915061457683614468565b925082614586576145856145c0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4578636565646564204d696e74204c696d697400000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f45786365656420746f74616c20616d6f756e7400000000000000000000000000600082015250565b7f45786365656465642046726565204d696e74204c696d69740000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4e6f74206f70656e20746f207075626c69632079657421000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6148bc816143fe565b81146148c757600080fd5b50565b6148d381614410565b81146148de57600080fd5b50565b6148ea8161441c565b81146148f557600080fd5b50565b61490181614468565b811461490c57600080fd5b5056fea264697066735822122010c97ce4b0082533dfd4eb0884b1b137719d21b8fa502ba51f2978f2fbbc576764736f6c63430008070033

Deployed Bytecode Sourcemap

44839:5331:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24476:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27589:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29092:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28655:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49053:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45259:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45091:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49605:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49711:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23725:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45402:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29957:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45333:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49902:155;;;:::i;:::-;;30198:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47397:796;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48838:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49361:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45368:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45012:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49794:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45303:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44925:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27397:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24845:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43934:103;;;;;;;;;;;;;:::i;:::-;;49499:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43283:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45169:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27758:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46213:760;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29368:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45051:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49225:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30454:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48300:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48920:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45132:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48751:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45213:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29726:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47234:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46979:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44192:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24476:305;24578:4;24630:25;24615:40;;;:11;:40;;;;:105;;;;24687:33;24672:48;;;:11;:48;;;;24615:105;:158;;;;24737:36;24761:11;24737:23;:36::i;:::-;24615:158;24595:178;;24476:305;;;:::o;27589:100::-;27643:13;27676:5;27669:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27589:100;:::o;29092:204::-;29160:7;29185:16;29193:7;29185;:16::i;:::-;29180:64;;29210:34;;;;;;;;;;;;;;29180:64;29264:15;:24;29280:7;29264:24;;;;;;;;;;;;;;;;;;;;;29257:31;;29092:204;;;:::o;28655:371::-;28728:13;28744:24;28760:7;28744:15;:24::i;:::-;28728:40;;28789:5;28783:11;;:2;:11;;;28779:48;;;28803:24;;;;;;;;;;;;;;28779:48;28860:5;28844:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28870:37;28887:5;28894:12;:10;:12::i;:::-;28870:16;:37::i;:::-;28869:38;28844:63;28840:138;;;28931:35;;;;;;;;;;;;;;28840:138;28990:28;28999:2;29003:7;29012:5;28990:8;:28::i;:::-;28717:309;28655:371;;:::o;49053:166::-;43514:12;:10;:12::i;:::-;43503:23;;:7;:5;:7::i;:::-;:23;;;43495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49143:9:::1;;49132:7;:20;;49124:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;49206:7;49185:18;:28;;;;49053:166:::0;:::o;45259:36::-;;;;:::o;45091:33::-;;;;:::o;49605:100::-;43514:12;:10;:12::i;:::-;43503:23;;:7;:5;:7::i;:::-;:23;;;43495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49689:10:::1;49677:9;:22;;;;;;;;;;;;:::i;:::-;;49605:100:::0;:::o;49711:77::-;43514:12;:10;:12::i;:::-;43503:23;;:7;:5;:7::i;:::-;:23;;;43495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49776:6:::1;49767;;:15;;;;;;;;;;;;;;;;;;49711:77:::0;:::o;23725:303::-;23769:7;23994:15;:13;:15::i;:::-;23979:12;;23963:13;;:28;:46;23956:53;;23725:303;:::o;45402:55::-;;;;;;;;;;;;;;;;;:::o;29957:170::-;30091:28;30101:4;30107:2;30111:7;30091:9;:28::i;:::-;29957:170;;;:::o;45333:30::-;;;;;;;;;;;;;:::o;49902:155::-;43514:12;:10;:12::i;:::-;43503:23;;:7;:5;:7::i;:::-;:23;;;43495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49959:7:::1;49980;:5;:7::i;:::-;49972:21;;50001;49972:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49958:69;;;50043:2;50035:11;;;::::0;::::1;;49947:110;49902:155::o:0;30198:185::-;30336:39;30353:4;30359:2;30363:7;30336:39;;;;;;;;;;;;:16;:39::i;:::-;30198:185;;;:::o;47397:796::-;47457:16;47482:23;47508:17;47518:6;47508:9;:17::i;:::-;47482:43;;47532:30;47579:15;47565:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47532:63;;47602:22;47627:15;:13;:15::i;:::-;47602:40;;47649:23;47683:26;47718:441;47743:15;47725;:33;:64;;;;;47780:9;;47762:14;:27;;47725:64;47718:441;;;47800:31;47834:11;:27;47846:14;47834:27;;;;;;;;;;;47800:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47877:9;:16;;;47876:17;:49;;;;;47923:1;47897:28;;:9;:14;;;:28;;;;47876:49;47872:111;;;47959:9;:14;;;47938:35;;47872:111;48019:6;47997:28;;:18;:28;;;47993:132;;;48071:14;48038:13;48052:15;48038:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;48098:17;;;;;:::i;:::-;;;;47993:132;48135:16;;;;;:::i;:::-;;;;47791:368;47718:441;;;48174:13;48167:20;;;;;;;47397:796;;;:::o;48838:75::-;43514:12;:10;:12::i;:::-;43503:23;;:7;:5;:7::i;:::-;:23;;;43495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48901:5:::1;48894:4;:12;;;;48838:75:::0;:::o;49361:132::-;43514:12;:10;:12::i;:::-;43503:23;;:7;:5;:7::i;:::-;:23;;;43495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49469:18:::1;49449:17;:38;;;;;;;;;;;;:::i;:::-;;49361:132:::0;:::o;45368:27::-;;;;;;;;;;;;;:::o;45012:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49794:85::-;43514:12;:10;:12::i;:::-;43503:23;;:7;:5;:7::i;:::-;:23;;;43495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49867:6:::1;49854:10;;:19;;;;;;;;;;;;;;;;;;49794:85:::0;:::o;45303:25::-;;;;;;;;;;;;;:::o;44925:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27397:125::-;27461:7;27488:21;27501:7;27488:12;:21::i;:::-;:26;;;27481:33;;27397:125;;;:::o;24845:206::-;24909:7;24950:1;24933:19;;:5;:19;;;24929:60;;;24961:28;;;;;;;;;;;;;;24929:60;25015:12;:19;25028:5;25015:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25007:36;;25000:43;;24845:206;;;:::o;43934:103::-;43514:12;:10;:12::i;:::-;43503:23;;:7;:5;:7::i;:::-;:23;;;43495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43999:30:::1;44026:1;43999:18;:30::i;:::-;43934:103::o:0;49499:100::-;43514:12;:10;:12::i;:::-;43503:23;;:7;:5;:7::i;:::-;:23;;;43495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49583:10:::1;49571:9;:22;;;;;;;;;;;;:::i;:::-;;49499:100:::0;:::o;43283:87::-;43329:7;43356:6;;;;;;;;;;;43349:13;;43283:87;:::o;45169:38::-;;;;:::o;27758:104::-;27814:13;27847:7;27840:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27758:104;:::o;46213:760::-;46278:11;45714:7;:5;:7::i;:::-;45700:21;;:10;:21;;;45696:132;;45757:1;45743:11;:15;:52;;;;;45777:18;;45762:11;:33;;45743:52;45735:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;45696:132;45873:9;;45858:11;45842:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;45834:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46311:11:::1;45985:24;46012:20;:32;46033:10;46012:32;;;;;;;;;;;;;;;;45985:59;;46074:17;;46054:16;:37;46050:124;;46132:11;46125:4;;:18;;;;:::i;:::-;46112:9;:31;;46104:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46050:124;46340:6:::2;;;;;;;;;;;46339:7;46331:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;46390:10;;;;;;;;;;;46382:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;46435:24;46462:20;:32;46483:10;46462:32;;;;;;;;;;;;;;;;46435:59;;46526:17;;46507:16;:36;46503:320;;;46604:17;;46589:11;46570:16;:30;;;;:::i;:::-;:51;;46562:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;46503:320;;;46692:17;;46672:16;:37;46668:155;;46769:18;;46754:11;46735:16;:30;;;;:::i;:::-;:52;;46727:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;46668:155;46503:320;46831:36;46841:12;:10;:12::i;:::-;46855:11;46831:9;:36::i;:::-;46879:9;46891:1;46879:13;;46874:94;46898:11;46894:1;:15;46874:94;;46926:20;:32;46947:10;46926:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;46911:3;;;;;:::i;:::-;;;;46874:94;;;;46324:649;45978:213:::1;45914:1;46213:760:::0;;:::o;29368:287::-;29479:12;:10;:12::i;:::-;29467:24;;:8;:24;;;29463:54;;;29500:17;;;;;;;;;;;;;;29463:54;29575:8;29530:18;:32;29549:12;:10;:12::i;:::-;29530:32;;;;;;;;;;;;;;;:42;29563:8;29530:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29628:8;29599:48;;29614:12;:10;:12::i;:::-;29599:48;;;29638:8;29599:48;;;;;;:::i;:::-;;;;;;;;29368:287;;:::o;45051:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49225:130::-;43514:12;:10;:12::i;:::-;43503:23;;:7;:5;:7::i;:::-;:23;;;43495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49330:19:::1;49309:18;:40;;;;49225:130:::0;:::o;30454:369::-;30621:28;30631:4;30637:2;30641:7;30621:9;:28::i;:::-;30664:15;:2;:13;;;:15::i;:::-;:76;;;;;30684:56;30715:4;30721:2;30725:7;30734:5;30684:30;:56::i;:::-;30683:57;30664:76;30660:156;;;30764:40;;;;;;;;;;;;;;30660:156;30454:369;;;;:::o;48300:445::-;48374:13;48404:17;48412:8;48404:7;:17::i;:::-;48396:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;48498:5;48486:17;;:8;;;;;;;;;;;:17;;;48482:64;;;48521:17;48514:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48482:64;48554:28;48585:10;:8;:10::i;:::-;48554:41;;48640:1;48615:14;48609:28;:32;:130;;;;;;;;;;;;;;;;;48677:14;48693:19;:8;:17;:19::i;:::-;48714:9;48660:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48609:130;48602:137;;;48300:445;;;;:::o;48920:127::-;43514:12;:10;:12::i;:::-;43503:23;;:7;:5;:7::i;:::-;:23;;;43495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49022:18:::1;49002:17;:38;;;;48920:127:::0;:::o;45132:31::-;;;;:::o;48751:81::-;43514:12;:10;:12::i;:::-;43503:23;;:7;:5;:7::i;:::-;:23;;;43495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48820:6:::1;48809:8;;:17;;;;;;;;;;;;;;;;;;48751:81:::0;:::o;45213:38::-;;;;:::o;29726:164::-;29823:4;29847:18;:25;29866:5;29847:25;;;;;;;;;;;;;;;:35;29873:8;29847:35;;;;;;;;;;;;;;;;;;;;;;;;;29840:42;;29726:164;;;;:::o;47234:155::-;47320:11;45714:7;:5;:7::i;:::-;45700:21;;:10;:21;;;45696:132;;45757:1;45743:11;:15;:52;;;;;45777:18;;45762:11;:33;;45743:52;45735:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;45696:132;45873:9;;45858:11;45842:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;45834:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43514:12:::1;:10;:12::i;:::-;43503:23;;:7;:5;:7::i;:::-;:23;;;43495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47350:33:::2;47360:9;47371:11;47350:9;:33::i;:::-;47234:155:::0;;;:::o;46979:251::-;43514:12;:10;:12::i;:::-;43503:23;;:7;:5;:7::i;:::-;:23;;;43495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47074:1:::1;47060:11;:15;47052:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;47147:9;;47132:11;47116:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;47108:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47188:36;47198:12;:10;:12::i;:::-;47212:11;47188:9;:36::i;:::-;46979:251:::0;:::o;44192:201::-;43514:12;:10;:12::i;:::-;43503:23;;:7;:5;:7::i;:::-;:23;;;43495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44301:1:::1;44281:22;;:8;:22;;;;44273:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44357:28;44376:8;44357:18;:28::i;:::-;44192:201:::0;:::o;3391:326::-;3451:4;3708:1;3686:7;:19;;;:23;3679:30;;3391:326;;;:::o;13474:157::-;13559:4;13598:25;13583:40;;;:11;:40;;;;13576:47;;13474:157;;;:::o;31078:174::-;31135:4;31178:7;31159:15;:13;:15::i;:::-;:26;;:53;;;;;31199:13;;31189:7;:23;31159:53;:85;;;;;31217:11;:20;31229:7;31217:20;;;;;;;;;;;:27;;;;;;;;;;;;31216:28;31159:85;31152:92;;31078:174;;;:::o;19992:98::-;20045:7;20072:10;20065:17;;19992:98;:::o;39235:196::-;39377:2;39350:15;:24;39366:7;39350:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39415:7;39411:2;39395:28;;39404:5;39395:28;;;;;;;;;;;;39235:196;;;:::o;48199:95::-;48264:7;48287:1;48280:8;;48199:95;:::o;34178:2130::-;34293:35;34331:21;34344:7;34331:12;:21::i;:::-;34293:59;;34391:4;34369:26;;:13;:18;;;:26;;;34365:67;;34404:28;;;;;;;;;;;;;;34365:67;34445:22;34487:4;34471:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;34508:36;34525:4;34531:12;:10;:12::i;:::-;34508:16;:36::i;:::-;34471:73;:126;;;;34585:12;:10;:12::i;:::-;34561:36;;:20;34573:7;34561:11;:20::i;:::-;:36;;;34471:126;34445:153;;34616:17;34611:66;;34642:35;;;;;;;;;;;;;;34611:66;34706:1;34692:16;;:2;:16;;;34688:52;;;34717:23;;;;;;;;;;;;;;34688:52;34753:43;34775:4;34781:2;34785:7;34794:1;34753:21;:43::i;:::-;34861:35;34878:1;34882:7;34891:4;34861:8;:35::i;:::-;35222:1;35192:12;:18;35205:4;35192:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35266:1;35238:12;:16;35251:2;35238:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35284:31;35318:11;:20;35330:7;35318:20;;;;;;;;;;;35284:54;;35369:2;35353:8;:13;;;:18;;;;;;;;;;;;;;;;;;35419:15;35386:8;:23;;;:49;;;;;;;;;;;;;;;;;;35687:19;35719:1;35709:7;:11;35687:33;;35735:31;35769:11;:24;35781:11;35769:24;;;;;;;;;;;35735:58;;35837:1;35812:27;;:8;:13;;;;;;;;;;;;:27;;;35808:384;;;36022:13;;36007:11;:28;36003:174;;36076:4;36060:8;:13;;;:20;;;;;;;;;;;;;;;;;;36129:13;:28;;;36103:8;:23;;;:54;;;;;;;;;;;;;;;;;;36003:174;35808:384;35167:1036;;;36239:7;36235:2;36220:27;;36229:4;36220:27;;;;;;;;;;;;36258:42;36279:4;36285:2;36289:7;36298:1;36258:20;:42::i;:::-;34282:2026;;34178:2130;;;:::o;26226:1109::-;26288:21;;:::i;:::-;26322:12;26337:7;26322:22;;26405:4;26386:15;:13;:15::i;:::-;:23;;:47;;;;;26420:13;;26413:4;:20;26386:47;26382:886;;;26454:31;26488:11;:17;26500:4;26488:17;;;;;;;;;;;26454:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26529:9;:16;;;26524:729;;26600:1;26574:28;;:9;:14;;;:28;;;26570:101;;26638:9;26631:16;;;;;;26570:101;26973:261;26980:4;26973:261;;;27013:6;;;;;;;;27058:11;:17;27070:4;27058:17;;;;;;;;;;;27046:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27132:1;27106:28;;:9;:14;;;:28;;;27102:109;;27174:9;27167:16;;;;;;27102:109;26973:261;;;26524:729;26435:833;26382:886;27296:31;;;;;;;;;;;;;;26226:1109;;;;:::o;44553:191::-;44627:16;44646:6;;;;;;;;;;;44627:25;;44672:8;44663:6;;:17;;;;;;;;;;;;;;;;;;44727:8;44696:40;;44717:8;44696:40;;;;;;;;;;;;44616:128;44553:191;:::o;31260:104::-;31329:27;31339:2;31343:8;31329:27;;;;;;;;;;;;:9;:27::i;:::-;31260:104;;:::o;39923:667::-;40086:4;40123:2;40107:36;;;40144:12;:10;:12::i;:::-;40158:4;40164:7;40173:5;40107:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40103:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40358:1;40341:6;:13;:18;40337:235;;;40387:40;;;;;;;;;;;;;;40337:235;40530:6;40524:13;40515:6;40511:2;40507:15;40500:38;40103:480;40236:45;;;40226:55;;;:6;:55;;;;40219:62;;;39923:667;;;;;;:::o;50063:104::-;50123:13;50152:9;50145:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50063:104;:::o;399:723::-;455:13;685:1;676:5;:10;672:53;;;703:10;;;;;;;;;;;;;;;;;;;;;672:53;735:12;750:5;735:20;;766:14;791:78;806:1;798:4;:9;791:78;;824:8;;;;;:::i;:::-;;;;855:2;847:10;;;;;:::i;:::-;;;791:78;;;879:19;911:6;901:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;879:39;;929:154;945:1;936:5;:10;929:154;;973:1;963:11;;;;;:::i;:::-;;;1040:2;1032:5;:10;;;;:::i;:::-;1019:2;:24;;;;:::i;:::-;1006:39;;989:6;996;989:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1069:2;1060:11;;;;;:::i;:::-;;;929:154;;;1107:6;1093:21;;;;;399:723;;;;:::o;41238:159::-;;;;;:::o;42056:158::-;;;;;:::o;31727:163::-;31850:32;31856:2;31860:8;31870:5;31877:4;31850:5;:32::i;:::-;31727:163;;;:::o;32149:1775::-;32288:20;32311:13;;32288:36;;32353:1;32339:16;;:2;:16;;;32335:48;;;32364:19;;;;;;;;;;;;;;32335:48;32410:1;32398:8;:13;32394:44;;;32420:18;;;;;;;;;;;;;;32394:44;32451:61;32481:1;32485:2;32489:12;32503:8;32451:21;:61::i;:::-;32824:8;32789:12;:16;32802:2;32789:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32888:8;32848:12;:16;32861:2;32848:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32947:2;32914:11;:25;32926:12;32914:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33014:15;32964:11;:25;32976:12;32964:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33047:20;33070:12;33047:35;;33097:11;33126:8;33111:12;:23;33097:37;;33155:4;:23;;;;;33163:15;:2;:13;;;:15::i;:::-;33155:23;33151:641;;;33199:314;33255:12;33251:2;33230:38;;33247:1;33230:38;;;;;;;;;;;;33296:69;33335:1;33339:2;33343:14;;;;;;33359:5;33296:30;:69::i;:::-;33291:174;;33401:40;;;;;;;;;;;;;;33291:174;33508:3;33492:12;:19;;33199:314;;33594:12;33577:13;;:29;33573:43;;33608:8;;;33573:43;33151:641;;;33657:120;33713:14;;;;;;33709:2;33688:40;;33705:1;33688:40;;;;;;;;;;;;33772:3;33756:12;:19;;33657:120;;33151:641;33822:12;33806:13;:28;;;;32764:1082;;33856:60;33885:1;33889:2;33893:12;33907:8;33856:20;:60::i;:::-;32277:1647;32149:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10302:845::-;10405:3;10442:5;10436:12;10471:36;10497:9;10471:36;:::i;:::-;10523:89;10605:6;10600:3;10523:89;:::i;:::-;10516:96;;10643:1;10632:9;10628:17;10659:1;10654:137;;;;10805:1;10800:341;;;;10621:520;;10654:137;10738:4;10734:9;10723;10719:25;10714:3;10707:38;10774:6;10769:3;10765:16;10758:23;;10654:137;;10800:341;10867:38;10899:5;10867:38;:::i;:::-;10927:1;10941:154;10955:6;10952:1;10949:13;10941:154;;;11029:7;11023:14;11019:1;11014:3;11010:11;11003:35;11079:1;11070:7;11066:15;11055:26;;10977:4;10974:1;10970:12;10965:17;;10941:154;;;11124:6;11119:3;11115:16;11108:23;;10807:334;;10621:520;;10409:738;;10302:845;;;;:::o;11153:366::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:::-;13527:3;13548:67;13612:2;13607:3;13548:67;:::i;:::-;13541:74;;13624:93;13713:3;13624:93;:::i;:::-;13742:2;13737:3;13733:12;13726:19;;13385:366;;;:::o;13757:::-;13899:3;13920:67;13984:2;13979:3;13920:67;:::i;:::-;13913:74;;13996:93;14085:3;13996:93;:::i;:::-;14114:2;14109:3;14105:12;14098:19;;13757:366;;;:::o;14129:398::-;14288:3;14309:83;14390:1;14385:3;14309:83;:::i;:::-;14302:90;;14401:93;14490:3;14401:93;:::i;:::-;14519:1;14514:3;14510:11;14503:18;;14129:398;;;:::o;14533:366::-;14675:3;14696:67;14760:2;14755:3;14696:67;:::i;:::-;14689:74;;14772:93;14861:3;14772:93;:::i;:::-;14890:2;14885:3;14881:12;14874:19;;14533:366;;;:::o;14905:::-;15047:3;15068:67;15132:2;15127:3;15068:67;:::i;:::-;15061:74;;15144:93;15233:3;15144:93;:::i;:::-;15262:2;15257:3;15253:12;15246:19;;14905:366;;;:::o;15277:::-;15419:3;15440:67;15504:2;15499:3;15440:67;:::i;:::-;15433:74;;15516:93;15605:3;15516:93;:::i;:::-;15634:2;15629:3;15625:12;15618:19;;15277:366;;;:::o;15649:108::-;15726:24;15744:5;15726:24;:::i;:::-;15721:3;15714:37;15649:108;;:::o;15763:118::-;15850:24;15868:5;15850:24;:::i;:::-;15845:3;15838:37;15763:118;;:::o;15887:589::-;16112:3;16134:95;16225:3;16216:6;16134:95;:::i;:::-;16127:102;;16246:95;16337:3;16328:6;16246:95;:::i;:::-;16239:102;;16358:92;16446:3;16437:6;16358:92;:::i;:::-;16351:99;;16467:3;16460:10;;15887:589;;;;;;:::o;16482:379::-;16666:3;16688:147;16831:3;16688:147;:::i;:::-;16681:154;;16852:3;16845:10;;16482:379;;;:::o;16867:222::-;16960:4;16998:2;16987:9;16983:18;16975:26;;17011:71;17079:1;17068:9;17064:17;17055:6;17011:71;:::i;:::-;16867:222;;;;:::o;17095:640::-;17290:4;17328:3;17317:9;17313:19;17305:27;;17342:71;17410:1;17399:9;17395:17;17386:6;17342:71;:::i;:::-;17423:72;17491:2;17480:9;17476:18;17467:6;17423:72;:::i;:::-;17505;17573:2;17562:9;17558:18;17549:6;17505:72;:::i;:::-;17624:9;17618:4;17614:20;17609:2;17598:9;17594:18;17587:48;17652:76;17723:4;17714:6;17652:76;:::i;:::-;17644:84;;17095:640;;;;;;;:::o;17741:373::-;17884:4;17922:2;17911:9;17907:18;17899:26;;17971:9;17965:4;17961:20;17957:1;17946:9;17942:17;17935:47;17999:108;18102:4;18093:6;17999:108;:::i;:::-;17991:116;;17741:373;;;;:::o;18120:210::-;18207:4;18245:2;18234:9;18230:18;18222:26;;18258:65;18320:1;18309:9;18305:17;18296:6;18258:65;:::i;:::-;18120:210;;;;:::o;18336:313::-;18449:4;18487:2;18476:9;18472:18;18464:26;;18536:9;18530:4;18526:20;18522:1;18511:9;18507:17;18500:47;18564:78;18637:4;18628:6;18564:78;:::i;:::-;18556:86;;18336:313;;;;:::o;18655:419::-;18821:4;18859:2;18848:9;18844:18;18836:26;;18908:9;18902:4;18898:20;18894:1;18883:9;18879:17;18872:47;18936:131;19062:4;18936:131;:::i;:::-;18928:139;;18655:419;;;:::o;19080:::-;19246:4;19284:2;19273:9;19269:18;19261:26;;19333:9;19327:4;19323:20;19319:1;19308:9;19304:17;19297:47;19361:131;19487:4;19361:131;:::i;:::-;19353:139;;19080:419;;;:::o;19505:::-;19671:4;19709:2;19698:9;19694:18;19686:26;;19758:9;19752:4;19748:20;19744:1;19733:9;19729:17;19722:47;19786:131;19912:4;19786:131;:::i;:::-;19778:139;;19505:419;;;:::o;19930:::-;20096:4;20134:2;20123:9;20119:18;20111:26;;20183:9;20177:4;20173:20;20169:1;20158:9;20154:17;20147:47;20211:131;20337:4;20211:131;:::i;:::-;20203:139;;19930:419;;;:::o;20355:::-;20521:4;20559:2;20548:9;20544:18;20536:26;;20608:9;20602:4;20598:20;20594:1;20583:9;20579:17;20572:47;20636:131;20762:4;20636:131;:::i;:::-;20628:139;;20355:419;;;:::o;20780:::-;20946:4;20984:2;20973:9;20969:18;20961:26;;21033:9;21027:4;21023:20;21019:1;21008:9;21004:17;20997:47;21061:131;21187:4;21061:131;:::i;:::-;21053:139;;20780:419;;;:::o;21205:::-;21371:4;21409:2;21398:9;21394:18;21386:26;;21458:9;21452:4;21448:20;21444:1;21433:9;21429:17;21422:47;21486:131;21612:4;21486:131;:::i;:::-;21478:139;;21205:419;;;:::o;21630:::-;21796:4;21834:2;21823:9;21819:18;21811:26;;21883:9;21877:4;21873:20;21869:1;21858:9;21854:17;21847:47;21911:131;22037:4;21911:131;:::i;:::-;21903:139;;21630:419;;;:::o;22055:::-;22221:4;22259:2;22248:9;22244:18;22236:26;;22308:9;22302:4;22298:20;22294:1;22283:9;22279:17;22272:47;22336:131;22462:4;22336:131;:::i;:::-;22328:139;;22055:419;;;:::o;22480:::-;22646:4;22684:2;22673:9;22669:18;22661:26;;22733:9;22727:4;22723:20;22719:1;22708:9;22704:17;22697:47;22761:131;22887:4;22761:131;:::i;:::-;22753:139;;22480:419;;;:::o;22905:::-;23071:4;23109:2;23098:9;23094:18;23086:26;;23158:9;23152:4;23148:20;23144:1;23133:9;23129:17;23122:47;23186:131;23312:4;23186:131;:::i;:::-;23178:139;;22905:419;;;:::o;23330:222::-;23423:4;23461:2;23450:9;23446:18;23438:26;;23474:71;23542:1;23531:9;23527:17;23518:6;23474:71;:::i;:::-;23330:222;;;;:::o;23558:129::-;23592:6;23619:20;;:::i;:::-;23609:30;;23648:33;23676:4;23668:6;23648:33;:::i;:::-;23558:129;;;:::o;23693:75::-;23726:6;23759:2;23753:9;23743:19;;23693:75;:::o;23774:307::-;23835:4;23925:18;23917:6;23914:30;23911:56;;;23947:18;;:::i;:::-;23911:56;23985:29;24007:6;23985:29;:::i;:::-;23977:37;;24069:4;24063;24059:15;24051:23;;23774:307;;;:::o;24087:308::-;24149:4;24239:18;24231:6;24228:30;24225:56;;;24261:18;;:::i;:::-;24225:56;24299:29;24321:6;24299:29;:::i;:::-;24291:37;;24383:4;24377;24373:15;24365:23;;24087:308;;;:::o;24401:132::-;24468:4;24491:3;24483:11;;24521:4;24516:3;24512:14;24504:22;;24401:132;;;:::o;24539:141::-;24588:4;24611:3;24603:11;;24634:3;24631:1;24624:14;24668:4;24665:1;24655:18;24647:26;;24539:141;;;:::o;24686:114::-;24753:6;24787:5;24781:12;24771:22;;24686:114;;;:::o;24806:98::-;24857:6;24891:5;24885:12;24875:22;;24806:98;;;:::o;24910:99::-;24962:6;24996:5;24990:12;24980:22;;24910:99;;;:::o;25015:113::-;25085:4;25117;25112:3;25108:14;25100:22;;25015:113;;;:::o;25134:184::-;25233:11;25267:6;25262:3;25255:19;25307:4;25302:3;25298:14;25283:29;;25134:184;;;;:::o;25324:168::-;25407:11;25441:6;25436:3;25429:19;25481:4;25476:3;25472:14;25457:29;;25324:168;;;;:::o;25498:147::-;25599:11;25636:3;25621:18;;25498:147;;;;:::o;25651:169::-;25735:11;25769:6;25764:3;25757:19;25809:4;25804:3;25800:14;25785:29;;25651:169;;;;:::o;25826:148::-;25928:11;25965:3;25950:18;;25826:148;;;;:::o;25980:305::-;26020:3;26039:20;26057:1;26039:20;:::i;:::-;26034:25;;26073:20;26091:1;26073:20;:::i;:::-;26068:25;;26227:1;26159:66;26155:74;26152:1;26149:81;26146:107;;;26233:18;;:::i;:::-;26146:107;26277:1;26274;26270:9;26263:16;;25980:305;;;;:::o;26291:185::-;26331:1;26348:20;26366:1;26348:20;:::i;:::-;26343:25;;26382:20;26400:1;26382:20;:::i;:::-;26377:25;;26421:1;26411:35;;26426:18;;:::i;:::-;26411:35;26468:1;26465;26461:9;26456:14;;26291:185;;;;:::o;26482:348::-;26522:7;26545:20;26563:1;26545:20;:::i;:::-;26540:25;;26579:20;26597:1;26579:20;:::i;:::-;26574:25;;26767:1;26699:66;26695:74;26692:1;26689:81;26684:1;26677:9;26670:17;26666:105;26663:131;;;26774:18;;:::i;:::-;26663:131;26822:1;26819;26815:9;26804:20;;26482:348;;;;:::o;26836:191::-;26876:4;26896:20;26914:1;26896:20;:::i;:::-;26891:25;;26930:20;26948:1;26930:20;:::i;:::-;26925:25;;26969:1;26966;26963:8;26960:34;;;26974:18;;:::i;:::-;26960:34;27019:1;27016;27012:9;27004:17;;26836:191;;;;:::o;27033:96::-;27070:7;27099:24;27117:5;27099:24;:::i;:::-;27088:35;;27033:96;;;:::o;27135:90::-;27169:7;27212:5;27205:13;27198:21;27187:32;;27135:90;;;:::o;27231:149::-;27267:7;27307:66;27300:5;27296:78;27285:89;;27231:149;;;:::o;27386:126::-;27423:7;27463:42;27456:5;27452:54;27441:65;;27386:126;;;:::o;27518:77::-;27555:7;27584:5;27573:16;;27518:77;;;:::o;27601:154::-;27685:6;27680:3;27675;27662:30;27747:1;27738:6;27733:3;27729:16;27722:27;27601:154;;;:::o;27761:307::-;27829:1;27839:113;27853:6;27850:1;27847:13;27839:113;;;27938:1;27933:3;27929:11;27923:18;27919:1;27914:3;27910:11;27903:39;27875:2;27872:1;27868:10;27863:15;;27839:113;;;27970:6;27967:1;27964:13;27961:101;;;28050:1;28041:6;28036:3;28032:16;28025:27;27961:101;27810:258;27761:307;;;:::o;28074:320::-;28118:6;28155:1;28149:4;28145:12;28135:22;;28202:1;28196:4;28192:12;28223:18;28213:81;;28279:4;28271:6;28267:17;28257:27;;28213:81;28341:2;28333:6;28330:14;28310:18;28307:38;28304:84;;;28360:18;;:::i;:::-;28304:84;28125:269;28074:320;;;:::o;28400:281::-;28483:27;28505:4;28483:27;:::i;:::-;28475:6;28471:40;28613:6;28601:10;28598:22;28577:18;28565:10;28562:34;28559:62;28556:88;;;28624:18;;:::i;:::-;28556:88;28664:10;28660:2;28653:22;28443:238;28400:281;;:::o;28687:233::-;28726:3;28749:24;28767:5;28749:24;:::i;:::-;28740:33;;28795:66;28788:5;28785:77;28782:103;;;28865:18;;:::i;:::-;28782:103;28912:1;28905:5;28901:13;28894:20;;28687:233;;;:::o;28926:176::-;28958:1;28975:20;28993:1;28975:20;:::i;:::-;28970:25;;29009:20;29027:1;29009:20;:::i;:::-;29004:25;;29048:1;29038:35;;29053:18;;:::i;:::-;29038:35;29094:1;29091;29087:9;29082:14;;28926:176;;;;:::o;29108:180::-;29156:77;29153:1;29146:88;29253:4;29250:1;29243:15;29277:4;29274:1;29267:15;29294:180;29342:77;29339:1;29332:88;29439:4;29436:1;29429:15;29463:4;29460:1;29453:15;29480:180;29528:77;29525:1;29518:88;29625:4;29622:1;29615:15;29649:4;29646:1;29639:15;29666:180;29714:77;29711:1;29704:88;29811:4;29808:1;29801:15;29835:4;29832:1;29825:15;29852:180;29900:77;29897:1;29890:88;29997:4;29994:1;29987:15;30021:4;30018:1;30011:15;30038:117;30147:1;30144;30137:12;30161:117;30270:1;30267;30260:12;30284:117;30393:1;30390;30383:12;30407:117;30516:1;30513;30506:12;30530:102;30571:6;30622:2;30618:7;30613:2;30606:5;30602:14;30598:28;30588:38;;30530:102;;;:::o;30638:169::-;30778:21;30774:1;30766:6;30762:14;30755:45;30638:169;:::o;30813:225::-;30953:34;30949:1;30941:6;30937:14;30930:58;31022:8;31017:2;31009:6;31005:15;30998:33;30813:225;:::o;31044:170::-;31184:22;31180:1;31172:6;31168:14;31161:46;31044:170;:::o;31220:169::-;31360:21;31356:1;31348:6;31344:14;31337:45;31220:169;:::o;31395:174::-;31535:26;31531:1;31523:6;31519:14;31512:50;31395:174;:::o;31575:182::-;31715:34;31711:1;31703:6;31699:14;31692:58;31575:182;:::o;31763:173::-;31903:25;31899:1;31891:6;31887:14;31880:49;31763:173;:::o;31942:234::-;32082:34;32078:1;32070:6;32066:14;32059:58;32151:17;32146:2;32138:6;32134:15;32127:42;31942:234;:::o;32182:114::-;;:::o;32302:170::-;32442:22;32438:1;32430:6;32426:14;32419:46;32302:170;:::o;32478:173::-;32618:25;32614:1;32606:6;32602:14;32595:49;32478:173;:::o;32657:169::-;32797:21;32793:1;32785:6;32781:14;32774:45;32657:169;:::o;32832:122::-;32905:24;32923:5;32905:24;:::i;:::-;32898:5;32895:35;32885:63;;32944:1;32941;32934:12;32885:63;32832:122;:::o;32960:116::-;33030:21;33045:5;33030:21;:::i;:::-;33023:5;33020:32;33010:60;;33066:1;33063;33056:12;33010:60;32960:116;:::o;33082:120::-;33154:23;33171:5;33154:23;:::i;:::-;33147:5;33144:34;33134:62;;33192:1;33189;33182:12;33134:62;33082:120;:::o;33208:122::-;33281:24;33299:5;33281:24;:::i;:::-;33274:5;33271:35;33261:63;;33320:1;33317;33310:12;33261:63;33208:122;:::o

Swarm Source

ipfs://10c97ce4b0082533dfd4eb0884b1b137719d21b8fa502ba51f2978f2fbbc5767
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.