ETH Price: $3,363.93 (-2.34%)
Gas: 2 Gwei

Token

LittleBabyLions (NFT)
 

Overview

Max Total Supply

28 NFT

Holders

18

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NFT
0xae9cda1d8ee9718be130ae545019496ae1413258
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
LittleBabyLions

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 2021-12-13
*/

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


// OpenZeppelin Contracts v4.4.0 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `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.0 (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.0 (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.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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.0 (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/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/lbl.sol


pragma solidity ^0.8.0;





contract LittleBabyLions is ERC721, Ownable, Pausable {
	using Counters for Counters.Counter;

	address 							_address_for_withdrawal = 0x114cd802b0b662e4FE4Ddf540Cf47d3846E4EdA9;
	Counters.Counter private			_total;
	Counters.Counter private			_reserved_total;
	mapping (address => bool) private	_whitelist;
	uint256 private 					_price = 0.02 ether;
	uint256 private 					_mint_supply = 5555;
	uint256 private 					_mint_reserved = 50;
	uint256 private 					_mint_limit = 10;
	string private 						_base_url = 'https://2-crypto.s3.amazonaws.com/little-baby-lions/NFT_META/';
	bool private						_is_whitelist_only = false;
	bool private						_mint_limit_by_addy = false;

	//construct
	constructor() ERC721('LittleBabyLions','NFT') {

	}

	//pausing of contract
	function pause() public onlyOwner {
		_pause();
	}
	function unpause() public onlyOwner {
		_unpause();
	}

	//whitelist
	function toggle_whitelist(bool change) public onlyOwner {
		_is_whitelist_only = change;
	}
	function add_to_whitelist(address[] memory addresses) public onlyOwner {
		for(uint i=0;i<addresses.length;i++) {
			address user = addresses[i];
			if(_whitelist[user]) {
				continue;
			}
			_whitelist[user] = true;
		}
	}
	function remove_from_whitelist(address[] memory addresses) public onlyOwner {
		for(uint i=0;i<addresses.length;i++) {
			address user = addresses[i];
			if(_whitelist[user]) {
				_whitelist[user] = false;
			}
		}
	}
	function is_whitelisted(address user) public view returns (bool) {
		return _whitelist[user];
	}
	function is_whitelist_on() public view returns (bool) {
		return _is_whitelist_only;
	}

	//set
	function set_price(uint256 new_price) public onlyOwner() {
		_price = new_price;
	}
	function set_mint_supply(uint256 new_limit) public onlyOwner() {
		_mint_supply = new_limit;
	}
	function set_mint_reserve(uint256 new_limit) public onlyOwner() {
		_mint_reserved = new_limit;
	}
	function set_mint_limit(uint256 new_limit) public onlyOwner() {
		_mint_limit = new_limit;
	}
	function set_mint_limit_state(bool state) public onlyOwner() {
		_mint_limit_by_addy = state;
	}
	function set_base_url(string memory new_url) public onlyOwner() {
		_base_url = new_url;
	}

	//get
	function get_price() public view returns (uint256) {
		return _price;
	}
	function get_supply_limit() public view returns (uint256) {
		return _mint_supply;
	}
	function get_reserve_limit() public view returns (uint256) {
		return _mint_reserved;
	}
	function get_mint_limit() public view returns (uint256) {
		return _mint_limit;
	}
	function baseTokenURI() public view returns (string memory) {
		return _base_url;
	}
	function tokenURI(uint256 token_id) public view override returns (string memory) {
		require(_exists(token_id),'ERC721Metadata: URI query for nonexistent token');
		return string(abi.encodePacked(_base_url,toString(token_id)));
	}
	function get_total_minted() public view returns (uint256) {
		return _total.current();
	}
	function get_total_reserved() public view returns (uint256) {
		return _reserved_total.current();
	}
	function totalSupply() public view returns (uint256) {
		return _total.current();
	}

	//withdraw
	function withdraw() public payable onlyOwner {
		uint256 _each = address(this).balance / 1;
		require(payable(_address_for_withdrawal).send(_each));
	}

	//mint/burn
	function mint(uint256 mint_num) public payable {

		//must mint at least one
		require(mint_num > 0, 'Need to mint at least 1 NFT.');

		//cannot mint more than allowance
		if(_mint_limit_by_addy) {
			uint256 token_count = balanceOf(msg.sender);
			require(token_count + mint_num <= _mint_limit, 'You have exceeded maximum mint limit.');
		}
		else {
			require(mint_num <= _mint_limit, 'You have exceeded maximum mint limit.');
		}

		//entire mint supply has been minted
		require(_total.current() - _reserved_total.current() + mint_num <= _mint_supply - _mint_reserved, 'You have exceeded the remaining mintable NFTs.');

		//minter did not send enough ETH
		require(msg.value >= _price * mint_num, 'Did not send enough ETH.');

		//if whitelist is on
		if(_is_whitelist_only == true) {
			require(is_whitelisted(msg.sender),'Not whitelisted.');
		}

		//mint
		for(uint256 i;i<mint_num;i++) {
			_total.increment();
			_safeMint(msg.sender,_total.current());
		}
	}
	function mint_reserve(address address_to, uint256 mint_num) external onlyOwner() {

		//cannot mint more than allowance
		require(_reserved_total.current() + mint_num <= _mint_reserved, 'You have exceeded maximum reserved mint limit.');

		//mint
		for(uint256 i;i<mint_num;i++) {
			_total.increment();
			_reserved_total.increment();
			_safeMint(address_to,_total.current());
		}

	}

	// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)
	function toString(uint256 value) internal pure returns (string memory) {
		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);
	}

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"add_to_whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"get_mint_limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"get_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"get_reserve_limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"get_supply_limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"get_total_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"get_total_reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"is_whitelist_on","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"is_whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mint_num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"address_to","type":"address"},{"internalType":"uint256","name":"mint_num","type":"uint256"}],"name":"mint_reserve","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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"remove_from_whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"new_url","type":"string"}],"name":"set_base_url","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_limit","type":"uint256"}],"name":"set_mint_limit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"set_mint_limit_state","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_limit","type":"uint256"}],"name":"set_mint_reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_limit","type":"uint256"}],"name":"set_mint_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_price","type":"uint256"}],"name":"set_price","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":"bool","name":"change","type":"bool"}],"name":"toggle_whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"token_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405273114cd802b0b662e4fe4ddf540cf47d3846e4eda9600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555066470de4df820000600b556115b3600c556032600d55600a600e556040518060600160405280603d815260200162004aeb603d9139600f9080519060200190620000a592919062000299565b506000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550348015620000e957600080fd5b506040518060400160405280600f81526020017f4c6974746c65426162794c696f6e7300000000000000000000000000000000008152506040518060400160405280600381526020017f4e4654000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200016e92919062000299565b5080600190805190602001906200018792919062000299565b505050620001aa6200019e620001cb60201b60201c565b620001d360201b60201c565b6000600660146101000a81548160ff021916908315150217905550620003ae565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a79062000349565b90600052602060002090601f016020900481019282620002cb576000855562000317565b82601f10620002e657805160ff191683800117855562000317565b8280016001018555821562000317579182015b8281111562000316578251825591602001919060010190620002f9565b5b5090506200032691906200032a565b5090565b5b80821115620003455760008160009055506001016200032b565b5090565b600060028204905060018216806200036257607f821691505b602082108114156200037957620003786200037f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61472d80620003be6000396000f3fe6080604052600436106102465760003560e01c8063715018a611610139578063b97b808f116100b6578063c93b3f0e1161007a578063c93b3f0e14610810578063d547cfb714610839578063da06500014610864578063de95a1a41461088f578063e985e9c5146108ba578063f2fde38b146108f757610246565b8063b97b808f1461072d578063c2ce355214610756578063c64d5af61461077f578063c7dee0e7146107a8578063c87b56dd146107d357610246565b806395d89b41116100fd57806395d89b4114610669578063a0712d6814610694578063a14a141f146106b0578063a22cb465146106db578063b88d4fde1461070457610246565b8063715018a6146105aa578063745862bf146105c1578063779ee628146105ea5780638456cb59146106275780638da5cb5b1461063e57610246565b80633ccfd60b116101c75780635c975abb1161018b5780635c975abb146104b1578063600502f6146104dc57806361138cda146105055780636352211e1461053057806370a082311461056d57610246565b80633ccfd60b146104155780633f4ba83a1461041f57806342842e0e14610436578063516b475c1461045f5780635447fabf1461048857610246565b806311f37ceb1161020e57806311f37ceb1461034457806318160ddd1461036f57806323b872dd1461039a57806328bf794d146103c35780632c404089146103ec57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780630c1fd55314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613277565b610920565b60405161027f9190613869565b60405180910390f35b34801561029457600080fd5b5061029d610a02565b6040516102aa9190613884565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d5919061331a565b610a94565b6040516102e79190613802565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906131c1565b610b19565b005b34801561032557600080fd5b5061032e610c31565b60405161033b9190613ba6565b60405180910390f35b34801561035057600080fd5b50610359610c3b565b6040516103669190613ba6565b60405180910390f35b34801561037b57600080fd5b50610384610c45565b6040516103919190613ba6565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc91906130ab565b610c56565b005b3480156103cf57600080fd5b506103ea60048036038101906103e5919061331a565b610cb6565b005b3480156103f857600080fd5b50610413600480360381019061040e91906131c1565b610d3c565b005b61041d610e5b565b005b34801561042b57600080fd5b50610434610f4b565b005b34801561044257600080fd5b5061045d600480360381019061045891906130ab565b610fd1565b005b34801561046b57600080fd5b506104866004803603810190610481919061331a565b610ff1565b005b34801561049457600080fd5b506104af60048036038101906104aa919061331a565b611077565b005b3480156104bd57600080fd5b506104c66110fd565b6040516104d39190613869565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe9190613201565b611114565b005b34801561051157600080fd5b5061051a611284565b6040516105279190613ba6565b60405180910390f35b34801561053c57600080fd5b506105576004803603810190610552919061331a565b61128e565b6040516105649190613802565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f919061303e565b611340565b6040516105a19190613ba6565b60405180910390f35b3480156105b657600080fd5b506105bf6113f8565b005b3480156105cd57600080fd5b506105e860048036038101906105e391906132d1565b611480565b005b3480156105f657600080fd5b50610611600480360381019061060c919061303e565b611516565b60405161061e9190613869565b60405180910390f35b34801561063357600080fd5b5061063c61156c565b005b34801561064a57600080fd5b506106536115f2565b6040516106609190613802565b60405180910390f35b34801561067557600080fd5b5061067e61161c565b60405161068b9190613884565b60405180910390f35b6106ae60048036038101906106a9919061331a565b6116ae565b005b3480156106bc57600080fd5b506106c561191d565b6040516106d29190613ba6565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd9190613181565b61192e565b005b34801561071057600080fd5b5061072b600480360381019061072691906130fe565b611944565b005b34801561073957600080fd5b50610754600480360381019061074f9190613201565b6119a6565b005b34801561076257600080fd5b5061077d6004803603810190610778919061324a565b611b10565b005b34801561078b57600080fd5b506107a660048036038101906107a1919061331a565b611ba9565b005b3480156107b457600080fd5b506107bd611c2f565b6040516107ca9190613ba6565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f5919061331a565b611c39565b6040516108079190613884565b60405180910390f35b34801561081c57600080fd5b506108376004803603810190610832919061324a565b611cb5565b005b34801561084557600080fd5b5061084e611d4e565b60405161085b9190613884565b60405180910390f35b34801561087057600080fd5b50610879611de0565b6040516108869190613869565b60405180910390f35b34801561089b57600080fd5b506108a4611df7565b6040516108b19190613ba6565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc919061306b565b611e08565b6040516108ee9190613869565b60405180910390f35b34801561090357600080fd5b5061091e6004803603810190610919919061303e565b611e9c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109eb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fb57506109fa82611f94565b5b9050919050565b606060008054610a1190613e97565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3d90613e97565b8015610a8a5780601f10610a5f57610100808354040283529160200191610a8a565b820191906000526020600020905b815481529060010190602001808311610a6d57829003601f168201915b5050505050905090565b6000610a9f82611ffe565b610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad590613aa6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b248261128e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90613b46565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb461206a565b73ffffffffffffffffffffffffffffffffffffffff161480610be35750610be281610bdd61206a565b611e08565b5b610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1990613a06565b60405180910390fd5b610c2c8383612072565b505050565b6000600c54905090565b6000600b54905090565b6000610c51600861212b565b905090565b610c67610c6161206a565b82612139565b610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d90613b66565b60405180910390fd5b610cb1838383612217565b505050565b610cbe61206a565b73ffffffffffffffffffffffffffffffffffffffff16610cdc6115f2565b73ffffffffffffffffffffffffffffffffffffffff1614610d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2990613ac6565b60405180910390fd5b80600b8190555050565b610d4461206a565b73ffffffffffffffffffffffffffffffffffffffff16610d626115f2565b73ffffffffffffffffffffffffffffffffffffffff1614610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90613ac6565b60405180910390fd5b600d5481610dc6600961212b565b610dd09190613ccc565b1115610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613ae6565b60405180910390fd5b60005b81811015610e5657610e266008612473565b610e306009612473565b610e4383610e3e600861212b565b612489565b8080610e4e90613efa565b915050610e14565b505050565b610e6361206a565b73ffffffffffffffffffffffffffffffffffffffff16610e816115f2565b73ffffffffffffffffffffffffffffffffffffffff1614610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece90613ac6565b60405180910390fd5b6000600147610ee69190613d22565b9050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610f4857600080fd5b50565b610f5361206a565b73ffffffffffffffffffffffffffffffffffffffff16610f716115f2565b73ffffffffffffffffffffffffffffffffffffffff1614610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe90613ac6565b60405180910390fd5b610fcf6124a7565b565b610fec83838360405180602001604052806000815250611944565b505050565b610ff961206a565b73ffffffffffffffffffffffffffffffffffffffff166110176115f2565b73ffffffffffffffffffffffffffffffffffffffff161461106d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490613ac6565b60405180910390fd5b80600d8190555050565b61107f61206a565b73ffffffffffffffffffffffffffffffffffffffff1661109d6115f2565b73ffffffffffffffffffffffffffffffffffffffff16146110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90613ac6565b60405180910390fd5b80600c8190555050565b6000600660149054906101000a900460ff16905090565b61111c61206a565b73ffffffffffffffffffffffffffffffffffffffff1661113a6115f2565b73ffffffffffffffffffffffffffffffffffffffff1614611190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118790613ac6565b60405180910390fd5b60005b81518110156112805760008282815181106111b1576111b0614001565b5b60200260200101519050600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611213575061126d565b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505b808061127890613efa565b915050611193565b5050565b6000600e54905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90613a46565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a890613a26565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61140061206a565b73ffffffffffffffffffffffffffffffffffffffff1661141e6115f2565b73ffffffffffffffffffffffffffffffffffffffff1614611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b90613ac6565b60405180910390fd5b61147e6000612549565b565b61148861206a565b73ffffffffffffffffffffffffffffffffffffffff166114a66115f2565b73ffffffffffffffffffffffffffffffffffffffff16146114fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f390613ac6565b60405180910390fd5b80600f9080519060200190611512929190612db4565b5050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61157461206a565b73ffffffffffffffffffffffffffffffffffffffff166115926115f2565b73ffffffffffffffffffffffffffffffffffffffff16146115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df90613ac6565b60405180910390fd5b6115f061260f565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461162b90613e97565b80601f016020809104026020016040519081016040528092919081815260200182805461165790613e97565b80156116a45780601f10611679576101008083540402835291602001916116a4565b820191906000526020600020905b81548152906001019060200180831161168757829003601f168201915b5050505050905090565b600081116116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e8906138c6565b60405180910390fd5b601060019054906101000a900460ff161561176957600061171133611340565b9050600e5482826117229190613ccc565b1115611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a906139c6565b60405180910390fd5b506117af565b600e548111156117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a5906139c6565b60405180910390fd5b5b600d54600c546117bf9190613dad565b816117ca600961212b565b6117d4600861212b565b6117de9190613dad565b6117e89190613ccc565b1115611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090613946565b60405180910390fd5b80600b546118379190613d53565b341015611879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187090613a66565b60405180910390fd5b60011515601060009054906101000a900460ff16151514156118de5761189e33611516565b6118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d490613b86565b60405180910390fd5b5b60005b81811015611919576118f36008612473565b61190633611901600861212b565b612489565b808061191190613efa565b9150506118e1565b5050565b6000611929600961212b565b905090565b61194061193961206a565b83836126b2565b5050565b61195561194f61206a565b83612139565b611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90613b66565b60405180910390fd5b6119a08484848461281f565b50505050565b6119ae61206a565b73ffffffffffffffffffffffffffffffffffffffff166119cc6115f2565b73ffffffffffffffffffffffffffffffffffffffff1614611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1990613ac6565b60405180910390fd5b60005b8151811015611b0c576000828281518110611a4357611a42614001565b5b60200260200101519050600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611af8576000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b508080611b0490613efa565b915050611a25565b5050565b611b1861206a565b73ffffffffffffffffffffffffffffffffffffffff16611b366115f2565b73ffffffffffffffffffffffffffffffffffffffff1614611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390613ac6565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b611bb161206a565b73ffffffffffffffffffffffffffffffffffffffff16611bcf6115f2565b73ffffffffffffffffffffffffffffffffffffffff1614611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c90613ac6565b60405180910390fd5b80600e8190555050565b6000600d54905090565b6060611c4482611ffe565b611c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7a90613b26565b60405180910390fd5b600f611c8e8361287b565b604051602001611c9f9291906137de565b6040516020818303038152906040529050919050565b611cbd61206a565b73ffffffffffffffffffffffffffffffffffffffff16611cdb6115f2565b73ffffffffffffffffffffffffffffffffffffffff1614611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2890613ac6565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6060600f8054611d5d90613e97565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8990613e97565b8015611dd65780601f10611dab57610100808354040283529160200191611dd6565b820191906000526020600020905b815481529060010190602001808311611db957829003601f168201915b5050505050905090565b6000601060009054906101000a900460ff16905090565b6000611e03600861212b565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ea461206a565b73ffffffffffffffffffffffffffffffffffffffff16611ec26115f2565b73ffffffffffffffffffffffffffffffffffffffff1614611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f90613ac6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f90613906565b60405180910390fd5b611f9181612549565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120e58361128e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061214482611ffe565b612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217a906139a6565b60405180910390fd5b600061218e8361128e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121fd57508373ffffffffffffffffffffffffffffffffffffffff166121e584610a94565b73ffffffffffffffffffffffffffffffffffffffff16145b8061220e575061220d8185611e08565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122378261128e565b73ffffffffffffffffffffffffffffffffffffffff161461228d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228490613b06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f490613966565b60405180910390fd5b6123088383836129dc565b612313600082612072565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123639190613dad565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123ba9190613ccc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6001816000016000828254019250508190555050565b6124a38282604051806020016040528060008152506129e1565b5050565b6124af6110fd565b6124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e5906138a6565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61253261206a565b60405161253f9190613802565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126176110fd565b15612657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264e906139e6565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861269b61206a565b6040516126a89190613802565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271890613986565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128129190613869565b60405180910390a3505050565b61282a848484612217565b61283684848484612a3c565b612875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286c906138e6565b60405180910390fd5b50505050565b606060008214156128c3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129d7565b600082905060005b600082146128f55780806128de90613efa565b915050600a826128ee9190613d22565b91506128cb565b60008167ffffffffffffffff81111561291157612910614030565b5b6040519080825280601f01601f1916602001820160405280156129435781602001600182028036833780820191505090505b5090505b600085146129d05760018261295c9190613dad565b9150600a8561296b9190613f43565b60306129779190613ccc565b60f81b81838151811061298d5761298c614001565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129c99190613d22565b9450612947565b8093505050505b919050565b505050565b6129eb8383612bd3565b6129f86000848484612a3c565b612a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2e906138e6565b60405180910390fd5b505050565b6000612a5d8473ffffffffffffffffffffffffffffffffffffffff16612da1565b15612bc6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a8661206a565b8786866040518563ffffffff1660e01b8152600401612aa8949392919061381d565b602060405180830381600087803b158015612ac257600080fd5b505af1925050508015612af357506040513d601f19601f82011682018060405250810190612af091906132a4565b60015b612b76573d8060008114612b23576040519150601f19603f3d011682016040523d82523d6000602084013e612b28565b606091505b50600081511415612b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b65906138e6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bcb565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3a90613a86565b60405180910390fd5b612c4c81611ffe565b15612c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8390613926565b60405180910390fd5b612c98600083836129dc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ce89190613ccc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612dc090613e97565b90600052602060002090601f016020900481019282612de25760008555612e29565b82601f10612dfb57805160ff1916838001178555612e29565b82800160010185558215612e29579182015b82811115612e28578251825591602001919060010190612e0d565b5b509050612e369190612e3a565b5090565b5b80821115612e53576000816000905550600101612e3b565b5090565b6000612e6a612e6584613be6565b613bc1565b90508083825260208201905082856020860282011115612e8d57612e8c614064565b5b60005b85811015612ebd5781612ea38882612f4b565b845260208401935060208301925050600181019050612e90565b5050509392505050565b6000612eda612ed584613c12565b613bc1565b905082815260208101848484011115612ef657612ef5614069565b5b612f01848285613e55565b509392505050565b6000612f1c612f1784613c43565b613bc1565b905082815260208101848484011115612f3857612f37614069565b5b612f43848285613e55565b509392505050565b600081359050612f5a8161469b565b92915050565b600082601f830112612f7557612f7461405f565b5b8135612f85848260208601612e57565b91505092915050565b600081359050612f9d816146b2565b92915050565b600081359050612fb2816146c9565b92915050565b600081519050612fc7816146c9565b92915050565b600082601f830112612fe257612fe161405f565b5b8135612ff2848260208601612ec7565b91505092915050565b600082601f8301126130105761300f61405f565b5b8135613020848260208601612f09565b91505092915050565b600081359050613038816146e0565b92915050565b60006020828403121561305457613053614073565b5b600061306284828501612f4b565b91505092915050565b6000806040838503121561308257613081614073565b5b600061309085828601612f4b565b92505060206130a185828601612f4b565b9150509250929050565b6000806000606084860312156130c4576130c3614073565b5b60006130d286828701612f4b565b93505060206130e386828701612f4b565b92505060406130f486828701613029565b9150509250925092565b6000806000806080858703121561311857613117614073565b5b600061312687828801612f4b565b945050602061313787828801612f4b565b935050604061314887828801613029565b925050606085013567ffffffffffffffff8111156131695761316861406e565b5b61317587828801612fcd565b91505092959194509250565b6000806040838503121561319857613197614073565b5b60006131a685828601612f4b565b92505060206131b785828601612f8e565b9150509250929050565b600080604083850312156131d8576131d7614073565b5b60006131e685828601612f4b565b92505060206131f785828601613029565b9150509250929050565b60006020828403121561321757613216614073565b5b600082013567ffffffffffffffff8111156132355761323461406e565b5b61324184828501612f60565b91505092915050565b6000602082840312156132605761325f614073565b5b600061326e84828501612f8e565b91505092915050565b60006020828403121561328d5761328c614073565b5b600061329b84828501612fa3565b91505092915050565b6000602082840312156132ba576132b9614073565b5b60006132c884828501612fb8565b91505092915050565b6000602082840312156132e7576132e6614073565b5b600082013567ffffffffffffffff8111156133055761330461406e565b5b61331184828501612ffb565b91505092915050565b6000602082840312156133305761332f614073565b5b600061333e84828501613029565b91505092915050565b61335081613de1565b82525050565b61335f81613df3565b82525050565b600061337082613c89565b61337a8185613c9f565b935061338a818560208601613e64565b61339381614078565b840191505092915050565b60006133a982613c94565b6133b38185613cb0565b93506133c3818560208601613e64565b6133cc81614078565b840191505092915050565b60006133e282613c94565b6133ec8185613cc1565b93506133fc818560208601613e64565b80840191505092915050565b6000815461341581613e97565b61341f8186613cc1565b9450600182166000811461343a576001811461344b5761347e565b60ff1983168652818601935061347e565b61345485613c74565b60005b8381101561347657815481890152600182019150602081019050613457565b838801955050505b50505092915050565b6000613494601483613cb0565b915061349f82614089565b602082019050919050565b60006134b7601c83613cb0565b91506134c2826140b2565b602082019050919050565b60006134da603283613cb0565b91506134e5826140db565b604082019050919050565b60006134fd602683613cb0565b91506135088261412a565b604082019050919050565b6000613520601c83613cb0565b915061352b82614179565b602082019050919050565b6000613543602e83613cb0565b915061354e826141a2565b604082019050919050565b6000613566602483613cb0565b9150613571826141f1565b604082019050919050565b6000613589601983613cb0565b915061359482614240565b602082019050919050565b60006135ac602c83613cb0565b91506135b782614269565b604082019050919050565b60006135cf602583613cb0565b91506135da826142b8565b604082019050919050565b60006135f2601083613cb0565b91506135fd82614307565b602082019050919050565b6000613615603883613cb0565b915061362082614330565b604082019050919050565b6000613638602a83613cb0565b91506136438261437f565b604082019050919050565b600061365b602983613cb0565b9150613666826143ce565b604082019050919050565b600061367e601883613cb0565b91506136898261441d565b602082019050919050565b60006136a1602083613cb0565b91506136ac82614446565b602082019050919050565b60006136c4602c83613cb0565b91506136cf8261446f565b604082019050919050565b60006136e7602083613cb0565b91506136f2826144be565b602082019050919050565b600061370a602e83613cb0565b9150613715826144e7565b604082019050919050565b600061372d602983613cb0565b915061373882614536565b604082019050919050565b6000613750602f83613cb0565b915061375b82614585565b604082019050919050565b6000613773602183613cb0565b915061377e826145d4565b604082019050919050565b6000613796603183613cb0565b91506137a182614623565b604082019050919050565b60006137b9601083613cb0565b91506137c482614672565b602082019050919050565b6137d881613e4b565b82525050565b60006137ea8285613408565b91506137f682846133d7565b91508190509392505050565b60006020820190506138176000830184613347565b92915050565b60006080820190506138326000830187613347565b61383f6020830186613347565b61384c60408301856137cf565b818103606083015261385e8184613365565b905095945050505050565b600060208201905061387e6000830184613356565b92915050565b6000602082019050818103600083015261389e818461339e565b905092915050565b600060208201905081810360008301526138bf81613487565b9050919050565b600060208201905081810360008301526138df816134aa565b9050919050565b600060208201905081810360008301526138ff816134cd565b9050919050565b6000602082019050818103600083015261391f816134f0565b9050919050565b6000602082019050818103600083015261393f81613513565b9050919050565b6000602082019050818103600083015261395f81613536565b9050919050565b6000602082019050818103600083015261397f81613559565b9050919050565b6000602082019050818103600083015261399f8161357c565b9050919050565b600060208201905081810360008301526139bf8161359f565b9050919050565b600060208201905081810360008301526139df816135c2565b9050919050565b600060208201905081810360008301526139ff816135e5565b9050919050565b60006020820190508181036000830152613a1f81613608565b9050919050565b60006020820190508181036000830152613a3f8161362b565b9050919050565b60006020820190508181036000830152613a5f8161364e565b9050919050565b60006020820190508181036000830152613a7f81613671565b9050919050565b60006020820190508181036000830152613a9f81613694565b9050919050565b60006020820190508181036000830152613abf816136b7565b9050919050565b60006020820190508181036000830152613adf816136da565b9050919050565b60006020820190508181036000830152613aff816136fd565b9050919050565b60006020820190508181036000830152613b1f81613720565b9050919050565b60006020820190508181036000830152613b3f81613743565b9050919050565b60006020820190508181036000830152613b5f81613766565b9050919050565b60006020820190508181036000830152613b7f81613789565b9050919050565b60006020820190508181036000830152613b9f816137ac565b9050919050565b6000602082019050613bbb60008301846137cf565b92915050565b6000613bcb613bdc565b9050613bd78282613ec9565b919050565b6000604051905090565b600067ffffffffffffffff821115613c0157613c00614030565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c2d57613c2c614030565b5b613c3682614078565b9050602081019050919050565b600067ffffffffffffffff821115613c5e57613c5d614030565b5b613c6782614078565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cd782613e4b565b9150613ce283613e4b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1757613d16613f74565b5b828201905092915050565b6000613d2d82613e4b565b9150613d3883613e4b565b925082613d4857613d47613fa3565b5b828204905092915050565b6000613d5e82613e4b565b9150613d6983613e4b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613da257613da1613f74565b5b828202905092915050565b6000613db882613e4b565b9150613dc383613e4b565b925082821015613dd657613dd5613f74565b5b828203905092915050565b6000613dec82613e2b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e82578082015181840152602081019050613e67565b83811115613e91576000848401525b50505050565b60006002820490506001821680613eaf57607f821691505b60208210811415613ec357613ec2613fd2565b5b50919050565b613ed282614078565b810181811067ffffffffffffffff82111715613ef157613ef0614030565b5b80604052505050565b6000613f0582613e4b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f3857613f37613f74565b5b600182019050919050565b6000613f4e82613e4b565b9150613f5983613e4b565b925082613f6957613f68613fa3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4e65656420746f206d696e74206174206c656173742031204e46542e00000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f596f752068617665206578636565646564207468652072656d61696e696e672060008201527f6d696e7461626c65204e4654732e000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f752068617665206578636565646564206d6178696d756d206d696e74206c60008201527f696d69742e000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f446964206e6f742073656e6420656e6f756768204554482e0000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f752068617665206578636565646564206d6178696d756d2072657365727660008201527f6564206d696e74206c696d69742e000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f742077686974656c69737465642e00000000000000000000000000000000600082015250565b6146a481613de1565b81146146af57600080fd5b50565b6146bb81613df3565b81146146c657600080fd5b50565b6146d281613dff565b81146146dd57600080fd5b50565b6146e981613e4b565b81146146f457600080fd5b5056fea2646970667358221220ec18b9bf15a52bf70dcc79f5ae125ce97c0284b784490166679be17557742c1564736f6c6343000807003368747470733a2f2f322d63727970746f2e73332e616d617a6f6e6177732e636f6d2f6c6974746c652d626162792d6c696f6e732f4e46545f4d4554412f

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063715018a611610139578063b97b808f116100b6578063c93b3f0e1161007a578063c93b3f0e14610810578063d547cfb714610839578063da06500014610864578063de95a1a41461088f578063e985e9c5146108ba578063f2fde38b146108f757610246565b8063b97b808f1461072d578063c2ce355214610756578063c64d5af61461077f578063c7dee0e7146107a8578063c87b56dd146107d357610246565b806395d89b41116100fd57806395d89b4114610669578063a0712d6814610694578063a14a141f146106b0578063a22cb465146106db578063b88d4fde1461070457610246565b8063715018a6146105aa578063745862bf146105c1578063779ee628146105ea5780638456cb59146106275780638da5cb5b1461063e57610246565b80633ccfd60b116101c75780635c975abb1161018b5780635c975abb146104b1578063600502f6146104dc57806361138cda146105055780636352211e1461053057806370a082311461056d57610246565b80633ccfd60b146104155780633f4ba83a1461041f57806342842e0e14610436578063516b475c1461045f5780635447fabf1461048857610246565b806311f37ceb1161020e57806311f37ceb1461034457806318160ddd1461036f57806323b872dd1461039a57806328bf794d146103c35780632c404089146103ec57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780630c1fd55314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613277565b610920565b60405161027f9190613869565b60405180910390f35b34801561029457600080fd5b5061029d610a02565b6040516102aa9190613884565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d5919061331a565b610a94565b6040516102e79190613802565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906131c1565b610b19565b005b34801561032557600080fd5b5061032e610c31565b60405161033b9190613ba6565b60405180910390f35b34801561035057600080fd5b50610359610c3b565b6040516103669190613ba6565b60405180910390f35b34801561037b57600080fd5b50610384610c45565b6040516103919190613ba6565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc91906130ab565b610c56565b005b3480156103cf57600080fd5b506103ea60048036038101906103e5919061331a565b610cb6565b005b3480156103f857600080fd5b50610413600480360381019061040e91906131c1565b610d3c565b005b61041d610e5b565b005b34801561042b57600080fd5b50610434610f4b565b005b34801561044257600080fd5b5061045d600480360381019061045891906130ab565b610fd1565b005b34801561046b57600080fd5b506104866004803603810190610481919061331a565b610ff1565b005b34801561049457600080fd5b506104af60048036038101906104aa919061331a565b611077565b005b3480156104bd57600080fd5b506104c66110fd565b6040516104d39190613869565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe9190613201565b611114565b005b34801561051157600080fd5b5061051a611284565b6040516105279190613ba6565b60405180910390f35b34801561053c57600080fd5b506105576004803603810190610552919061331a565b61128e565b6040516105649190613802565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f919061303e565b611340565b6040516105a19190613ba6565b60405180910390f35b3480156105b657600080fd5b506105bf6113f8565b005b3480156105cd57600080fd5b506105e860048036038101906105e391906132d1565b611480565b005b3480156105f657600080fd5b50610611600480360381019061060c919061303e565b611516565b60405161061e9190613869565b60405180910390f35b34801561063357600080fd5b5061063c61156c565b005b34801561064a57600080fd5b506106536115f2565b6040516106609190613802565b60405180910390f35b34801561067557600080fd5b5061067e61161c565b60405161068b9190613884565b60405180910390f35b6106ae60048036038101906106a9919061331a565b6116ae565b005b3480156106bc57600080fd5b506106c561191d565b6040516106d29190613ba6565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd9190613181565b61192e565b005b34801561071057600080fd5b5061072b600480360381019061072691906130fe565b611944565b005b34801561073957600080fd5b50610754600480360381019061074f9190613201565b6119a6565b005b34801561076257600080fd5b5061077d6004803603810190610778919061324a565b611b10565b005b34801561078b57600080fd5b506107a660048036038101906107a1919061331a565b611ba9565b005b3480156107b457600080fd5b506107bd611c2f565b6040516107ca9190613ba6565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f5919061331a565b611c39565b6040516108079190613884565b60405180910390f35b34801561081c57600080fd5b506108376004803603810190610832919061324a565b611cb5565b005b34801561084557600080fd5b5061084e611d4e565b60405161085b9190613884565b60405180910390f35b34801561087057600080fd5b50610879611de0565b6040516108869190613869565b60405180910390f35b34801561089b57600080fd5b506108a4611df7565b6040516108b19190613ba6565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc919061306b565b611e08565b6040516108ee9190613869565b60405180910390f35b34801561090357600080fd5b5061091e6004803603810190610919919061303e565b611e9c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109eb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fb57506109fa82611f94565b5b9050919050565b606060008054610a1190613e97565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3d90613e97565b8015610a8a5780601f10610a5f57610100808354040283529160200191610a8a565b820191906000526020600020905b815481529060010190602001808311610a6d57829003601f168201915b5050505050905090565b6000610a9f82611ffe565b610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad590613aa6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b248261128e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90613b46565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb461206a565b73ffffffffffffffffffffffffffffffffffffffff161480610be35750610be281610bdd61206a565b611e08565b5b610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1990613a06565b60405180910390fd5b610c2c8383612072565b505050565b6000600c54905090565b6000600b54905090565b6000610c51600861212b565b905090565b610c67610c6161206a565b82612139565b610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d90613b66565b60405180910390fd5b610cb1838383612217565b505050565b610cbe61206a565b73ffffffffffffffffffffffffffffffffffffffff16610cdc6115f2565b73ffffffffffffffffffffffffffffffffffffffff1614610d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2990613ac6565b60405180910390fd5b80600b8190555050565b610d4461206a565b73ffffffffffffffffffffffffffffffffffffffff16610d626115f2565b73ffffffffffffffffffffffffffffffffffffffff1614610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90613ac6565b60405180910390fd5b600d5481610dc6600961212b565b610dd09190613ccc565b1115610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613ae6565b60405180910390fd5b60005b81811015610e5657610e266008612473565b610e306009612473565b610e4383610e3e600861212b565b612489565b8080610e4e90613efa565b915050610e14565b505050565b610e6361206a565b73ffffffffffffffffffffffffffffffffffffffff16610e816115f2565b73ffffffffffffffffffffffffffffffffffffffff1614610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece90613ac6565b60405180910390fd5b6000600147610ee69190613d22565b9050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610f4857600080fd5b50565b610f5361206a565b73ffffffffffffffffffffffffffffffffffffffff16610f716115f2565b73ffffffffffffffffffffffffffffffffffffffff1614610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe90613ac6565b60405180910390fd5b610fcf6124a7565b565b610fec83838360405180602001604052806000815250611944565b505050565b610ff961206a565b73ffffffffffffffffffffffffffffffffffffffff166110176115f2565b73ffffffffffffffffffffffffffffffffffffffff161461106d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490613ac6565b60405180910390fd5b80600d8190555050565b61107f61206a565b73ffffffffffffffffffffffffffffffffffffffff1661109d6115f2565b73ffffffffffffffffffffffffffffffffffffffff16146110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90613ac6565b60405180910390fd5b80600c8190555050565b6000600660149054906101000a900460ff16905090565b61111c61206a565b73ffffffffffffffffffffffffffffffffffffffff1661113a6115f2565b73ffffffffffffffffffffffffffffffffffffffff1614611190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118790613ac6565b60405180910390fd5b60005b81518110156112805760008282815181106111b1576111b0614001565b5b60200260200101519050600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611213575061126d565b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505b808061127890613efa565b915050611193565b5050565b6000600e54905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90613a46565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a890613a26565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61140061206a565b73ffffffffffffffffffffffffffffffffffffffff1661141e6115f2565b73ffffffffffffffffffffffffffffffffffffffff1614611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b90613ac6565b60405180910390fd5b61147e6000612549565b565b61148861206a565b73ffffffffffffffffffffffffffffffffffffffff166114a66115f2565b73ffffffffffffffffffffffffffffffffffffffff16146114fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f390613ac6565b60405180910390fd5b80600f9080519060200190611512929190612db4565b5050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61157461206a565b73ffffffffffffffffffffffffffffffffffffffff166115926115f2565b73ffffffffffffffffffffffffffffffffffffffff16146115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df90613ac6565b60405180910390fd5b6115f061260f565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461162b90613e97565b80601f016020809104026020016040519081016040528092919081815260200182805461165790613e97565b80156116a45780601f10611679576101008083540402835291602001916116a4565b820191906000526020600020905b81548152906001019060200180831161168757829003601f168201915b5050505050905090565b600081116116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e8906138c6565b60405180910390fd5b601060019054906101000a900460ff161561176957600061171133611340565b9050600e5482826117229190613ccc565b1115611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a906139c6565b60405180910390fd5b506117af565b600e548111156117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a5906139c6565b60405180910390fd5b5b600d54600c546117bf9190613dad565b816117ca600961212b565b6117d4600861212b565b6117de9190613dad565b6117e89190613ccc565b1115611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090613946565b60405180910390fd5b80600b546118379190613d53565b341015611879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187090613a66565b60405180910390fd5b60011515601060009054906101000a900460ff16151514156118de5761189e33611516565b6118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d490613b86565b60405180910390fd5b5b60005b81811015611919576118f36008612473565b61190633611901600861212b565b612489565b808061191190613efa565b9150506118e1565b5050565b6000611929600961212b565b905090565b61194061193961206a565b83836126b2565b5050565b61195561194f61206a565b83612139565b611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90613b66565b60405180910390fd5b6119a08484848461281f565b50505050565b6119ae61206a565b73ffffffffffffffffffffffffffffffffffffffff166119cc6115f2565b73ffffffffffffffffffffffffffffffffffffffff1614611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1990613ac6565b60405180910390fd5b60005b8151811015611b0c576000828281518110611a4357611a42614001565b5b60200260200101519050600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611af8576000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b508080611b0490613efa565b915050611a25565b5050565b611b1861206a565b73ffffffffffffffffffffffffffffffffffffffff16611b366115f2565b73ffffffffffffffffffffffffffffffffffffffff1614611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390613ac6565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b611bb161206a565b73ffffffffffffffffffffffffffffffffffffffff16611bcf6115f2565b73ffffffffffffffffffffffffffffffffffffffff1614611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c90613ac6565b60405180910390fd5b80600e8190555050565b6000600d54905090565b6060611c4482611ffe565b611c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7a90613b26565b60405180910390fd5b600f611c8e8361287b565b604051602001611c9f9291906137de565b6040516020818303038152906040529050919050565b611cbd61206a565b73ffffffffffffffffffffffffffffffffffffffff16611cdb6115f2565b73ffffffffffffffffffffffffffffffffffffffff1614611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2890613ac6565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6060600f8054611d5d90613e97565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8990613e97565b8015611dd65780601f10611dab57610100808354040283529160200191611dd6565b820191906000526020600020905b815481529060010190602001808311611db957829003601f168201915b5050505050905090565b6000601060009054906101000a900460ff16905090565b6000611e03600861212b565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ea461206a565b73ffffffffffffffffffffffffffffffffffffffff16611ec26115f2565b73ffffffffffffffffffffffffffffffffffffffff1614611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f90613ac6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f90613906565b60405180910390fd5b611f9181612549565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120e58361128e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061214482611ffe565b612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217a906139a6565b60405180910390fd5b600061218e8361128e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121fd57508373ffffffffffffffffffffffffffffffffffffffff166121e584610a94565b73ffffffffffffffffffffffffffffffffffffffff16145b8061220e575061220d8185611e08565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122378261128e565b73ffffffffffffffffffffffffffffffffffffffff161461228d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228490613b06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f490613966565b60405180910390fd5b6123088383836129dc565b612313600082612072565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123639190613dad565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123ba9190613ccc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6001816000016000828254019250508190555050565b6124a38282604051806020016040528060008152506129e1565b5050565b6124af6110fd565b6124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e5906138a6565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61253261206a565b60405161253f9190613802565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126176110fd565b15612657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264e906139e6565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861269b61206a565b6040516126a89190613802565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271890613986565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128129190613869565b60405180910390a3505050565b61282a848484612217565b61283684848484612a3c565b612875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286c906138e6565b60405180910390fd5b50505050565b606060008214156128c3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129d7565b600082905060005b600082146128f55780806128de90613efa565b915050600a826128ee9190613d22565b91506128cb565b60008167ffffffffffffffff81111561291157612910614030565b5b6040519080825280601f01601f1916602001820160405280156129435781602001600182028036833780820191505090505b5090505b600085146129d05760018261295c9190613dad565b9150600a8561296b9190613f43565b60306129779190613ccc565b60f81b81838151811061298d5761298c614001565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129c99190613d22565b9450612947565b8093505050505b919050565b505050565b6129eb8383612bd3565b6129f86000848484612a3c565b612a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2e906138e6565b60405180910390fd5b505050565b6000612a5d8473ffffffffffffffffffffffffffffffffffffffff16612da1565b15612bc6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a8661206a565b8786866040518563ffffffff1660e01b8152600401612aa8949392919061381d565b602060405180830381600087803b158015612ac257600080fd5b505af1925050508015612af357506040513d601f19601f82011682018060405250810190612af091906132a4565b60015b612b76573d8060008114612b23576040519150601f19603f3d011682016040523d82523d6000602084013e612b28565b606091505b50600081511415612b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b65906138e6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bcb565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3a90613a86565b60405180910390fd5b612c4c81611ffe565b15612c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8390613926565b60405180910390fd5b612c98600083836129dc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ce89190613ccc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612dc090613e97565b90600052602060002090601f016020900481019282612de25760008555612e29565b82601f10612dfb57805160ff1916838001178555612e29565b82800160010185558215612e29579182015b82811115612e28578251825591602001919060010190612e0d565b5b509050612e369190612e3a565b5090565b5b80821115612e53576000816000905550600101612e3b565b5090565b6000612e6a612e6584613be6565b613bc1565b90508083825260208201905082856020860282011115612e8d57612e8c614064565b5b60005b85811015612ebd5781612ea38882612f4b565b845260208401935060208301925050600181019050612e90565b5050509392505050565b6000612eda612ed584613c12565b613bc1565b905082815260208101848484011115612ef657612ef5614069565b5b612f01848285613e55565b509392505050565b6000612f1c612f1784613c43565b613bc1565b905082815260208101848484011115612f3857612f37614069565b5b612f43848285613e55565b509392505050565b600081359050612f5a8161469b565b92915050565b600082601f830112612f7557612f7461405f565b5b8135612f85848260208601612e57565b91505092915050565b600081359050612f9d816146b2565b92915050565b600081359050612fb2816146c9565b92915050565b600081519050612fc7816146c9565b92915050565b600082601f830112612fe257612fe161405f565b5b8135612ff2848260208601612ec7565b91505092915050565b600082601f8301126130105761300f61405f565b5b8135613020848260208601612f09565b91505092915050565b600081359050613038816146e0565b92915050565b60006020828403121561305457613053614073565b5b600061306284828501612f4b565b91505092915050565b6000806040838503121561308257613081614073565b5b600061309085828601612f4b565b92505060206130a185828601612f4b565b9150509250929050565b6000806000606084860312156130c4576130c3614073565b5b60006130d286828701612f4b565b93505060206130e386828701612f4b565b92505060406130f486828701613029565b9150509250925092565b6000806000806080858703121561311857613117614073565b5b600061312687828801612f4b565b945050602061313787828801612f4b565b935050604061314887828801613029565b925050606085013567ffffffffffffffff8111156131695761316861406e565b5b61317587828801612fcd565b91505092959194509250565b6000806040838503121561319857613197614073565b5b60006131a685828601612f4b565b92505060206131b785828601612f8e565b9150509250929050565b600080604083850312156131d8576131d7614073565b5b60006131e685828601612f4b565b92505060206131f785828601613029565b9150509250929050565b60006020828403121561321757613216614073565b5b600082013567ffffffffffffffff8111156132355761323461406e565b5b61324184828501612f60565b91505092915050565b6000602082840312156132605761325f614073565b5b600061326e84828501612f8e565b91505092915050565b60006020828403121561328d5761328c614073565b5b600061329b84828501612fa3565b91505092915050565b6000602082840312156132ba576132b9614073565b5b60006132c884828501612fb8565b91505092915050565b6000602082840312156132e7576132e6614073565b5b600082013567ffffffffffffffff8111156133055761330461406e565b5b61331184828501612ffb565b91505092915050565b6000602082840312156133305761332f614073565b5b600061333e84828501613029565b91505092915050565b61335081613de1565b82525050565b61335f81613df3565b82525050565b600061337082613c89565b61337a8185613c9f565b935061338a818560208601613e64565b61339381614078565b840191505092915050565b60006133a982613c94565b6133b38185613cb0565b93506133c3818560208601613e64565b6133cc81614078565b840191505092915050565b60006133e282613c94565b6133ec8185613cc1565b93506133fc818560208601613e64565b80840191505092915050565b6000815461341581613e97565b61341f8186613cc1565b9450600182166000811461343a576001811461344b5761347e565b60ff1983168652818601935061347e565b61345485613c74565b60005b8381101561347657815481890152600182019150602081019050613457565b838801955050505b50505092915050565b6000613494601483613cb0565b915061349f82614089565b602082019050919050565b60006134b7601c83613cb0565b91506134c2826140b2565b602082019050919050565b60006134da603283613cb0565b91506134e5826140db565b604082019050919050565b60006134fd602683613cb0565b91506135088261412a565b604082019050919050565b6000613520601c83613cb0565b915061352b82614179565b602082019050919050565b6000613543602e83613cb0565b915061354e826141a2565b604082019050919050565b6000613566602483613cb0565b9150613571826141f1565b604082019050919050565b6000613589601983613cb0565b915061359482614240565b602082019050919050565b60006135ac602c83613cb0565b91506135b782614269565b604082019050919050565b60006135cf602583613cb0565b91506135da826142b8565b604082019050919050565b60006135f2601083613cb0565b91506135fd82614307565b602082019050919050565b6000613615603883613cb0565b915061362082614330565b604082019050919050565b6000613638602a83613cb0565b91506136438261437f565b604082019050919050565b600061365b602983613cb0565b9150613666826143ce565b604082019050919050565b600061367e601883613cb0565b91506136898261441d565b602082019050919050565b60006136a1602083613cb0565b91506136ac82614446565b602082019050919050565b60006136c4602c83613cb0565b91506136cf8261446f565b604082019050919050565b60006136e7602083613cb0565b91506136f2826144be565b602082019050919050565b600061370a602e83613cb0565b9150613715826144e7565b604082019050919050565b600061372d602983613cb0565b915061373882614536565b604082019050919050565b6000613750602f83613cb0565b915061375b82614585565b604082019050919050565b6000613773602183613cb0565b915061377e826145d4565b604082019050919050565b6000613796603183613cb0565b91506137a182614623565b604082019050919050565b60006137b9601083613cb0565b91506137c482614672565b602082019050919050565b6137d881613e4b565b82525050565b60006137ea8285613408565b91506137f682846133d7565b91508190509392505050565b60006020820190506138176000830184613347565b92915050565b60006080820190506138326000830187613347565b61383f6020830186613347565b61384c60408301856137cf565b818103606083015261385e8184613365565b905095945050505050565b600060208201905061387e6000830184613356565b92915050565b6000602082019050818103600083015261389e818461339e565b905092915050565b600060208201905081810360008301526138bf81613487565b9050919050565b600060208201905081810360008301526138df816134aa565b9050919050565b600060208201905081810360008301526138ff816134cd565b9050919050565b6000602082019050818103600083015261391f816134f0565b9050919050565b6000602082019050818103600083015261393f81613513565b9050919050565b6000602082019050818103600083015261395f81613536565b9050919050565b6000602082019050818103600083015261397f81613559565b9050919050565b6000602082019050818103600083015261399f8161357c565b9050919050565b600060208201905081810360008301526139bf8161359f565b9050919050565b600060208201905081810360008301526139df816135c2565b9050919050565b600060208201905081810360008301526139ff816135e5565b9050919050565b60006020820190508181036000830152613a1f81613608565b9050919050565b60006020820190508181036000830152613a3f8161362b565b9050919050565b60006020820190508181036000830152613a5f8161364e565b9050919050565b60006020820190508181036000830152613a7f81613671565b9050919050565b60006020820190508181036000830152613a9f81613694565b9050919050565b60006020820190508181036000830152613abf816136b7565b9050919050565b60006020820190508181036000830152613adf816136da565b9050919050565b60006020820190508181036000830152613aff816136fd565b9050919050565b60006020820190508181036000830152613b1f81613720565b9050919050565b60006020820190508181036000830152613b3f81613743565b9050919050565b60006020820190508181036000830152613b5f81613766565b9050919050565b60006020820190508181036000830152613b7f81613789565b9050919050565b60006020820190508181036000830152613b9f816137ac565b9050919050565b6000602082019050613bbb60008301846137cf565b92915050565b6000613bcb613bdc565b9050613bd78282613ec9565b919050565b6000604051905090565b600067ffffffffffffffff821115613c0157613c00614030565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c2d57613c2c614030565b5b613c3682614078565b9050602081019050919050565b600067ffffffffffffffff821115613c5e57613c5d614030565b5b613c6782614078565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cd782613e4b565b9150613ce283613e4b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1757613d16613f74565b5b828201905092915050565b6000613d2d82613e4b565b9150613d3883613e4b565b925082613d4857613d47613fa3565b5b828204905092915050565b6000613d5e82613e4b565b9150613d6983613e4b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613da257613da1613f74565b5b828202905092915050565b6000613db882613e4b565b9150613dc383613e4b565b925082821015613dd657613dd5613f74565b5b828203905092915050565b6000613dec82613e2b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e82578082015181840152602081019050613e67565b83811115613e91576000848401525b50505050565b60006002820490506001821680613eaf57607f821691505b60208210811415613ec357613ec2613fd2565b5b50919050565b613ed282614078565b810181811067ffffffffffffffff82111715613ef157613ef0614030565b5b80604052505050565b6000613f0582613e4b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f3857613f37613f74565b5b600182019050919050565b6000613f4e82613e4b565b9150613f5983613e4b565b925082613f6957613f68613fa3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4e65656420746f206d696e74206174206c656173742031204e46542e00000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f596f752068617665206578636565646564207468652072656d61696e696e672060008201527f6d696e7461626c65204e4654732e000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f752068617665206578636565646564206d6178696d756d206d696e74206c60008201527f696d69742e000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f446964206e6f742073656e6420656e6f756768204554482e0000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f752068617665206578636565646564206d6178696d756d2072657365727660008201527f6564206d696e74206c696d69742e000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f742077686974656c69737465642e00000000000000000000000000000000600082015250565b6146a481613de1565b81146146af57600080fd5b50565b6146bb81613df3565b81146146c657600080fd5b50565b6146d281613dff565b81146146dd57600080fd5b50565b6146e981613e4b565b81146146f457600080fd5b5056fea2646970667358221220ec18b9bf15a52bf70dcc79f5ae125ce97c0284b784490166679be17557742c1564736f6c63430008070033

Deployed Bytecode Sourcemap

40032:5301:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27525:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28470:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30029:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29552:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42383:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42306:74;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43177:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30779:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41710:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44457:398;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43281:154;;;:::i;:::-;;40872:56;;;;;;;;;;;;;:::i;:::-;;31189:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41898:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41798:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5614:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41043:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42566:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28164:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27894:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8513:103;;;;;;;;;;;;;:::i;:::-;;42200:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41507:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40817:52;;;;;;;;;;;;;:::i;:::-;;7862:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28639:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43454:1000;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43072:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30322:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31445:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41279:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40947:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42001:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42473:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42742:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42099:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42653:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41608:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42978:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30548:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8771:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27525:305;27627:4;27679:25;27664:40;;;:11;:40;;;;:105;;;;27736:33;27721:48;;;:11;:48;;;;27664:105;:158;;;;27786:36;27810:11;27786:23;:36::i;:::-;27664:158;27644:178;;27525:305;;;:::o;28470:100::-;28524:13;28557:5;28550:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28470:100;:::o;30029:221::-;30105:7;30133:16;30141:7;30133;:16::i;:::-;30125:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30218:15;:24;30234:7;30218:24;;;;;;;;;;;;;;;;;;;;;30211:31;;30029:221;;;:::o;29552:411::-;29633:13;29649:23;29664:7;29649:14;:23::i;:::-;29633:39;;29697:5;29691:11;;:2;:11;;;;29683:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29791:5;29775:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29800:37;29817:5;29824:12;:10;:12::i;:::-;29800:16;:37::i;:::-;29775:62;29753:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;29934:21;29943:2;29947:7;29934:8;:21::i;:::-;29622:341;29552:411;;:::o;42383:87::-;42432:7;42453:12;;42446:19;;42383:87;:::o;42306:74::-;42348:7;42369:6;;42362:13;;42306:74;:::o;43177:86::-;43221:7;43242:16;:6;:14;:16::i;:::-;43235:23;;43177:86;:::o;30779:339::-;30974:41;30993:12;:10;:12::i;:::-;31007:7;30974:18;:41::i;:::-;30966:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31082:28;31092:4;31098:2;31102:7;31082:9;:28::i;:::-;30779:339;;;:::o;41710:85::-;8093:12;:10;:12::i;:::-;8082:23;;:7;:5;:7::i;:::-;:23;;;8074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41781:9:::1;41772:6;:18;;;;41710:85:::0;:::o;44457:398::-;8093:12;:10;:12::i;:::-;8082:23;;:7;:5;:7::i;:::-;:23;;;8074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44630:14:::1;;44618:8;44590:25;:15;:23;:25::i;:::-;:36;;;;:::i;:::-;:54;;44582:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;44716:9;44712:137;44728:8;44726:1;:10;44712:137;;;44748:18;:6;:16;:18::i;:::-;44772:27;:15;:25;:27::i;:::-;44805:38;44815:10;44826:16;:6;:14;:16::i;:::-;44805:9;:38::i;:::-;44737:3;;;;;:::i;:::-;;;;44712:137;;;;44457:398:::0;;:::o;43281:154::-;8093:12;:10;:12::i;:::-;8082:23;;:7;:5;:7::i;:::-;:23;;;8074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43331:13:::1;43371:1;43347:21;:25;;;;:::i;:::-;43331:41;;43393:23;;;;;;;;;;;43385:37;;:44;43423:5;43385:44;;;;;;;;;;;;;;;;;;;;;;;43377:53;;;::::0;::::1;;43326:109;43281:154::o:0;40872:56::-;8093:12;:10;:12::i;:::-;8082:23;;:7;:5;:7::i;:::-;:23;;;8074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40913:10:::1;:8;:10::i;:::-;40872:56::o:0;31189:185::-;31327:39;31344:4;31350:2;31354:7;31327:39;;;;;;;;;;;;:16;:39::i;:::-;31189:185;;;:::o;41898:100::-;8093:12;:10;:12::i;:::-;8082:23;;:7;:5;:7::i;:::-;:23;;;8074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41984:9:::1;41967:14;:26;;;;41898:100:::0;:::o;41798:97::-;8093:12;:10;:12::i;:::-;8082:23;;:7;:5;:7::i;:::-;:23;;;8074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41881:9:::1;41866:12;:24;;;;41798:97:::0;:::o;5614:86::-;5661:4;5685:7;;;;;;;;;;;5678:14;;5614:86;:::o;41043:233::-;8093:12;:10;:12::i;:::-;8082:23;;:7;:5;:7::i;:::-;:23;;;8074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41123:6:::1;41119:153;41134:9;:16;41132:1;:18;41119:153;;;41162:12;41177:9;41187:1;41177:12;;;;;;;;:::i;:::-;;;;;;;;41162:27;;41198:10;:16;41209:4;41198:16;;;;;;;;;;;;;;;;;;;;;;;;;41195:43;;;41223:8;;;41195:43;41262:4;41243:10;:16;41254:4;41243:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;41156:116;41119:153;41151:3;;;;;:::i;:::-;;;;41119:153;;;;41043:233:::0;:::o;42566:84::-;42613:7;42634:11;;42627:18;;42566:84;:::o;28164:239::-;28236:7;28256:13;28272:7;:16;28280:7;28272:16;;;;;;;;;;;;;;;;;;;;;28256:32;;28324:1;28307:19;;:5;:19;;;;28299:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28390:5;28383:12;;;28164:239;;;:::o;27894:208::-;27966:7;28011:1;27994:19;;:5;:19;;;;27986:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28078:9;:16;28088:5;28078:16;;;;;;;;;;;;;;;;28071:23;;27894:208;;;:::o;8513:103::-;8093:12;:10;:12::i;:::-;8082:23;;:7;:5;:7::i;:::-;:23;;;8074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8578:30:::1;8605:1;8578:18;:30::i;:::-;8513:103::o:0;42200:93::-;8093:12;:10;:12::i;:::-;8082:23;;:7;:5;:7::i;:::-;:23;;;8074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42281:7:::1;42269:9;:19;;;;;;;;;;;;:::i;:::-;;42200:93:::0;:::o;41507:98::-;41566:4;41584:10;:16;41595:4;41584:16;;;;;;;;;;;;;;;;;;;;;;;;;41577:23;;41507:98;;;:::o;40817:52::-;8093:12;:10;:12::i;:::-;8082:23;;:7;:5;:7::i;:::-;:23;;;8074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40856:8:::1;:6;:8::i;:::-;40817:52::o:0;7862:87::-;7908:7;7935:6;;;;;;;;;;;7928:13;;7862:87;:::o;28639:104::-;28695:13;28728:7;28721:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28639:104;:::o;43454:1000::-;43555:1;43544:8;:12;43536:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;43636:19;;;;;;;;;;;43633:266;;;43663:19;43685:21;43695:10;43685:9;:21::i;:::-;43663:43;;43746:11;;43734:8;43720:11;:22;;;;:::i;:::-;:37;;43712:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;43657:148;43633:266;;;43840:11;;43828:8;:23;;43820:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43633:266;44027:14;;44012:12;;:29;;;;:::i;:::-;44000:8;43972:25;:15;:23;:25::i;:::-;43953:16;:6;:14;:16::i;:::-;:44;;;;:::i;:::-;:55;;;;:::i;:::-;:88;;43945:147;;;;;;;;;;;;:::i;:::-;;;;;;;;;44165:8;44156:6;;:17;;;;:::i;:::-;44143:9;:30;;44135:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44258:4;44236:26;;:18;;;;;;;;;;;:26;;;44233:97;;;44278:26;44293:10;44278:14;:26::i;:::-;44270:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;44233:97;44350:9;44346:104;44362:8;44360:1;:10;44346:104;;;44382:18;:6;:16;:18::i;:::-;44406:38;44416:10;44427:16;:6;:14;:16::i;:::-;44406:9;:38::i;:::-;44371:3;;;;;:::i;:::-;;;;44346:104;;;;43454:1000;:::o;43072:102::-;43123:7;43144:25;:15;:23;:25::i;:::-;43137:32;;43072:102;:::o;30322:155::-;30417:52;30436:12;:10;:12::i;:::-;30450:8;30460;30417:18;:52::i;:::-;30322:155;;:::o;31445:328::-;31620:41;31639:12;:10;:12::i;:::-;31653:7;31620:18;:41::i;:::-;31612:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31726:39;31740:4;31746:2;31750:7;31759:5;31726:13;:39::i;:::-;31445:328;;;;:::o;41279:225::-;8093:12;:10;:12::i;:::-;8082:23;;:7;:5;:7::i;:::-;:23;;;8074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41364:6:::1;41360:140;41375:9;:16;41373:1;:18;41360:140;;;41403:12;41418:9;41428:1;41418:12;;;;;;;;:::i;:::-;;;;;;;;41403:27;;41439:10;:16;41450:4;41439:16;;;;;;;;;;;;;;;;;;;;;;;;;41436:59;;;41483:5;41464:10;:16;41475:4;41464:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;41436:59;41397:103;41392:3;;;;;:::i;:::-;;;;41360:140;;;;41279:225:::0;:::o;40947:93::-;8093:12;:10;:12::i;:::-;8082:23;;:7;:5;:7::i;:::-;:23;;;8074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41029:6:::1;41008:18;;:27;;;;;;;;;;;;;;;;;;40947:93:::0;:::o;42001:95::-;8093:12;:10;:12::i;:::-;8082:23;;:7;:5;:7::i;:::-;:23;;;8074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42082:9:::1;42068:11;:23;;;;42001:95:::0;:::o;42473:90::-;42523:7;42544:14;;42537:21;;42473:90;:::o;42742:233::-;42808:13;42836:17;42844:8;42836:7;:17::i;:::-;42828:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;42940:9;42950:18;42959:8;42950;:18::i;:::-;42923:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42909:61;;42742:233;;;:::o;42099:98::-;8093:12;:10;:12::i;:::-;8082:23;;:7;:5;:7::i;:::-;:23;;;8074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42187:5:::1;42165:19;;:27;;;;;;;;;;;;;;;;;;42099:98:::0;:::o;42653:86::-;42698:13;42725:9;42718:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42653:86;:::o;41608:89::-;41656:4;41674:18;;;;;;;;;;;41667:25;;41608:89;:::o;42978:91::-;43027:7;43048:16;:6;:14;:16::i;:::-;43041:23;;42978:91;:::o;30548:164::-;30645:4;30669:18;:25;30688:5;30669:25;;;;;;;;;;;;;;;:35;30695:8;30669:35;;;;;;;;;;;;;;;;;;;;;;;;;30662:42;;30548:164;;;;:::o;8771:201::-;8093:12;:10;:12::i;:::-;8082:23;;:7;:5;:7::i;:::-;:23;;;8074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8880:1:::1;8860:22;;:8;:22;;;;8852:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8936:28;8955:8;8936:18;:28::i;:::-;8771:201:::0;:::o;20294:157::-;20379:4;20418:25;20403:40;;;:11;:40;;;;20396:47;;20294:157;;;:::o;33283:127::-;33348:4;33400:1;33372:30;;:7;:16;33380:7;33372:16;;;;;;;;;;;;;;;;;;;;;:30;;;;33365:37;;33283:127;;;:::o;4268:98::-;4321:7;4348:10;4341:17;;4268:98;:::o;37265:174::-;37367:2;37340:15;:24;37356:7;37340:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37423:7;37419:2;37385:46;;37394:23;37409:7;37394:14;:23::i;:::-;37385:46;;;;;;;;;;;;37265:174;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;33577:348::-;33670:4;33695:16;33703:7;33695;:16::i;:::-;33687:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33771:13;33787:23;33802:7;33787:14;:23::i;:::-;33771:39;;33840:5;33829:16;;:7;:16;;;:51;;;;33873:7;33849:31;;:20;33861:7;33849:11;:20::i;:::-;:31;;;33829:51;:87;;;;33884:32;33901:5;33908:7;33884:16;:32::i;:::-;33829:87;33821:96;;;33577:348;;;;:::o;36569:578::-;36728:4;36701:31;;:23;36716:7;36701:14;:23::i;:::-;:31;;;36693:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;36811:1;36797:16;;:2;:16;;;;36789:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36867:39;36888:4;36894:2;36898:7;36867:20;:39::i;:::-;36971:29;36988:1;36992:7;36971:8;:29::i;:::-;37032:1;37013:9;:15;37023:4;37013:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;37061:1;37044:9;:13;37054:2;37044:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;37092:2;37073:7;:16;37081:7;37073:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;37131:7;37127:2;37112:27;;37121:4;37112:27;;;;;;;;;;;;36569:578;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;34267:110::-;34343:26;34353:2;34357:7;34343:26;;;;;;;;;;;;:9;:26::i;:::-;34267:110;;:::o;6673:120::-;6217:8;:6;:8::i;:::-;6209:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;6742:5:::1;6732:7;;:15;;;;;;;;;;;;;;;;;;6763:22;6772:12;:10;:12::i;:::-;6763:22;;;;;;:::i;:::-;;;;;;;;6673:120::o:0;9132:191::-;9206:16;9225:6;;;;;;;;;;;9206:25;;9251:8;9242:6;;:17;;;;;;;;;;;;;;;;;;9306:8;9275:40;;9296:8;9275:40;;;;;;;;;;;;9195:128;9132:191;:::o;6414:118::-;5940:8;:6;:8::i;:::-;5939:9;5931:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;6484:4:::1;6474:7;;:14;;;;;;;;;;;;;;;;;;6504:20;6511:12;:10;:12::i;:::-;6504:20;;;;;;:::i;:::-;;;;;;;;6414:118::o:0;37581:315::-;37736:8;37727:17;;:5;:17;;;;37719:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;37823:8;37785:18;:25;37804:5;37785:25;;;;;;;;;;;;;;;:35;37811:8;37785:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37869:8;37847:41;;37862:5;37847:41;;;37879:8;37847:41;;;;;;:::i;:::-;;;;;;;;37581:315;;;:::o;32655:::-;32812:28;32822:4;32828:2;32832:7;32812:9;:28::i;:::-;32859:48;32882:4;32888:2;32892:7;32901:5;32859:22;:48::i;:::-;32851:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;32655:315;;;;:::o;44915:413::-;44971:13;45003:1;44994:5;:10;44991:37;;;45012:10;;;;;;;;;;;;;;;;;;;;;44991:37;45032:12;45047:5;45032:20;;45057:14;45076:54;45091:1;45083:4;:9;45076:54;;45100:8;;;;;:::i;:::-;;;;45122:2;45114:10;;;;;:::i;:::-;;;45076:54;;;45134:19;45166:6;45156:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45134:39;;45178:120;45193:1;45184:5;:10;45178:120;;45212:1;45202:11;;;;;:::i;:::-;;;45270:2;45262:5;:10;;;;:::i;:::-;45249:2;:24;;;;:::i;:::-;45236:39;;45219:6;45226;45219:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;45290:2;45281:11;;;;;:::i;:::-;;;45178:120;;;45316:6;45302:21;;;;;44915:413;;;;:::o;39832:126::-;;;;:::o;34604:321::-;34734:18;34740:2;34744:7;34734:5;:18::i;:::-;34785:54;34816:1;34820:2;34824:7;34833:5;34785:22;:54::i;:::-;34763:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;34604:321;;;:::o;38461:799::-;38616:4;38637:15;:2;:13;;;:15::i;:::-;38633:620;;;38689:2;38673:36;;;38710:12;:10;:12::i;:::-;38724:4;38730:7;38739:5;38673:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38669:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38932:1;38915:6;:13;:18;38911:272;;;38958:60;;;;;;;;;;:::i;:::-;;;;;;;;38911:272;39133:6;39127:13;39118:6;39114:2;39110:15;39103:38;38669:529;38806:41;;;38796:51;;;:6;:51;;;;38789:58;;;;;38633:620;39237:4;39230:11;;38461:799;;;;;;;:::o;35261:382::-;35355:1;35341:16;;:2;:16;;;;35333:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35414:16;35422:7;35414;:16::i;:::-;35413:17;35405:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35476:45;35505:1;35509:2;35513:7;35476:20;:45::i;:::-;35551:1;35534:9;:13;35544:2;35534:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35582:2;35563:7;:16;35571:7;35563:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35627:7;35623:2;35602:33;;35619:1;35602:33;;;;;;;;;;;;35261:382;;:::o;10150:387::-;10210:4;10418:12;10485:7;10473:20;10465:28;;10528:1;10521:4;:8;10514:15;;;10150:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:323::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:50;7601:7;7592:6;7581:9;7577:22;7559:50;:::i;:::-;7549:60;;7505:114;7303:323;;;;:::o;7632:327::-;7690:6;7739:2;7727:9;7718:7;7714:23;7710:32;7707:119;;;7745:79;;:::i;:::-;7707:119;7865:1;7890:52;7934:7;7925:6;7914:9;7910:22;7890:52;:::i;:::-;7880:62;;7836:116;7632:327;;;;:::o;7965:349::-;8034:6;8083:2;8071:9;8062:7;8058:23;8054:32;8051:119;;;8089:79;;:::i;:::-;8051:119;8209:1;8234:63;8289:7;8280:6;8269:9;8265:22;8234:63;:::i;:::-;8224:73;;8180:127;7965:349;;;;:::o;8320:509::-;8389:6;8438:2;8426:9;8417:7;8413:23;8409:32;8406:119;;;8444:79;;:::i;:::-;8406:119;8592:1;8581:9;8577:17;8564:31;8622:18;8614:6;8611:30;8608:117;;;8644:79;;:::i;:::-;8608:117;8749:63;8804:7;8795:6;8784:9;8780:22;8749:63;:::i;:::-;8739:73;;8535:287;8320:509;;;;:::o;8835:329::-;8894:6;8943:2;8931:9;8922:7;8918:23;8914:32;8911:119;;;8949:79;;:::i;:::-;8911:119;9069:1;9094:53;9139:7;9130:6;9119:9;9115:22;9094:53;:::i;:::-;9084:63;;9040:117;8835:329;;;;:::o;9170:118::-;9257:24;9275:5;9257:24;:::i;:::-;9252:3;9245:37;9170:118;;:::o;9294:109::-;9375:21;9390:5;9375:21;:::i;:::-;9370:3;9363:34;9294:109;;:::o;9409:360::-;9495:3;9523:38;9555:5;9523:38;:::i;:::-;9577:70;9640:6;9635:3;9577:70;:::i;:::-;9570:77;;9656:52;9701:6;9696:3;9689:4;9682:5;9678:16;9656:52;:::i;:::-;9733:29;9755:6;9733:29;:::i;:::-;9728:3;9724:39;9717:46;;9499:270;9409:360;;;;:::o;9775:364::-;9863:3;9891:39;9924:5;9891:39;:::i;:::-;9946:71;10010:6;10005:3;9946:71;:::i;:::-;9939:78;;10026:52;10071:6;10066:3;10059:4;10052:5;10048:16;10026:52;:::i;:::-;10103:29;10125:6;10103:29;:::i;:::-;10098:3;10094:39;10087:46;;9867:272;9775:364;;;;:::o;10145:377::-;10251:3;10279:39;10312:5;10279:39;:::i;:::-;10334:89;10416:6;10411:3;10334:89;:::i;:::-;10327:96;;10432:52;10477:6;10472:3;10465:4;10458:5;10454:16;10432:52;:::i;:::-;10509:6;10504:3;10500:16;10493:23;;10255:267;10145:377;;;;:::o;10552:845::-;10655:3;10692:5;10686:12;10721:36;10747:9;10721:36;:::i;:::-;10773:89;10855:6;10850:3;10773:89;:::i;:::-;10766:96;;10893:1;10882:9;10878:17;10909:1;10904:137;;;;11055:1;11050:341;;;;10871:520;;10904:137;10988:4;10984:9;10973;10969:25;10964:3;10957:38;11024:6;11019:3;11015:16;11008:23;;10904:137;;11050:341;11117:38;11149:5;11117:38;:::i;:::-;11177:1;11191:154;11205:6;11202:1;11199:13;11191:154;;;11279:7;11273:14;11269:1;11264:3;11260:11;11253:35;11329:1;11320:7;11316:15;11305:26;;11227:4;11224:1;11220:12;11215:17;;11191:154;;;11374:6;11369:3;11365:16;11358:23;;11057:334;;10871:520;;10659:738;;10552:845;;;;:::o;11403:366::-;11545:3;11566:67;11630:2;11625:3;11566:67;:::i;:::-;11559:74;;11642:93;11731:3;11642:93;:::i;:::-;11760:2;11755:3;11751:12;11744:19;;11403:366;;;:::o;11775:::-;11917:3;11938:67;12002:2;11997:3;11938:67;:::i;:::-;11931:74;;12014:93;12103:3;12014:93;:::i;:::-;12132:2;12127:3;12123:12;12116:19;;11775:366;;;:::o;12147:::-;12289:3;12310:67;12374:2;12369:3;12310:67;:::i;:::-;12303:74;;12386:93;12475:3;12386:93;:::i;:::-;12504:2;12499:3;12495:12;12488:19;;12147:366;;;:::o;12519:::-;12661:3;12682:67;12746:2;12741:3;12682:67;:::i;:::-;12675:74;;12758:93;12847:3;12758:93;:::i;:::-;12876:2;12871:3;12867:12;12860:19;;12519:366;;;:::o;12891:::-;13033:3;13054:67;13118:2;13113:3;13054:67;:::i;:::-;13047:74;;13130:93;13219:3;13130:93;:::i;:::-;13248:2;13243:3;13239:12;13232:19;;12891:366;;;:::o;13263:::-;13405:3;13426:67;13490:2;13485:3;13426:67;:::i;:::-;13419:74;;13502:93;13591:3;13502:93;:::i;:::-;13620:2;13615:3;13611:12;13604:19;;13263:366;;;:::o;13635:::-;13777:3;13798:67;13862:2;13857:3;13798:67;:::i;:::-;13791:74;;13874:93;13963:3;13874:93;:::i;:::-;13992:2;13987:3;13983:12;13976:19;;13635:366;;;:::o;14007:::-;14149:3;14170:67;14234:2;14229:3;14170:67;:::i;:::-;14163:74;;14246:93;14335:3;14246:93;:::i;:::-;14364:2;14359:3;14355:12;14348:19;;14007:366;;;:::o;14379:::-;14521:3;14542:67;14606:2;14601:3;14542:67;:::i;:::-;14535:74;;14618:93;14707:3;14618:93;:::i;:::-;14736:2;14731:3;14727:12;14720:19;;14379:366;;;:::o;14751:::-;14893:3;14914:67;14978:2;14973:3;14914:67;:::i;:::-;14907:74;;14990:93;15079:3;14990:93;:::i;:::-;15108:2;15103:3;15099:12;15092:19;;14751:366;;;:::o;15123:::-;15265:3;15286:67;15350:2;15345:3;15286:67;:::i;:::-;15279:74;;15362:93;15451:3;15362:93;:::i;:::-;15480:2;15475:3;15471:12;15464:19;;15123:366;;;:::o;15495:::-;15637:3;15658:67;15722:2;15717:3;15658:67;:::i;:::-;15651:74;;15734:93;15823:3;15734:93;:::i;:::-;15852:2;15847:3;15843:12;15836:19;;15495:366;;;:::o;15867:::-;16009:3;16030:67;16094:2;16089:3;16030:67;:::i;:::-;16023:74;;16106:93;16195:3;16106:93;:::i;:::-;16224:2;16219:3;16215:12;16208:19;;15867:366;;;:::o;16239:::-;16381:3;16402:67;16466:2;16461:3;16402:67;:::i;:::-;16395:74;;16478:93;16567:3;16478:93;:::i;:::-;16596:2;16591:3;16587:12;16580:19;;16239:366;;;:::o;16611:::-;16753:3;16774:67;16838:2;16833:3;16774:67;:::i;:::-;16767:74;;16850:93;16939:3;16850:93;:::i;:::-;16968:2;16963:3;16959:12;16952:19;;16611:366;;;:::o;16983:::-;17125:3;17146:67;17210:2;17205:3;17146:67;:::i;:::-;17139:74;;17222:93;17311:3;17222:93;:::i;:::-;17340:2;17335:3;17331:12;17324:19;;16983:366;;;:::o;17355:::-;17497:3;17518:67;17582:2;17577:3;17518:67;:::i;:::-;17511:74;;17594:93;17683:3;17594:93;:::i;:::-;17712:2;17707:3;17703:12;17696:19;;17355:366;;;:::o;17727:::-;17869:3;17890:67;17954:2;17949:3;17890:67;:::i;:::-;17883:74;;17966:93;18055:3;17966:93;:::i;:::-;18084:2;18079:3;18075:12;18068:19;;17727:366;;;:::o;18099:::-;18241:3;18262:67;18326:2;18321:3;18262:67;:::i;:::-;18255:74;;18338:93;18427:3;18338:93;:::i;:::-;18456:2;18451:3;18447:12;18440:19;;18099:366;;;:::o;18471:::-;18613:3;18634:67;18698:2;18693:3;18634:67;:::i;:::-;18627:74;;18710:93;18799:3;18710:93;:::i;:::-;18828:2;18823:3;18819:12;18812:19;;18471:366;;;:::o;18843:::-;18985:3;19006:67;19070:2;19065:3;19006:67;:::i;:::-;18999:74;;19082:93;19171:3;19082:93;:::i;:::-;19200:2;19195:3;19191:12;19184:19;;18843:366;;;:::o;19215:::-;19357:3;19378:67;19442:2;19437:3;19378:67;:::i;:::-;19371:74;;19454:93;19543:3;19454:93;:::i;:::-;19572:2;19567:3;19563:12;19556:19;;19215:366;;;:::o;19587:::-;19729:3;19750:67;19814:2;19809:3;19750:67;:::i;:::-;19743:74;;19826:93;19915:3;19826:93;:::i;:::-;19944:2;19939:3;19935:12;19928:19;;19587:366;;;:::o;19959:::-;20101:3;20122:67;20186:2;20181:3;20122:67;:::i;:::-;20115:74;;20198:93;20287:3;20198:93;:::i;:::-;20316:2;20311:3;20307:12;20300:19;;19959:366;;;:::o;20331:118::-;20418:24;20436:5;20418:24;:::i;:::-;20413:3;20406:37;20331:118;;:::o;20455:429::-;20632:3;20654:92;20742:3;20733:6;20654:92;:::i;:::-;20647:99;;20763:95;20854:3;20845:6;20763:95;:::i;:::-;20756:102;;20875:3;20868:10;;20455:429;;;;;:::o;20890:222::-;20983:4;21021:2;21010:9;21006:18;20998:26;;21034:71;21102:1;21091:9;21087:17;21078:6;21034:71;:::i;:::-;20890:222;;;;:::o;21118:640::-;21313:4;21351:3;21340:9;21336:19;21328:27;;21365:71;21433:1;21422:9;21418:17;21409:6;21365:71;:::i;:::-;21446:72;21514:2;21503:9;21499:18;21490:6;21446:72;:::i;:::-;21528;21596:2;21585:9;21581:18;21572:6;21528:72;:::i;:::-;21647:9;21641:4;21637:20;21632:2;21621:9;21617:18;21610:48;21675:76;21746:4;21737:6;21675:76;:::i;:::-;21667:84;;21118:640;;;;;;;:::o;21764:210::-;21851:4;21889:2;21878:9;21874:18;21866:26;;21902:65;21964:1;21953:9;21949:17;21940:6;21902:65;:::i;:::-;21764:210;;;;:::o;21980:313::-;22093:4;22131:2;22120:9;22116:18;22108:26;;22180:9;22174:4;22170:20;22166:1;22155:9;22151:17;22144:47;22208:78;22281:4;22272:6;22208:78;:::i;:::-;22200:86;;21980:313;;;;:::o;22299:419::-;22465:4;22503:2;22492:9;22488:18;22480:26;;22552:9;22546:4;22542:20;22538:1;22527:9;22523:17;22516:47;22580:131;22706:4;22580:131;:::i;:::-;22572:139;;22299:419;;;:::o;22724:::-;22890:4;22928:2;22917:9;22913:18;22905:26;;22977:9;22971:4;22967:20;22963:1;22952:9;22948:17;22941:47;23005:131;23131:4;23005:131;:::i;:::-;22997:139;;22724:419;;;:::o;23149:::-;23315:4;23353:2;23342:9;23338:18;23330:26;;23402:9;23396:4;23392:20;23388:1;23377:9;23373:17;23366:47;23430:131;23556:4;23430:131;:::i;:::-;23422:139;;23149:419;;;:::o;23574:::-;23740:4;23778:2;23767:9;23763:18;23755:26;;23827:9;23821:4;23817:20;23813:1;23802:9;23798:17;23791:47;23855:131;23981:4;23855:131;:::i;:::-;23847:139;;23574:419;;;:::o;23999:::-;24165:4;24203:2;24192:9;24188:18;24180:26;;24252:9;24246:4;24242:20;24238:1;24227:9;24223:17;24216:47;24280:131;24406:4;24280:131;:::i;:::-;24272:139;;23999:419;;;:::o;24424:::-;24590:4;24628:2;24617:9;24613:18;24605:26;;24677:9;24671:4;24667:20;24663:1;24652:9;24648:17;24641:47;24705:131;24831:4;24705:131;:::i;:::-;24697:139;;24424:419;;;:::o;24849:::-;25015:4;25053:2;25042:9;25038:18;25030:26;;25102:9;25096:4;25092:20;25088:1;25077:9;25073:17;25066:47;25130:131;25256:4;25130:131;:::i;:::-;25122:139;;24849:419;;;:::o;25274:::-;25440:4;25478:2;25467:9;25463:18;25455:26;;25527:9;25521:4;25517:20;25513:1;25502:9;25498:17;25491:47;25555:131;25681:4;25555:131;:::i;:::-;25547:139;;25274:419;;;:::o;25699:::-;25865:4;25903:2;25892:9;25888:18;25880:26;;25952:9;25946:4;25942:20;25938:1;25927:9;25923:17;25916:47;25980:131;26106:4;25980:131;:::i;:::-;25972:139;;25699:419;;;:::o;26124:::-;26290:4;26328:2;26317:9;26313:18;26305:26;;26377:9;26371:4;26367:20;26363:1;26352:9;26348:17;26341:47;26405:131;26531:4;26405:131;:::i;:::-;26397:139;;26124:419;;;:::o;26549:::-;26715:4;26753:2;26742:9;26738:18;26730:26;;26802:9;26796:4;26792:20;26788:1;26777:9;26773:17;26766:47;26830:131;26956:4;26830:131;:::i;:::-;26822:139;;26549:419;;;:::o;26974:::-;27140:4;27178:2;27167:9;27163:18;27155:26;;27227:9;27221:4;27217:20;27213:1;27202:9;27198:17;27191:47;27255:131;27381:4;27255:131;:::i;:::-;27247:139;;26974:419;;;:::o;27399:::-;27565:4;27603:2;27592:9;27588:18;27580:26;;27652:9;27646:4;27642:20;27638:1;27627:9;27623:17;27616:47;27680:131;27806:4;27680:131;:::i;:::-;27672:139;;27399:419;;;:::o;27824:::-;27990:4;28028:2;28017:9;28013:18;28005:26;;28077:9;28071:4;28067:20;28063:1;28052:9;28048:17;28041:47;28105:131;28231:4;28105:131;:::i;:::-;28097:139;;27824:419;;;:::o;28249:::-;28415:4;28453:2;28442:9;28438:18;28430:26;;28502:9;28496:4;28492:20;28488:1;28477:9;28473:17;28466:47;28530:131;28656:4;28530:131;:::i;:::-;28522:139;;28249:419;;;:::o;28674:::-;28840:4;28878:2;28867:9;28863:18;28855:26;;28927:9;28921:4;28917:20;28913:1;28902:9;28898:17;28891:47;28955:131;29081:4;28955:131;:::i;:::-;28947:139;;28674:419;;;:::o;29099:::-;29265:4;29303:2;29292:9;29288:18;29280:26;;29352:9;29346:4;29342:20;29338:1;29327:9;29323:17;29316:47;29380:131;29506:4;29380:131;:::i;:::-;29372:139;;29099:419;;;:::o;29524:::-;29690:4;29728:2;29717:9;29713:18;29705:26;;29777:9;29771:4;29767:20;29763:1;29752:9;29748:17;29741:47;29805:131;29931:4;29805:131;:::i;:::-;29797:139;;29524:419;;;:::o;29949:::-;30115:4;30153:2;30142:9;30138:18;30130:26;;30202:9;30196:4;30192:20;30188:1;30177:9;30173:17;30166:47;30230:131;30356:4;30230:131;:::i;:::-;30222:139;;29949:419;;;:::o;30374:::-;30540:4;30578:2;30567:9;30563:18;30555:26;;30627:9;30621:4;30617:20;30613:1;30602:9;30598:17;30591:47;30655:131;30781:4;30655:131;:::i;:::-;30647:139;;30374:419;;;:::o;30799:::-;30965:4;31003:2;30992:9;30988:18;30980:26;;31052:9;31046:4;31042:20;31038:1;31027:9;31023:17;31016:47;31080:131;31206:4;31080:131;:::i;:::-;31072:139;;30799:419;;;:::o;31224:::-;31390:4;31428:2;31417:9;31413:18;31405:26;;31477:9;31471:4;31467:20;31463:1;31452:9;31448:17;31441:47;31505:131;31631:4;31505:131;:::i;:::-;31497:139;;31224:419;;;:::o;31649:::-;31815:4;31853:2;31842:9;31838:18;31830:26;;31902:9;31896:4;31892:20;31888:1;31877:9;31873:17;31866:47;31930:131;32056:4;31930:131;:::i;:::-;31922:139;;31649:419;;;:::o;32074:::-;32240:4;32278:2;32267:9;32263:18;32255:26;;32327:9;32321:4;32317:20;32313:1;32302:9;32298:17;32291:47;32355:131;32481:4;32355:131;:::i;:::-;32347:139;;32074:419;;;:::o;32499:222::-;32592:4;32630:2;32619:9;32615:18;32607:26;;32643:71;32711:1;32700:9;32696:17;32687:6;32643:71;:::i;:::-;32499:222;;;;:::o;32727:129::-;32761:6;32788:20;;:::i;:::-;32778:30;;32817:33;32845:4;32837:6;32817:33;:::i;:::-;32727:129;;;:::o;32862:75::-;32895:6;32928:2;32922:9;32912:19;;32862:75;:::o;32943:311::-;33020:4;33110:18;33102:6;33099:30;33096:56;;;33132:18;;:::i;:::-;33096:56;33182:4;33174:6;33170:17;33162:25;;33242:4;33236;33232:15;33224:23;;32943:311;;;:::o;33260:307::-;33321:4;33411:18;33403:6;33400:30;33397:56;;;33433:18;;:::i;:::-;33397:56;33471:29;33493:6;33471:29;:::i;:::-;33463:37;;33555:4;33549;33545:15;33537:23;;33260:307;;;:::o;33573:308::-;33635:4;33725:18;33717:6;33714:30;33711:56;;;33747:18;;:::i;:::-;33711:56;33785:29;33807:6;33785:29;:::i;:::-;33777:37;;33869:4;33863;33859:15;33851:23;;33573:308;;;:::o;33887:141::-;33936:4;33959:3;33951:11;;33982:3;33979:1;33972:14;34016:4;34013:1;34003:18;33995:26;;33887:141;;;:::o;34034:98::-;34085:6;34119:5;34113:12;34103:22;;34034:98;;;:::o;34138:99::-;34190:6;34224:5;34218:12;34208:22;;34138:99;;;:::o;34243:168::-;34326:11;34360:6;34355:3;34348:19;34400:4;34395:3;34391:14;34376:29;;34243:168;;;;:::o;34417:169::-;34501:11;34535:6;34530:3;34523:19;34575:4;34570:3;34566:14;34551:29;;34417:169;;;;:::o;34592:148::-;34694:11;34731:3;34716:18;;34592:148;;;;:::o;34746:305::-;34786:3;34805:20;34823:1;34805:20;:::i;:::-;34800:25;;34839:20;34857:1;34839:20;:::i;:::-;34834:25;;34993:1;34925:66;34921:74;34918:1;34915:81;34912:107;;;34999:18;;:::i;:::-;34912:107;35043:1;35040;35036:9;35029:16;;34746:305;;;;:::o;35057:185::-;35097:1;35114:20;35132:1;35114:20;:::i;:::-;35109:25;;35148:20;35166:1;35148:20;:::i;:::-;35143:25;;35187:1;35177:35;;35192:18;;:::i;:::-;35177:35;35234:1;35231;35227:9;35222:14;;35057:185;;;;:::o;35248:348::-;35288:7;35311:20;35329:1;35311:20;:::i;:::-;35306:25;;35345:20;35363:1;35345:20;:::i;:::-;35340:25;;35533:1;35465:66;35461:74;35458:1;35455:81;35450:1;35443:9;35436:17;35432:105;35429:131;;;35540:18;;:::i;:::-;35429:131;35588:1;35585;35581:9;35570:20;;35248:348;;;;:::o;35602:191::-;35642:4;35662:20;35680:1;35662:20;:::i;:::-;35657:25;;35696:20;35714:1;35696:20;:::i;:::-;35691:25;;35735:1;35732;35729:8;35726:34;;;35740:18;;:::i;:::-;35726:34;35785:1;35782;35778:9;35770:17;;35602:191;;;;:::o;35799:96::-;35836:7;35865:24;35883:5;35865:24;:::i;:::-;35854:35;;35799:96;;;:::o;35901:90::-;35935:7;35978:5;35971:13;35964:21;35953:32;;35901:90;;;:::o;35997:149::-;36033:7;36073:66;36066:5;36062:78;36051:89;;35997:149;;;:::o;36152:126::-;36189:7;36229:42;36222:5;36218:54;36207:65;;36152:126;;;:::o;36284:77::-;36321:7;36350:5;36339:16;;36284:77;;;:::o;36367:154::-;36451:6;36446:3;36441;36428:30;36513:1;36504:6;36499:3;36495:16;36488:27;36367:154;;;:::o;36527:307::-;36595:1;36605:113;36619:6;36616:1;36613:13;36605:113;;;36704:1;36699:3;36695:11;36689:18;36685:1;36680:3;36676:11;36669:39;36641:2;36638:1;36634:10;36629:15;;36605:113;;;36736:6;36733:1;36730:13;36727:101;;;36816:1;36807:6;36802:3;36798:16;36791:27;36727:101;36576:258;36527:307;;;:::o;36840:320::-;36884:6;36921:1;36915:4;36911:12;36901:22;;36968:1;36962:4;36958:12;36989:18;36979:81;;37045:4;37037:6;37033:17;37023:27;;36979:81;37107:2;37099:6;37096:14;37076:18;37073:38;37070:84;;;37126:18;;:::i;:::-;37070:84;36891:269;36840:320;;;:::o;37166:281::-;37249:27;37271:4;37249:27;:::i;:::-;37241:6;37237:40;37379:6;37367:10;37364:22;37343:18;37331:10;37328:34;37325:62;37322:88;;;37390:18;;:::i;:::-;37322:88;37430:10;37426:2;37419:22;37209:238;37166:281;;:::o;37453:233::-;37492:3;37515:24;37533:5;37515:24;:::i;:::-;37506:33;;37561:66;37554:5;37551:77;37548:103;;;37631:18;;:::i;:::-;37548:103;37678:1;37671:5;37667:13;37660:20;;37453:233;;;:::o;37692:176::-;37724:1;37741:20;37759:1;37741:20;:::i;:::-;37736:25;;37775:20;37793:1;37775:20;:::i;:::-;37770:25;;37814:1;37804:35;;37819:18;;:::i;:::-;37804:35;37860:1;37857;37853:9;37848:14;;37692:176;;;;:::o;37874:180::-;37922:77;37919:1;37912:88;38019:4;38016:1;38009:15;38043:4;38040:1;38033:15;38060:180;38108:77;38105:1;38098:88;38205:4;38202:1;38195:15;38229:4;38226:1;38219:15;38246:180;38294:77;38291:1;38284:88;38391:4;38388:1;38381:15;38415:4;38412:1;38405:15;38432:180;38480:77;38477:1;38470:88;38577:4;38574:1;38567:15;38601:4;38598:1;38591:15;38618:180;38666:77;38663:1;38656:88;38763:4;38760:1;38753:15;38787:4;38784:1;38777:15;38804:117;38913:1;38910;38903:12;38927:117;39036:1;39033;39026:12;39050:117;39159:1;39156;39149:12;39173:117;39282:1;39279;39272:12;39296:117;39405:1;39402;39395:12;39419:102;39460:6;39511:2;39507:7;39502:2;39495:5;39491:14;39487:28;39477:38;;39419:102;;;:::o;39527:170::-;39667:22;39663:1;39655:6;39651:14;39644:46;39527:170;:::o;39703:178::-;39843:30;39839:1;39831:6;39827:14;39820:54;39703:178;:::o;39887:237::-;40027:34;40023:1;40015:6;40011:14;40004:58;40096:20;40091:2;40083:6;40079:15;40072:45;39887:237;:::o;40130:225::-;40270:34;40266:1;40258:6;40254:14;40247:58;40339:8;40334:2;40326:6;40322:15;40315:33;40130:225;:::o;40361:178::-;40501:30;40497:1;40489:6;40485:14;40478:54;40361:178;:::o;40545:233::-;40685:34;40681:1;40673:6;40669:14;40662:58;40754:16;40749:2;40741:6;40737:15;40730:41;40545:233;:::o;40784:223::-;40924:34;40920:1;40912:6;40908:14;40901:58;40993:6;40988:2;40980:6;40976:15;40969:31;40784:223;:::o;41013:175::-;41153:27;41149:1;41141:6;41137:14;41130:51;41013:175;:::o;41194:231::-;41334:34;41330:1;41322:6;41318:14;41311:58;41403:14;41398:2;41390:6;41386:15;41379:39;41194:231;:::o;41431:224::-;41571:34;41567:1;41559:6;41555:14;41548:58;41640:7;41635:2;41627:6;41623:15;41616:32;41431:224;:::o;41661:166::-;41801:18;41797:1;41789:6;41785:14;41778:42;41661:166;:::o;41833:243::-;41973:34;41969:1;41961:6;41957:14;41950:58;42042:26;42037:2;42029:6;42025:15;42018:51;41833:243;:::o;42082:229::-;42222:34;42218:1;42210:6;42206:14;42199:58;42291:12;42286:2;42278:6;42274:15;42267:37;42082:229;:::o;42317:228::-;42457:34;42453:1;42445:6;42441:14;42434:58;42526:11;42521:2;42513:6;42509:15;42502:36;42317:228;:::o;42551:174::-;42691:26;42687:1;42679:6;42675:14;42668:50;42551:174;:::o;42731:182::-;42871:34;42867:1;42859:6;42855:14;42848:58;42731:182;:::o;42919:231::-;43059:34;43055:1;43047:6;43043:14;43036:58;43128:14;43123:2;43115:6;43111:15;43104:39;42919:231;:::o;43156:182::-;43296:34;43292:1;43284:6;43280:14;43273:58;43156:182;:::o;43344:233::-;43484:34;43480:1;43472:6;43468:14;43461:58;43553:16;43548:2;43540:6;43536:15;43529:41;43344:233;:::o;43583:228::-;43723:34;43719:1;43711:6;43707:14;43700:58;43792:11;43787:2;43779:6;43775:15;43768:36;43583:228;:::o;43817:234::-;43957:34;43953:1;43945:6;43941:14;43934:58;44026:17;44021:2;44013:6;44009:15;44002:42;43817:234;:::o;44057:220::-;44197:34;44193:1;44185:6;44181:14;44174:58;44266:3;44261:2;44253:6;44249:15;44242:28;44057:220;:::o;44283:236::-;44423:34;44419:1;44411:6;44407:14;44400:58;44492:19;44487:2;44479:6;44475:15;44468:44;44283:236;:::o;44525:166::-;44665:18;44661:1;44653:6;44649:14;44642:42;44525:166;:::o;44697:122::-;44770:24;44788:5;44770:24;:::i;:::-;44763:5;44760:35;44750:63;;44809:1;44806;44799:12;44750:63;44697:122;:::o;44825:116::-;44895:21;44910:5;44895:21;:::i;:::-;44888:5;44885:32;44875:60;;44931:1;44928;44921:12;44875:60;44825:116;:::o;44947:120::-;45019:23;45036:5;45019:23;:::i;:::-;45012:5;45009:34;44999:62;;45057:1;45054;45047:12;44999:62;44947:120;:::o;45073:122::-;45146:24;45164:5;45146:24;:::i;:::-;45139:5;45136:35;45126:63;;45185:1;45182;45175:12;45126:63;45073:122;:::o

Swarm Source

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