ETH Price: $3,172.52 (-8.32%)
Gas: 3 Gwei

Token

ChildrenOfAsuna (COA)
 

Overview

Max Total Supply

1,104 COA

Holders

180

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
kingsuhas.eth
Balance
5 COA
0xb93ff2883c27734fdde671828e6db55541d75fe2
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:
ChildrenOfAsuna

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-27
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


// OpenZeppelin Contracts v4.4.1 (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.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.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);

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

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/ChildrenOfAsuna.sol



pragma solidity >=0.8.9 <0.9.0;





contract ChildrenOfAsuna is ERC721, Ownable, ReentrancyGuard {

  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.015 ether;
  uint256 public maxSupply = 2500;
  uint256 public maxMintAmountPerTx = 10;

  bool public revealed = false;
  bool public paused = false;

  constructor() ERC721("ChildrenOfAsuna", "COA") {
    setHiddenMetadataUri("ipfs://QmRpZ2QTdbyjSAs7fCkseC2wiePhfd3ddoXEYyGHT13qAA/hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    if (supply.current()+_mintAmount >= 500){
      require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    }
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }


  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");

    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token" 
    );
    if (revealed == false) {
        return hiddenMetadataUri;
      }
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }


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

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

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

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

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

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

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

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

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600990805190602001906200002b9291906200036f565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000799291906200036f565b5066354a6ba7a18000600c556109c4600d55600a600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff021916908315150217905550348015620000d357600080fd5b506040518060400160405280600f81526020017f4368696c6472656e4f664173756e6100000000000000000000000000000000008152506040518060400160405280600381526020017f434f4100000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001589291906200036f565b508060019080519060200190620001719291906200036f565b5050506200019462000188620001cc60201b60201c565b620001d460201b60201c565b6001600781905550620001c6604051806080016040528060418152602001620047e5604191396200029a60201b60201c565b62000507565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002aa620001cc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002d06200034560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000329576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003209062000480565b60405180910390fd5b80600b9080519060200190620003419291906200036f565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200037d90620004d1565b90600052602060002090601f016020900481019282620003a15760008555620003ed565b82601f10620003bc57805160ff1916838001178555620003ed565b82800160010185558215620003ed579182015b82811115620003ec578251825591602001919060010190620003cf565b5b509050620003fc919062000400565b5090565b5b808211156200041b57600081600090555060010162000401565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620004686020836200041f565b9150620004758262000430565b602082019050919050565b600060208201905081810360008301526200049b8162000459565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004ea57607f821691505b60208210811415620005015762000500620004a2565b5b50919050565b6142ce80620005176000396000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb0114610768578063e0a8085314610793578063e985e9c5146107bc578063efbd73f4146107f9578063f2fde38b146108225761020f565b8063a45ba8e7146106ae578063b071401b146106d9578063b88d4fde14610702578063c87b56dd1461072b5761020f565b80638da5cb5b116100e75780638da5cb5b146105e857806394354fd01461061357806395d89b411461063e578063a0712d6814610669578063a22cb465146106855761020f565b80636352211e1461052e57806370a082311461056b578063715018a6146105a85780637ec4a659146105bf5761020f565b80633ccfd60b1161019b5780634fdd43cb1161016a5780634fdd43cb1461045957806351830227146104825780635503a0e8146104ad5780635c975abb146104d857806362b99ad4146105035761020f565b80633ccfd60b146103b357806342842e0e146103ca578063438b6300146103f357806344a0d68a146104305761020f565b806313faede6116101e257806313faede6146102e257806316ba10e01461030d57806316c38b3c1461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612bbf565b61084b565b6040516102489190612c07565b60405180910390f35b34801561025d57600080fd5b5061026661092d565b6040516102739190612cbb565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612d13565b6109bf565b6040516102b09190612d81565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612dc8565b610a44565b005b3480156102ee57600080fd5b506102f7610b5c565b6040516103049190612e17565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612f67565b610b62565b005b34801561034257600080fd5b5061035d60048036038101906103589190612fdc565b610bf8565b005b34801561036b57600080fd5b50610374610c91565b6040516103819190612e17565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190613009565b610ca2565b005b3480156103bf57600080fd5b506103c8610d02565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190613009565b610e54565b005b3480156103ff57600080fd5b5061041a6004803603810190610415919061305c565b610e74565b6040516104279190613147565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612d13565b610f7f565b005b34801561046557600080fd5b50610480600480360381019061047b9190612f67565b611005565b005b34801561048e57600080fd5b5061049761109b565b6040516104a49190612c07565b60405180910390f35b3480156104b957600080fd5b506104c26110ae565b6040516104cf9190612cbb565b60405180910390f35b3480156104e457600080fd5b506104ed61113c565b6040516104fa9190612c07565b60405180910390f35b34801561050f57600080fd5b5061051861114f565b6040516105259190612cbb565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190612d13565b6111dd565b6040516105629190612d81565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d919061305c565b61128f565b60405161059f9190612e17565b60405180910390f35b3480156105b457600080fd5b506105bd611347565b005b3480156105cb57600080fd5b506105e660048036038101906105e19190612f67565b6113cf565b005b3480156105f457600080fd5b506105fd611465565b60405161060a9190612d81565b60405180910390f35b34801561061f57600080fd5b5061062861148f565b6040516106359190612e17565b60405180910390f35b34801561064a57600080fd5b50610653611495565b6040516106609190612cbb565b60405180910390f35b610683600480360381019061067e9190612d13565b611527565b005b34801561069157600080fd5b506106ac60048036038101906106a79190613169565b6116a0565b005b3480156106ba57600080fd5b506106c36116b6565b6040516106d09190612cbb565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190612d13565b611744565b005b34801561070e57600080fd5b506107296004803603810190610724919061324a565b6117ca565b005b34801561073757600080fd5b50610752600480360381019061074d9190612d13565b61182c565b60405161075f9190612cbb565b60405180910390f35b34801561077457600080fd5b5061077d611985565b60405161078a9190612e17565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190612fdc565b61198b565b005b3480156107c857600080fd5b506107e360048036038101906107de91906132cd565b611a24565b6040516107f09190612c07565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b919061330d565b611ab8565b005b34801561082e57600080fd5b506108496004803603810190610844919061305c565b611bee565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610926575061092582611ce6565b5b9050919050565b60606000805461093c9061337c565b80601f01602080910402602001604051908101604052809291908181526020018280546109689061337c565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b60006109ca82611d50565b610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0090613420565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4f826111dd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab7906134b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610adf611dbc565b73ffffffffffffffffffffffffffffffffffffffff161480610b0e5750610b0d81610b08611dbc565b611a24565b5b610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490613544565b60405180910390fd5b610b578383611dc4565b505050565b600c5481565b610b6a611dbc565b73ffffffffffffffffffffffffffffffffffffffff16610b88611465565b73ffffffffffffffffffffffffffffffffffffffff1614610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd5906135b0565b60405180910390fd5b80600a9080519060200190610bf4929190612ab0565b5050565b610c00611dbc565b73ffffffffffffffffffffffffffffffffffffffff16610c1e611465565b73ffffffffffffffffffffffffffffffffffffffff1614610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b906135b0565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000610c9d6008611e7d565b905090565b610cb3610cad611dbc565b82611e8b565b610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990613642565b60405180910390fd5b610cfd838383611f69565b505050565b610d0a611dbc565b73ffffffffffffffffffffffffffffffffffffffff16610d28611465565b73ffffffffffffffffffffffffffffffffffffffff1614610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d75906135b0565b60405180910390fd5b60026007541415610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb906136ae565b60405180910390fd5b60026007819055506000610dd6611465565b73ffffffffffffffffffffffffffffffffffffffff1647604051610df9906136ff565b60006040518083038185875af1925050503d8060008114610e36576040519150601f19603f3d011682016040523d82523d6000602084013e610e3b565b606091505b5050905080610e4957600080fd5b506001600781905550565b610e6f838383604051806020016040528060008152506117ca565b505050565b60606000610e818361128f565b905060008167ffffffffffffffff811115610e9f57610e9e612e3c565b5b604051908082528060200260200182016040528015610ecd5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610eea5750600d548211155b15610f73576000610efa836111dd565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f5f5782848381518110610f4457610f43613714565b5b6020026020010181815250508180610f5b90613772565b9250505b8280610f6a90613772565b93505050610ed9565b82945050505050919050565b610f87611dbc565b73ffffffffffffffffffffffffffffffffffffffff16610fa5611465565b73ffffffffffffffffffffffffffffffffffffffff1614610ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff2906135b0565b60405180910390fd5b80600c8190555050565b61100d611dbc565b73ffffffffffffffffffffffffffffffffffffffff1661102b611465565b73ffffffffffffffffffffffffffffffffffffffff1614611081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611078906135b0565b60405180910390fd5b80600b9080519060200190611097929190612ab0565b5050565b600f60009054906101000a900460ff1681565b600a80546110bb9061337c565b80601f01602080910402602001604051908101604052809291908181526020018280546110e79061337c565b80156111345780601f1061110957610100808354040283529160200191611134565b820191906000526020600020905b81548152906001019060200180831161111757829003601f168201915b505050505081565b600f60019054906101000a900460ff1681565b6009805461115c9061337c565b80601f01602080910402602001604051908101604052809291908181526020018280546111889061337c565b80156111d55780601f106111aa576101008083540402835291602001916111d5565b820191906000526020600020905b8154815290600101906020018083116111b857829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d9061382d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f7906138bf565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61134f611dbc565b73ffffffffffffffffffffffffffffffffffffffff1661136d611465565b73ffffffffffffffffffffffffffffffffffffffff16146113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba906135b0565b60405180910390fd5b6113cd60006121d0565b565b6113d7611dbc565b73ffffffffffffffffffffffffffffffffffffffff166113f5611465565b73ffffffffffffffffffffffffffffffffffffffff161461144b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611442906135b0565b60405180910390fd5b8060099080519060200190611461929190612ab0565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600180546114a49061337c565b80601f01602080910402602001604051908101604052809291908181526020018280546114d09061337c565b801561151d5780601f106114f25761010080835404028352916020019161151d565b820191906000526020600020905b81548152906001019060200180831161150057829003601f168201915b5050505050905090565b8060008111801561153a5750600e548111155b611579576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115709061392b565b60405180910390fd5b600d54816115876008611e7d565b611591919061394b565b11156115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c9906139ed565b60405180910390fd5b816101f4816115e16008611e7d565b6115eb919061394b565b106116415780600c546115fe9190613a0d565b341015611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790613ab3565b60405180910390fd5b5b600f60019054906101000a900460ff1615611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613b1f565b60405180910390fd5b61169b3384612296565b505050565b6116b26116ab611dbc565b83836122d6565b5050565b600b80546116c39061337c565b80601f01602080910402602001604051908101604052809291908181526020018280546116ef9061337c565b801561173c5780601f106117115761010080835404028352916020019161173c565b820191906000526020600020905b81548152906001019060200180831161171f57829003601f168201915b505050505081565b61174c611dbc565b73ffffffffffffffffffffffffffffffffffffffff1661176a611465565b73ffffffffffffffffffffffffffffffffffffffff16146117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b7906135b0565b60405180910390fd5b80600e8190555050565b6117db6117d5611dbc565b83611e8b565b61181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190613642565b60405180910390fd5b61182684848484612443565b50505050565b606061183782611d50565b611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d90613bb1565b60405180910390fd5b60001515600f60009054906101000a900460ff161515141561192457600b805461189f9061337c565b80601f01602080910402602001604051908101604052809291908181526020018280546118cb9061337c565b80156119185780601f106118ed57610100808354040283529160200191611918565b820191906000526020600020905b8154815290600101906020018083116118fb57829003601f168201915b50505050509050611980565b600061192e61249f565b9050600081511161194e576040518060200160405280600081525061197c565b8061195884612531565b600a60405160200161196c93929190613ca1565b6040516020818303038152906040525b9150505b919050565b600d5481565b611993611dbc565b73ffffffffffffffffffffffffffffffffffffffff166119b1611465565b73ffffffffffffffffffffffffffffffffffffffff1614611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe906135b0565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611acb5750600e548111155b611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b019061392b565b60405180910390fd5b600d5481611b186008611e7d565b611b22919061394b565b1115611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a906139ed565b60405180910390fd5b611b6b611dbc565b73ffffffffffffffffffffffffffffffffffffffff16611b89611465565b73ffffffffffffffffffffffffffffffffffffffff1614611bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd6906135b0565b60405180910390fd5b611be98284612296565b505050565b611bf6611dbc565b73ffffffffffffffffffffffffffffffffffffffff16611c14611465565b73ffffffffffffffffffffffffffffffffffffffff1614611c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c61906135b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd190613d44565b60405180910390fd5b611ce3816121d0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e37836111dd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611e9682611d50565b611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc90613dd6565b60405180910390fd5b6000611ee0836111dd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f4f57508373ffffffffffffffffffffffffffffffffffffffff16611f37846109bf565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f605750611f5f8185611a24565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f89826111dd565b73ffffffffffffffffffffffffffffffffffffffff1614611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd690613e68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561204f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204690613efa565b60405180910390fd5b61205a838383612692565b612065600082611dc4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120b59190613f1a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461210c919061394b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121cb838383612697565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156122d1576122ab600861269c565b6122be836122b96008611e7d565b6126b2565b80806122c990613772565b915050612299565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233c90613f9a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124369190612c07565b60405180910390a3505050565b61244e848484611f69565b61245a848484846126d0565b612499576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124909061402c565b60405180910390fd5b50505050565b6060600980546124ae9061337c565b80601f01602080910402602001604051908101604052809291908181526020018280546124da9061337c565b80156125275780601f106124fc57610100808354040283529160200191612527565b820191906000526020600020905b81548152906001019060200180831161250a57829003601f168201915b5050505050905090565b60606000821415612579576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061268d565b600082905060005b600082146125ab57808061259490613772565b915050600a826125a4919061407b565b9150612581565b60008167ffffffffffffffff8111156125c7576125c6612e3c565b5b6040519080825280601f01601f1916602001820160405280156125f95781602001600182028036833780820191505090505b5090505b60008514612686576001826126129190613f1a565b9150600a8561262191906140ac565b603061262d919061394b565b60f81b81838151811061264357612642613714565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561267f919061407b565b94506125fd565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6126cc828260405180602001604052806000815250612858565b5050565b60006126f18473ffffffffffffffffffffffffffffffffffffffff166128b3565b1561284b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261271a611dbc565b8786866040518563ffffffff1660e01b815260040161273c9493929190614132565b6020604051808303816000875af192505050801561277857506040513d601f19601f820116820180604052508101906127759190614193565b60015b6127fb573d80600081146127a8576040519150601f19603f3d011682016040523d82523d6000602084013e6127ad565b606091505b506000815114156127f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ea9061402c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612850565b600190505b949350505050565b61286283836128d6565b61286f60008484846126d0565b6128ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a59061402c565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293d9061420c565b60405180910390fd5b61294f81611d50565b1561298f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298690614278565b60405180910390fd5b61299b60008383612692565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129eb919061394b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612aac60008383612697565b5050565b828054612abc9061337c565b90600052602060002090601f016020900481019282612ade5760008555612b25565b82601f10612af757805160ff1916838001178555612b25565b82800160010185558215612b25579182015b82811115612b24578251825591602001919060010190612b09565b5b509050612b329190612b36565b5090565b5b80821115612b4f576000816000905550600101612b37565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b9c81612b67565b8114612ba757600080fd5b50565b600081359050612bb981612b93565b92915050565b600060208284031215612bd557612bd4612b5d565b5b6000612be384828501612baa565b91505092915050565b60008115159050919050565b612c0181612bec565b82525050565b6000602082019050612c1c6000830184612bf8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c5c578082015181840152602081019050612c41565b83811115612c6b576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c8d82612c22565b612c978185612c2d565b9350612ca7818560208601612c3e565b612cb081612c71565b840191505092915050565b60006020820190508181036000830152612cd58184612c82565b905092915050565b6000819050919050565b612cf081612cdd565b8114612cfb57600080fd5b50565b600081359050612d0d81612ce7565b92915050565b600060208284031215612d2957612d28612b5d565b5b6000612d3784828501612cfe565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d6b82612d40565b9050919050565b612d7b81612d60565b82525050565b6000602082019050612d966000830184612d72565b92915050565b612da581612d60565b8114612db057600080fd5b50565b600081359050612dc281612d9c565b92915050565b60008060408385031215612ddf57612dde612b5d565b5b6000612ded85828601612db3565b9250506020612dfe85828601612cfe565b9150509250929050565b612e1181612cdd565b82525050565b6000602082019050612e2c6000830184612e08565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e7482612c71565b810181811067ffffffffffffffff82111715612e9357612e92612e3c565b5b80604052505050565b6000612ea6612b53565b9050612eb28282612e6b565b919050565b600067ffffffffffffffff821115612ed257612ed1612e3c565b5b612edb82612c71565b9050602081019050919050565b82818337600083830152505050565b6000612f0a612f0584612eb7565b612e9c565b905082815260208101848484011115612f2657612f25612e37565b5b612f31848285612ee8565b509392505050565b600082601f830112612f4e57612f4d612e32565b5b8135612f5e848260208601612ef7565b91505092915050565b600060208284031215612f7d57612f7c612b5d565b5b600082013567ffffffffffffffff811115612f9b57612f9a612b62565b5b612fa784828501612f39565b91505092915050565b612fb981612bec565b8114612fc457600080fd5b50565b600081359050612fd681612fb0565b92915050565b600060208284031215612ff257612ff1612b5d565b5b600061300084828501612fc7565b91505092915050565b60008060006060848603121561302257613021612b5d565b5b600061303086828701612db3565b935050602061304186828701612db3565b925050604061305286828701612cfe565b9150509250925092565b60006020828403121561307257613071612b5d565b5b600061308084828501612db3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130be81612cdd565b82525050565b60006130d083836130b5565b60208301905092915050565b6000602082019050919050565b60006130f482613089565b6130fe8185613094565b9350613109836130a5565b8060005b8381101561313a57815161312188826130c4565b975061312c836130dc565b92505060018101905061310d565b5085935050505092915050565b6000602082019050818103600083015261316181846130e9565b905092915050565b600080604083850312156131805761317f612b5d565b5b600061318e85828601612db3565b925050602061319f85828601612fc7565b9150509250929050565b600067ffffffffffffffff8211156131c4576131c3612e3c565b5b6131cd82612c71565b9050602081019050919050565b60006131ed6131e8846131a9565b612e9c565b90508281526020810184848401111561320957613208612e37565b5b613214848285612ee8565b509392505050565b600082601f83011261323157613230612e32565b5b81356132418482602086016131da565b91505092915050565b6000806000806080858703121561326457613263612b5d565b5b600061327287828801612db3565b945050602061328387828801612db3565b935050604061329487828801612cfe565b925050606085013567ffffffffffffffff8111156132b5576132b4612b62565b5b6132c18782880161321c565b91505092959194509250565b600080604083850312156132e4576132e3612b5d565b5b60006132f285828601612db3565b925050602061330385828601612db3565b9150509250929050565b6000806040838503121561332457613323612b5d565b5b600061333285828601612cfe565b925050602061334385828601612db3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061339457607f821691505b602082108114156133a8576133a761334d565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061340a602c83612c2d565b9150613415826133ae565b604082019050919050565b60006020820190508181036000830152613439816133fd565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061349c602183612c2d565b91506134a782613440565b604082019050919050565b600060208201905081810360008301526134cb8161348f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061352e603883612c2d565b9150613539826134d2565b604082019050919050565b6000602082019050818103600083015261355d81613521565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061359a602083612c2d565b91506135a582613564565b602082019050919050565b600060208201905081810360008301526135c98161358d565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061362c603183612c2d565b9150613637826135d0565b604082019050919050565b6000602082019050818103600083015261365b8161361f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613698601f83612c2d565b91506136a382613662565b602082019050919050565b600060208201905081810360008301526136c78161368b565b9050919050565b600081905092915050565b50565b60006136e96000836136ce565b91506136f4826136d9565b600082019050919050565b600061370a826136dc565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061377d82612cdd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137b0576137af613743565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613817602983612c2d565b9150613822826137bb565b604082019050919050565b600060208201905081810360008301526138468161380a565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006138a9602a83612c2d565b91506138b48261384d565b604082019050919050565b600060208201905081810360008301526138d88161389c565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613915601483612c2d565b9150613920826138df565b602082019050919050565b6000602082019050818103600083015261394481613908565b9050919050565b600061395682612cdd565b915061396183612cdd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561399657613995613743565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006139d7601483612c2d565b91506139e2826139a1565b602082019050919050565b60006020820190508181036000830152613a06816139ca565b9050919050565b6000613a1882612cdd565b9150613a2383612cdd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a5c57613a5b613743565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613a9d601383612c2d565b9150613aa882613a67565b602082019050919050565b60006020820190508181036000830152613acc81613a90565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613b09601783612c2d565b9150613b1482613ad3565b602082019050919050565b60006020820190508181036000830152613b3881613afc565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613b9b602f83612c2d565b9150613ba682613b3f565b604082019050919050565b60006020820190508181036000830152613bca81613b8e565b9050919050565b600081905092915050565b6000613be782612c22565b613bf18185613bd1565b9350613c01818560208601612c3e565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613c2f8161337c565b613c398186613bd1565b94506001821660008114613c545760018114613c6557613c98565b60ff19831686528186019350613c98565b613c6e85613c0d565b60005b83811015613c9057815481890152600182019150602081019050613c71565b838801955050505b50505092915050565b6000613cad8286613bdc565b9150613cb98285613bdc565b9150613cc58284613c22565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d2e602683612c2d565b9150613d3982613cd2565b604082019050919050565b60006020820190508181036000830152613d5d81613d21565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613dc0602c83612c2d565b9150613dcb82613d64565b604082019050919050565b60006020820190508181036000830152613def81613db3565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613e52602583612c2d565b9150613e5d82613df6565b604082019050919050565b60006020820190508181036000830152613e8181613e45565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ee4602483612c2d565b9150613eef82613e88565b604082019050919050565b60006020820190508181036000830152613f1381613ed7565b9050919050565b6000613f2582612cdd565b9150613f3083612cdd565b925082821015613f4357613f42613743565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613f84601983612c2d565b9150613f8f82613f4e565b602082019050919050565b60006020820190508181036000830152613fb381613f77565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614016603283612c2d565b915061402182613fba565b604082019050919050565b6000602082019050818103600083015261404581614009565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061408682612cdd565b915061409183612cdd565b9250826140a1576140a061404c565b5b828204905092915050565b60006140b782612cdd565b91506140c283612cdd565b9250826140d2576140d161404c565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614104826140dd565b61410e81856140e8565b935061411e818560208601612c3e565b61412781612c71565b840191505092915050565b60006080820190506141476000830187612d72565b6141546020830186612d72565b6141616040830185612e08565b818103606083015261417381846140f9565b905095945050505050565b60008151905061418d81612b93565b92915050565b6000602082840312156141a9576141a8612b5d565b5b60006141b78482850161417e565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006141f6602083612c2d565b9150614201826141c0565b602082019050919050565b60006020820190508181036000830152614225816141e9565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614262601c83612c2d565b915061426d8261422c565b602082019050919050565b6000602082019050818103600083015261429181614255565b905091905056fea2646970667358221220f4252856cd9fdab40c8a8623c4087b338fc2e81c75cceba1c5dff6a5ed17e7fc64736f6c634300080c0033697066733a2f2f516d52705a3251546462796a5341733766436b73654332776965506866643364646f5845597947485431337141412f68696464656e2e6a736f6e

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636352211e11610118578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb0114610768578063e0a8085314610793578063e985e9c5146107bc578063efbd73f4146107f9578063f2fde38b146108225761020f565b8063a45ba8e7146106ae578063b071401b146106d9578063b88d4fde14610702578063c87b56dd1461072b5761020f565b80638da5cb5b116100e75780638da5cb5b146105e857806394354fd01461061357806395d89b411461063e578063a0712d6814610669578063a22cb465146106855761020f565b80636352211e1461052e57806370a082311461056b578063715018a6146105a85780637ec4a659146105bf5761020f565b80633ccfd60b1161019b5780634fdd43cb1161016a5780634fdd43cb1461045957806351830227146104825780635503a0e8146104ad5780635c975abb146104d857806362b99ad4146105035761020f565b80633ccfd60b146103b357806342842e0e146103ca578063438b6300146103f357806344a0d68a146104305761020f565b806313faede6116101e257806313faede6146102e257806316ba10e01461030d57806316c38b3c1461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612bbf565b61084b565b6040516102489190612c07565b60405180910390f35b34801561025d57600080fd5b5061026661092d565b6040516102739190612cbb565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612d13565b6109bf565b6040516102b09190612d81565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612dc8565b610a44565b005b3480156102ee57600080fd5b506102f7610b5c565b6040516103049190612e17565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612f67565b610b62565b005b34801561034257600080fd5b5061035d60048036038101906103589190612fdc565b610bf8565b005b34801561036b57600080fd5b50610374610c91565b6040516103819190612e17565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190613009565b610ca2565b005b3480156103bf57600080fd5b506103c8610d02565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190613009565b610e54565b005b3480156103ff57600080fd5b5061041a6004803603810190610415919061305c565b610e74565b6040516104279190613147565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612d13565b610f7f565b005b34801561046557600080fd5b50610480600480360381019061047b9190612f67565b611005565b005b34801561048e57600080fd5b5061049761109b565b6040516104a49190612c07565b60405180910390f35b3480156104b957600080fd5b506104c26110ae565b6040516104cf9190612cbb565b60405180910390f35b3480156104e457600080fd5b506104ed61113c565b6040516104fa9190612c07565b60405180910390f35b34801561050f57600080fd5b5061051861114f565b6040516105259190612cbb565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190612d13565b6111dd565b6040516105629190612d81565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d919061305c565b61128f565b60405161059f9190612e17565b60405180910390f35b3480156105b457600080fd5b506105bd611347565b005b3480156105cb57600080fd5b506105e660048036038101906105e19190612f67565b6113cf565b005b3480156105f457600080fd5b506105fd611465565b60405161060a9190612d81565b60405180910390f35b34801561061f57600080fd5b5061062861148f565b6040516106359190612e17565b60405180910390f35b34801561064a57600080fd5b50610653611495565b6040516106609190612cbb565b60405180910390f35b610683600480360381019061067e9190612d13565b611527565b005b34801561069157600080fd5b506106ac60048036038101906106a79190613169565b6116a0565b005b3480156106ba57600080fd5b506106c36116b6565b6040516106d09190612cbb565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190612d13565b611744565b005b34801561070e57600080fd5b506107296004803603810190610724919061324a565b6117ca565b005b34801561073757600080fd5b50610752600480360381019061074d9190612d13565b61182c565b60405161075f9190612cbb565b60405180910390f35b34801561077457600080fd5b5061077d611985565b60405161078a9190612e17565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190612fdc565b61198b565b005b3480156107c857600080fd5b506107e360048036038101906107de91906132cd565b611a24565b6040516107f09190612c07565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b919061330d565b611ab8565b005b34801561082e57600080fd5b506108496004803603810190610844919061305c565b611bee565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610926575061092582611ce6565b5b9050919050565b60606000805461093c9061337c565b80601f01602080910402602001604051908101604052809291908181526020018280546109689061337c565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b60006109ca82611d50565b610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0090613420565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4f826111dd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab7906134b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610adf611dbc565b73ffffffffffffffffffffffffffffffffffffffff161480610b0e5750610b0d81610b08611dbc565b611a24565b5b610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490613544565b60405180910390fd5b610b578383611dc4565b505050565b600c5481565b610b6a611dbc565b73ffffffffffffffffffffffffffffffffffffffff16610b88611465565b73ffffffffffffffffffffffffffffffffffffffff1614610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd5906135b0565b60405180910390fd5b80600a9080519060200190610bf4929190612ab0565b5050565b610c00611dbc565b73ffffffffffffffffffffffffffffffffffffffff16610c1e611465565b73ffffffffffffffffffffffffffffffffffffffff1614610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b906135b0565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000610c9d6008611e7d565b905090565b610cb3610cad611dbc565b82611e8b565b610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990613642565b60405180910390fd5b610cfd838383611f69565b505050565b610d0a611dbc565b73ffffffffffffffffffffffffffffffffffffffff16610d28611465565b73ffffffffffffffffffffffffffffffffffffffff1614610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d75906135b0565b60405180910390fd5b60026007541415610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb906136ae565b60405180910390fd5b60026007819055506000610dd6611465565b73ffffffffffffffffffffffffffffffffffffffff1647604051610df9906136ff565b60006040518083038185875af1925050503d8060008114610e36576040519150601f19603f3d011682016040523d82523d6000602084013e610e3b565b606091505b5050905080610e4957600080fd5b506001600781905550565b610e6f838383604051806020016040528060008152506117ca565b505050565b60606000610e818361128f565b905060008167ffffffffffffffff811115610e9f57610e9e612e3c565b5b604051908082528060200260200182016040528015610ecd5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610eea5750600d548211155b15610f73576000610efa836111dd565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f5f5782848381518110610f4457610f43613714565b5b6020026020010181815250508180610f5b90613772565b9250505b8280610f6a90613772565b93505050610ed9565b82945050505050919050565b610f87611dbc565b73ffffffffffffffffffffffffffffffffffffffff16610fa5611465565b73ffffffffffffffffffffffffffffffffffffffff1614610ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff2906135b0565b60405180910390fd5b80600c8190555050565b61100d611dbc565b73ffffffffffffffffffffffffffffffffffffffff1661102b611465565b73ffffffffffffffffffffffffffffffffffffffff1614611081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611078906135b0565b60405180910390fd5b80600b9080519060200190611097929190612ab0565b5050565b600f60009054906101000a900460ff1681565b600a80546110bb9061337c565b80601f01602080910402602001604051908101604052809291908181526020018280546110e79061337c565b80156111345780601f1061110957610100808354040283529160200191611134565b820191906000526020600020905b81548152906001019060200180831161111757829003601f168201915b505050505081565b600f60019054906101000a900460ff1681565b6009805461115c9061337c565b80601f01602080910402602001604051908101604052809291908181526020018280546111889061337c565b80156111d55780601f106111aa576101008083540402835291602001916111d5565b820191906000526020600020905b8154815290600101906020018083116111b857829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d9061382d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f7906138bf565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61134f611dbc565b73ffffffffffffffffffffffffffffffffffffffff1661136d611465565b73ffffffffffffffffffffffffffffffffffffffff16146113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba906135b0565b60405180910390fd5b6113cd60006121d0565b565b6113d7611dbc565b73ffffffffffffffffffffffffffffffffffffffff166113f5611465565b73ffffffffffffffffffffffffffffffffffffffff161461144b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611442906135b0565b60405180910390fd5b8060099080519060200190611461929190612ab0565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600180546114a49061337c565b80601f01602080910402602001604051908101604052809291908181526020018280546114d09061337c565b801561151d5780601f106114f25761010080835404028352916020019161151d565b820191906000526020600020905b81548152906001019060200180831161150057829003601f168201915b5050505050905090565b8060008111801561153a5750600e548111155b611579576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115709061392b565b60405180910390fd5b600d54816115876008611e7d565b611591919061394b565b11156115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c9906139ed565b60405180910390fd5b816101f4816115e16008611e7d565b6115eb919061394b565b106116415780600c546115fe9190613a0d565b341015611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790613ab3565b60405180910390fd5b5b600f60019054906101000a900460ff1615611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613b1f565b60405180910390fd5b61169b3384612296565b505050565b6116b26116ab611dbc565b83836122d6565b5050565b600b80546116c39061337c565b80601f01602080910402602001604051908101604052809291908181526020018280546116ef9061337c565b801561173c5780601f106117115761010080835404028352916020019161173c565b820191906000526020600020905b81548152906001019060200180831161171f57829003601f168201915b505050505081565b61174c611dbc565b73ffffffffffffffffffffffffffffffffffffffff1661176a611465565b73ffffffffffffffffffffffffffffffffffffffff16146117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b7906135b0565b60405180910390fd5b80600e8190555050565b6117db6117d5611dbc565b83611e8b565b61181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190613642565b60405180910390fd5b61182684848484612443565b50505050565b606061183782611d50565b611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d90613bb1565b60405180910390fd5b60001515600f60009054906101000a900460ff161515141561192457600b805461189f9061337c565b80601f01602080910402602001604051908101604052809291908181526020018280546118cb9061337c565b80156119185780601f106118ed57610100808354040283529160200191611918565b820191906000526020600020905b8154815290600101906020018083116118fb57829003601f168201915b50505050509050611980565b600061192e61249f565b9050600081511161194e576040518060200160405280600081525061197c565b8061195884612531565b600a60405160200161196c93929190613ca1565b6040516020818303038152906040525b9150505b919050565b600d5481565b611993611dbc565b73ffffffffffffffffffffffffffffffffffffffff166119b1611465565b73ffffffffffffffffffffffffffffffffffffffff1614611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe906135b0565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611acb5750600e548111155b611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b019061392b565b60405180910390fd5b600d5481611b186008611e7d565b611b22919061394b565b1115611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a906139ed565b60405180910390fd5b611b6b611dbc565b73ffffffffffffffffffffffffffffffffffffffff16611b89611465565b73ffffffffffffffffffffffffffffffffffffffff1614611bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd6906135b0565b60405180910390fd5b611be98284612296565b505050565b611bf6611dbc565b73ffffffffffffffffffffffffffffffffffffffff16611c14611465565b73ffffffffffffffffffffffffffffffffffffffff1614611c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c61906135b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd190613d44565b60405180910390fd5b611ce3816121d0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e37836111dd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611e9682611d50565b611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc90613dd6565b60405180910390fd5b6000611ee0836111dd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f4f57508373ffffffffffffffffffffffffffffffffffffffff16611f37846109bf565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f605750611f5f8185611a24565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f89826111dd565b73ffffffffffffffffffffffffffffffffffffffff1614611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd690613e68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561204f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204690613efa565b60405180910390fd5b61205a838383612692565b612065600082611dc4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120b59190613f1a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461210c919061394b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121cb838383612697565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156122d1576122ab600861269c565b6122be836122b96008611e7d565b6126b2565b80806122c990613772565b915050612299565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233c90613f9a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124369190612c07565b60405180910390a3505050565b61244e848484611f69565b61245a848484846126d0565b612499576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124909061402c565b60405180910390fd5b50505050565b6060600980546124ae9061337c565b80601f01602080910402602001604051908101604052809291908181526020018280546124da9061337c565b80156125275780601f106124fc57610100808354040283529160200191612527565b820191906000526020600020905b81548152906001019060200180831161250a57829003601f168201915b5050505050905090565b60606000821415612579576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061268d565b600082905060005b600082146125ab57808061259490613772565b915050600a826125a4919061407b565b9150612581565b60008167ffffffffffffffff8111156125c7576125c6612e3c565b5b6040519080825280601f01601f1916602001820160405280156125f95781602001600182028036833780820191505090505b5090505b60008514612686576001826126129190613f1a565b9150600a8561262191906140ac565b603061262d919061394b565b60f81b81838151811061264357612642613714565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561267f919061407b565b94506125fd565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6126cc828260405180602001604052806000815250612858565b5050565b60006126f18473ffffffffffffffffffffffffffffffffffffffff166128b3565b1561284b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261271a611dbc565b8786866040518563ffffffff1660e01b815260040161273c9493929190614132565b6020604051808303816000875af192505050801561277857506040513d601f19601f820116820180604052508101906127759190614193565b60015b6127fb573d80600081146127a8576040519150601f19603f3d011682016040523d82523d6000602084013e6127ad565b606091505b506000815114156127f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ea9061402c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612850565b600190505b949350505050565b61286283836128d6565b61286f60008484846126d0565b6128ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a59061402c565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293d9061420c565b60405180910390fd5b61294f81611d50565b1561298f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298690614278565b60405180910390fd5b61299b60008383612692565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129eb919061394b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612aac60008383612697565b5050565b828054612abc9061337c565b90600052602060002090601f016020900481019282612ade5760008555612b25565b82601f10612af757805160ff1916838001178555612b25565b82800160010185558215612b25579182015b82811115612b24578251825591602001919060010190612b09565b5b509050612b329190612b36565b5090565b5b80821115612b4f576000816000905550600101612b37565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b9c81612b67565b8114612ba757600080fd5b50565b600081359050612bb981612b93565b92915050565b600060208284031215612bd557612bd4612b5d565b5b6000612be384828501612baa565b91505092915050565b60008115159050919050565b612c0181612bec565b82525050565b6000602082019050612c1c6000830184612bf8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c5c578082015181840152602081019050612c41565b83811115612c6b576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c8d82612c22565b612c978185612c2d565b9350612ca7818560208601612c3e565b612cb081612c71565b840191505092915050565b60006020820190508181036000830152612cd58184612c82565b905092915050565b6000819050919050565b612cf081612cdd565b8114612cfb57600080fd5b50565b600081359050612d0d81612ce7565b92915050565b600060208284031215612d2957612d28612b5d565b5b6000612d3784828501612cfe565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d6b82612d40565b9050919050565b612d7b81612d60565b82525050565b6000602082019050612d966000830184612d72565b92915050565b612da581612d60565b8114612db057600080fd5b50565b600081359050612dc281612d9c565b92915050565b60008060408385031215612ddf57612dde612b5d565b5b6000612ded85828601612db3565b9250506020612dfe85828601612cfe565b9150509250929050565b612e1181612cdd565b82525050565b6000602082019050612e2c6000830184612e08565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e7482612c71565b810181811067ffffffffffffffff82111715612e9357612e92612e3c565b5b80604052505050565b6000612ea6612b53565b9050612eb28282612e6b565b919050565b600067ffffffffffffffff821115612ed257612ed1612e3c565b5b612edb82612c71565b9050602081019050919050565b82818337600083830152505050565b6000612f0a612f0584612eb7565b612e9c565b905082815260208101848484011115612f2657612f25612e37565b5b612f31848285612ee8565b509392505050565b600082601f830112612f4e57612f4d612e32565b5b8135612f5e848260208601612ef7565b91505092915050565b600060208284031215612f7d57612f7c612b5d565b5b600082013567ffffffffffffffff811115612f9b57612f9a612b62565b5b612fa784828501612f39565b91505092915050565b612fb981612bec565b8114612fc457600080fd5b50565b600081359050612fd681612fb0565b92915050565b600060208284031215612ff257612ff1612b5d565b5b600061300084828501612fc7565b91505092915050565b60008060006060848603121561302257613021612b5d565b5b600061303086828701612db3565b935050602061304186828701612db3565b925050604061305286828701612cfe565b9150509250925092565b60006020828403121561307257613071612b5d565b5b600061308084828501612db3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130be81612cdd565b82525050565b60006130d083836130b5565b60208301905092915050565b6000602082019050919050565b60006130f482613089565b6130fe8185613094565b9350613109836130a5565b8060005b8381101561313a57815161312188826130c4565b975061312c836130dc565b92505060018101905061310d565b5085935050505092915050565b6000602082019050818103600083015261316181846130e9565b905092915050565b600080604083850312156131805761317f612b5d565b5b600061318e85828601612db3565b925050602061319f85828601612fc7565b9150509250929050565b600067ffffffffffffffff8211156131c4576131c3612e3c565b5b6131cd82612c71565b9050602081019050919050565b60006131ed6131e8846131a9565b612e9c565b90508281526020810184848401111561320957613208612e37565b5b613214848285612ee8565b509392505050565b600082601f83011261323157613230612e32565b5b81356132418482602086016131da565b91505092915050565b6000806000806080858703121561326457613263612b5d565b5b600061327287828801612db3565b945050602061328387828801612db3565b935050604061329487828801612cfe565b925050606085013567ffffffffffffffff8111156132b5576132b4612b62565b5b6132c18782880161321c565b91505092959194509250565b600080604083850312156132e4576132e3612b5d565b5b60006132f285828601612db3565b925050602061330385828601612db3565b9150509250929050565b6000806040838503121561332457613323612b5d565b5b600061333285828601612cfe565b925050602061334385828601612db3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061339457607f821691505b602082108114156133a8576133a761334d565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061340a602c83612c2d565b9150613415826133ae565b604082019050919050565b60006020820190508181036000830152613439816133fd565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061349c602183612c2d565b91506134a782613440565b604082019050919050565b600060208201905081810360008301526134cb8161348f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061352e603883612c2d565b9150613539826134d2565b604082019050919050565b6000602082019050818103600083015261355d81613521565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061359a602083612c2d565b91506135a582613564565b602082019050919050565b600060208201905081810360008301526135c98161358d565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061362c603183612c2d565b9150613637826135d0565b604082019050919050565b6000602082019050818103600083015261365b8161361f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613698601f83612c2d565b91506136a382613662565b602082019050919050565b600060208201905081810360008301526136c78161368b565b9050919050565b600081905092915050565b50565b60006136e96000836136ce565b91506136f4826136d9565b600082019050919050565b600061370a826136dc565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061377d82612cdd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137b0576137af613743565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613817602983612c2d565b9150613822826137bb565b604082019050919050565b600060208201905081810360008301526138468161380a565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006138a9602a83612c2d565b91506138b48261384d565b604082019050919050565b600060208201905081810360008301526138d88161389c565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613915601483612c2d565b9150613920826138df565b602082019050919050565b6000602082019050818103600083015261394481613908565b9050919050565b600061395682612cdd565b915061396183612cdd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561399657613995613743565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006139d7601483612c2d565b91506139e2826139a1565b602082019050919050565b60006020820190508181036000830152613a06816139ca565b9050919050565b6000613a1882612cdd565b9150613a2383612cdd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a5c57613a5b613743565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613a9d601383612c2d565b9150613aa882613a67565b602082019050919050565b60006020820190508181036000830152613acc81613a90565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613b09601783612c2d565b9150613b1482613ad3565b602082019050919050565b60006020820190508181036000830152613b3881613afc565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613b9b602f83612c2d565b9150613ba682613b3f565b604082019050919050565b60006020820190508181036000830152613bca81613b8e565b9050919050565b600081905092915050565b6000613be782612c22565b613bf18185613bd1565b9350613c01818560208601612c3e565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613c2f8161337c565b613c398186613bd1565b94506001821660008114613c545760018114613c6557613c98565b60ff19831686528186019350613c98565b613c6e85613c0d565b60005b83811015613c9057815481890152600182019150602081019050613c71565b838801955050505b50505092915050565b6000613cad8286613bdc565b9150613cb98285613bdc565b9150613cc58284613c22565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d2e602683612c2d565b9150613d3982613cd2565b604082019050919050565b60006020820190508181036000830152613d5d81613d21565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613dc0602c83612c2d565b9150613dcb82613d64565b604082019050919050565b60006020820190508181036000830152613def81613db3565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613e52602583612c2d565b9150613e5d82613df6565b604082019050919050565b60006020820190508181036000830152613e8181613e45565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ee4602483612c2d565b9150613eef82613e88565b604082019050919050565b60006020820190508181036000830152613f1381613ed7565b9050919050565b6000613f2582612cdd565b9150613f3083612cdd565b925082821015613f4357613f42613743565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613f84601983612c2d565b9150613f8f82613f4e565b602082019050919050565b60006020820190508181036000830152613fb381613f77565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614016603283612c2d565b915061402182613fba565b604082019050919050565b6000602082019050818103600083015261404581614009565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061408682612cdd565b915061409183612cdd565b9250826140a1576140a061404c565b5b828204905092915050565b60006140b782612cdd565b91506140c283612cdd565b9250826140d2576140d161404c565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614104826140dd565b61410e81856140e8565b935061411e818560208601612c3e565b61412781612c71565b840191505092915050565b60006080820190506141476000830187612d72565b6141546020830186612d72565b6141616040830185612e08565b818103606083015261417381846140f9565b905095945050505050565b60008151905061418d81612b93565b92915050565b6000602082840312156141a9576141a8612b5d565b5b60006141b78482850161417e565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006141f6602083612c2d565b9150614201826141c0565b602082019050919050565b60006020820190508181036000830152614225816141e9565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614262601c83612c2d565b915061426d8261422c565b602082019050919050565b6000602082019050818103600083015261429181614255565b905091905056fea2646970667358221220f4252856cd9fdab40c8a8623c4087b338fc2e81c75cceba1c5dff6a5ed17e7fc64736f6c634300080c0033

Deployed Bytecode Sourcemap

41571:3894:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28368:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29313:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30872:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30395:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41860:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44803:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44909:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42636:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31622:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44992:150;;;;;;;;;;;;;:::i;:::-;;32032:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43112:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44256:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44559:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41979:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41782:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42012:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41749:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29007:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28737:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8989:103;;;;;;;;;;;;;:::i;:::-;;44697:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8338:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41934:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29482:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42733:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31165:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41820:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44336:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32288:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43753:495;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41898:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44472:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31391:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42951:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9247:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28368:305;28470:4;28522:25;28507:40;;;:11;:40;;;;:105;;;;28579:33;28564:48;;;:11;:48;;;;28507:105;:158;;;;28629:36;28653:11;28629:23;:36::i;:::-;28507:158;28487:178;;28368:305;;;:::o;29313:100::-;29367:13;29400:5;29393:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29313:100;:::o;30872:221::-;30948:7;30976:16;30984:7;30976;:16::i;:::-;30968:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31061:15;:24;31077:7;31061:24;;;;;;;;;;;;;;;;;;;;;31054:31;;30872:221;;;:::o;30395:411::-;30476:13;30492:23;30507:7;30492:14;:23::i;:::-;30476:39;;30540:5;30534:11;;:2;:11;;;;30526:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;30634:5;30618:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30643:37;30660:5;30667:12;:10;:12::i;:::-;30643:16;:37::i;:::-;30618:62;30596:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;30777:21;30786:2;30790:7;30777:8;:21::i;:::-;30465:341;30395:411;;:::o;41860:33::-;;;;:::o;44803:100::-;8569:12;:10;:12::i;:::-;8558:23;;:7;:5;:7::i;:::-;:23;;;8550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44887:10:::1;44875:9;:22;;;;;;;;;;;;:::i;:::-;;44803:100:::0;:::o;44909:77::-;8569:12;:10;:12::i;:::-;8558:23;;:7;:5;:7::i;:::-;:23;;;8550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44974:6:::1;44965;;:15;;;;;;;;;;;;;;;;;;44909:77:::0;:::o;42636:89::-;42680:7;42703:16;:6;:14;:16::i;:::-;42696:23;;42636:89;:::o;31622:339::-;31817:41;31836:12;:10;:12::i;:::-;31850:7;31817:18;:41::i;:::-;31809:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31925:28;31935:4;31941:2;31945:7;31925:9;:28::i;:::-;31622:339;;;:::o;44992:150::-;8569:12;:10;:12::i;:::-;8558:23;;:7;:5;:7::i;:::-;:23;;;8550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1847:1:::1;2445:7;;:19;;2437:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1847:1;2578:7;:18;;;;45050:7:::2;45071;:5;:7::i;:::-;45063:21;;45092;45063:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45049:69;;;45133:2;45125:11;;;::::0;::::2;;45042:100;1803:1:::1;2757:7;:22;;;;44992:150::o:0;32032:185::-;32170:39;32187:4;32193:2;32197:7;32170:39;;;;;;;;;;;;:16;:39::i;:::-;32032:185;;;:::o;43112:635::-;43187:16;43215:23;43241:17;43251:6;43241:9;:17::i;:::-;43215:43;;43265:30;43312:15;43298:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43265:63;;43335:22;43360:1;43335:26;;43368:23;43404:309;43429:15;43411;:33;:64;;;;;43466:9;;43448:14;:27;;43411:64;43404:309;;;43486:25;43514:23;43522:14;43514:7;:23::i;:::-;43486:51;;43573:6;43552:27;;:17;:27;;;43548:131;;;43625:14;43592:13;43606:15;43592:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;43652:17;;;;;:::i;:::-;;;;43548:131;43689:16;;;;;:::i;:::-;;;;43477:236;43404:309;;;43728:13;43721:20;;;;;;43112:635;;;:::o;44256:74::-;8569:12;:10;:12::i;:::-;8558:23;;:7;:5;:7::i;:::-;:23;;;8550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44319:5:::1;44312:4;:12;;;;44256:74:::0;:::o;44559:132::-;8569:12;:10;:12::i;:::-;8558:23;;:7;:5;:7::i;:::-;:23;;;8550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44667:18:::1;44647:17;:38;;;;;;;;;;;;:::i;:::-;;44559:132:::0;:::o;41979:28::-;;;;;;;;;;;;;:::o;41782:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42012:26::-;;;;;;;;;;;;;:::o;41749:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29007:239::-;29079:7;29099:13;29115:7;:16;29123:7;29115:16;;;;;;;;;;;;;;;;;;;;;29099:32;;29167:1;29150:19;;:5;:19;;;;29142:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29233:5;29226:12;;;29007:239;;;:::o;28737:208::-;28809:7;28854:1;28837:19;;:5;:19;;;;28829:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28921:9;:16;28931:5;28921:16;;;;;;;;;;;;;;;;28914:23;;28737:208;;;:::o;8989:103::-;8569:12;:10;:12::i;:::-;8558:23;;:7;:5;:7::i;:::-;:23;;;8550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9054:30:::1;9081:1;9054:18;:30::i;:::-;8989:103::o:0;44697:100::-;8569:12;:10;:12::i;:::-;8558:23;;:7;:5;:7::i;:::-;:23;;;8550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44781:10:::1;44769:9;:22;;;;;;;;;;;;:::i;:::-;;44697:100:::0;:::o;8338:87::-;8384:7;8411:6;;;;;;;;;;;8404:13;;8338:87;:::o;41934:38::-;;;;:::o;29482:104::-;29538:13;29571:7;29564:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29482:104;:::o;42733:210::-;42798:11;42274:1;42260:11;:15;:52;;;;;42294:18;;42279:11;:33;;42260:52;42252:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;42386:9;;42371:11;42352:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;42344:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;42831:11:::1;42533:3;42518:11;42501:16;:6;:14;:16::i;:::-;:28;;;;:::i;:::-;:35;42497:120;;42574:11;42567:4;;:18;;;;:::i;:::-;42554:9;:31;;42546:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;42497:120;42860:6:::2;;;;;;;;;;;42859:7;42851:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;42903:34;42913:10;42925:11;42903:9;:34::i;:::-;42427:1:::1;42733:210:::0;;:::o;31165:155::-;31260:52;31279:12;:10;:12::i;:::-;31293:8;31303;31260:18;:52::i;:::-;31165:155;;:::o;41820:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44336:130::-;8569:12;:10;:12::i;:::-;8558:23;;:7;:5;:7::i;:::-;:23;;;8550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44441:19:::1;44420:18;:40;;;;44336:130:::0;:::o;32288:328::-;32463:41;32482:12;:10;:12::i;:::-;32496:7;32463:18;:41::i;:::-;32455:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;32569:39;32583:4;32589:2;32593:7;32602:5;32569:13;:39::i;:::-;32288:328;;;;:::o;43753:495::-;43852:13;43893:17;43901:8;43893:7;:17::i;:::-;43877:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;43999:5;43987:17;;:8;;;;;;;;;;;:17;;;43983:68;;;44024:17;44017:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43983:68;44057:28;44088:10;:8;:10::i;:::-;44057:41;;44143:1;44118:14;44112:28;:32;:130;;;;;;;;;;;;;;;;;44180:14;44196:19;:8;:17;:19::i;:::-;44217:9;44163:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44112:130;44105:137;;;43753:495;;;;:::o;41898:31::-;;;;:::o;44472:81::-;8569:12;:10;:12::i;:::-;8558:23;;:7;:5;:7::i;:::-;:23;;;8550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44541:6:::1;44530:8;;:17;;;;;;;;;;;;;;;;;;44472:81:::0;:::o;31391:164::-;31488:4;31512:18;:25;31531:5;31512:25;;;;;;;;;;;;;;;:35;31538:8;31512:35;;;;;;;;;;;;;;;;;;;;;;;;;31505:42;;31391:164;;;;:::o;42951:155::-;43037:11;42274:1;42260:11;:15;:52;;;;;42294:18;;42279:11;:33;;42260:52;42252:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;42386:9;;42371:11;42352:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;42344:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;8569:12:::1;:10;:12::i;:::-;8558:23;;:7;:5;:7::i;:::-;:23;;;8550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43067:33:::2;43077:9;43088:11;43067:9;:33::i;:::-;42951:155:::0;;;:::o;9247:201::-;8569:12;:10;:12::i;:::-;8558:23;;:7;:5;:7::i;:::-;:23;;;8550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9356:1:::1;9336:22;;:8;:22;;;;9328:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9412:28;9431:8;9412:18;:28::i;:::-;9247:201:::0;:::o;21122:157::-;21207:4;21246:25;21231:40;;;:11;:40;;;;21224:47;;21122:157;;;:::o;34126:127::-;34191:4;34243:1;34215:30;;:7;:16;34223:7;34215:16;;;;;;;;;;;;;;;;;;;;;:30;;;;34208:37;;34126:127;;;:::o;7062:98::-;7115:7;7142:10;7135:17;;7062:98;:::o;38272:174::-;38374:2;38347:15;:24;38363:7;38347:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;38430:7;38426:2;38392:46;;38401:23;38416:7;38401:14;:23::i;:::-;38392:46;;;;;;;;;;;;38272:174;;:::o;3666:114::-;3731:7;3758;:14;;;3751:21;;3666:114;;;:::o;34420:348::-;34513:4;34538:16;34546:7;34538;:16::i;:::-;34530:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34614:13;34630:23;34645:7;34630:14;:23::i;:::-;34614:39;;34683:5;34672:16;;:7;:16;;;:51;;;;34716:7;34692:31;;:20;34704:7;34692:11;:20::i;:::-;:31;;;34672:51;:87;;;;34727:32;34744:5;34751:7;34727:16;:32::i;:::-;34672:87;34664:96;;;34420:348;;;;:::o;37529:625::-;37688:4;37661:31;;:23;37676:7;37661:14;:23::i;:::-;:31;;;37653:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37767:1;37753:16;;:2;:16;;;;37745:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;37823:39;37844:4;37850:2;37854:7;37823:20;:39::i;:::-;37927:29;37944:1;37948:7;37927:8;:29::i;:::-;37988:1;37969:9;:15;37979:4;37969:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;38017:1;38000:9;:13;38010:2;38000:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38048:2;38029:7;:16;38037:7;38029:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38087:7;38083:2;38068:27;;38077:4;38068:27;;;;;;;;;;;;38108:38;38128:4;38134:2;38138:7;38108:19;:38::i;:::-;37529:625;;;:::o;9608:191::-;9682:16;9701:6;;;;;;;;;;;9682:25;;9727:8;9718:6;;:17;;;;;;;;;;;;;;;;;;9782:8;9751:40;;9772:8;9751:40;;;;;;;;;;;;9671:128;9608:191;:::o;45148:204::-;45228:9;45223:124;45247:11;45243:1;:15;45223:124;;;45274:18;:6;:16;:18::i;:::-;45301:38;45311:9;45322:16;:6;:14;:16::i;:::-;45301:9;:38::i;:::-;45260:3;;;;;:::i;:::-;;;;45223:124;;;;45148:204;;:::o;38588:315::-;38743:8;38734:17;;:5;:17;;;;38726:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;38830:8;38792:18;:25;38811:5;38792:25;;;;;;;;;;;;;;;:35;38818:8;38792:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38876:8;38854:41;;38869:5;38854:41;;;38886:8;38854:41;;;;;;:::i;:::-;;;;;;;;38588:315;;;:::o;33498:::-;33655:28;33665:4;33671:2;33675:7;33655:9;:28::i;:::-;33702:48;33725:4;33731:2;33735:7;33744:5;33702:22;:48::i;:::-;33694:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;33498:315;;;;:::o;45358:104::-;45418:13;45447:9;45440:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45358:104;:::o;4624:723::-;4680:13;4910:1;4901:5;:10;4897:53;;;4928:10;;;;;;;;;;;;;;;;;;;;;4897:53;4960:12;4975:5;4960:20;;4991:14;5016:78;5031:1;5023:4;:9;5016:78;;5049:8;;;;;:::i;:::-;;;;5080:2;5072:10;;;;;:::i;:::-;;;5016:78;;;5104:19;5136:6;5126:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5104:39;;5154:154;5170:1;5161:5;:10;5154:154;;5198:1;5188:11;;;;;:::i;:::-;;;5265:2;5257:5;:10;;;;:::i;:::-;5244:2;:24;;;;:::i;:::-;5231:39;;5214:6;5221;5214:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;5294:2;5285:11;;;;;:::i;:::-;;;5154:154;;;5332:6;5318:21;;;;;4624:723;;;;:::o;40839:126::-;;;;:::o;41350:125::-;;;;:::o;3788:127::-;3895:1;3877:7;:14;;;:19;;;;;;;;;;;3788:127;:::o;35110:110::-;35186:26;35196:2;35200:7;35186:26;;;;;;;;;;;;:9;:26::i;:::-;35110:110;;:::o;39468:799::-;39623:4;39644:15;:2;:13;;;:15::i;:::-;39640:620;;;39696:2;39680:36;;;39717:12;:10;:12::i;:::-;39731:4;39737:7;39746:5;39680:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39676:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39939:1;39922:6;:13;:18;39918:272;;;39965:60;;;;;;;;;;:::i;:::-;;;;;;;;39918:272;40140:6;40134:13;40125:6;40121:2;40117:15;40110:38;39676:529;39813:41;;;39803:51;;;:6;:51;;;;39796:58;;;;;39640:620;40244:4;40237:11;;39468:799;;;;;;;:::o;35447:321::-;35577:18;35583:2;35587:7;35577:5;:18::i;:::-;35628:54;35659:1;35663:2;35667:7;35676:5;35628:22;:54::i;:::-;35606:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;35447:321;;;:::o;11039:326::-;11099:4;11356:1;11334:7;:19;;;:23;11327:30;;11039:326;;;:::o;36104:439::-;36198:1;36184:16;;:2;:16;;;;36176:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36257:16;36265:7;36257;:16::i;:::-;36256:17;36248:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;36319:45;36348:1;36352:2;36356:7;36319:20;:45::i;:::-;36394:1;36377:9;:13;36387:2;36377:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36425:2;36406:7;:16;36414:7;36406:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36470:7;36466:2;36445:33;;36462:1;36445:33;;;;;;;;;;;;36491:44;36519:1;36523:2;36527:7;36491:19;:44::i;:::-;36104:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:114::-;9528:6;9562:5;9556:12;9546:22;;9461:114;;;:::o;9581:184::-;9680:11;9714:6;9709:3;9702:19;9754:4;9749:3;9745:14;9730:29;;9581:184;;;;:::o;9771:132::-;9838:4;9861:3;9853:11;;9891:4;9886:3;9882:14;9874:22;;9771:132;;;:::o;9909:108::-;9986:24;10004:5;9986:24;:::i;:::-;9981:3;9974:37;9909:108;;:::o;10023:179::-;10092:10;10113:46;10155:3;10147:6;10113:46;:::i;:::-;10191:4;10186:3;10182:14;10168:28;;10023:179;;;;:::o;10208:113::-;10278:4;10310;10305:3;10301:14;10293:22;;10208:113;;;:::o;10357:732::-;10476:3;10505:54;10553:5;10505:54;:::i;:::-;10575:86;10654:6;10649:3;10575:86;:::i;:::-;10568:93;;10685:56;10735:5;10685:56;:::i;:::-;10764:7;10795:1;10780:284;10805:6;10802:1;10799:13;10780:284;;;10881:6;10875:13;10908:63;10967:3;10952:13;10908:63;:::i;:::-;10901:70;;10994:60;11047:6;10994:60;:::i;:::-;10984:70;;10840:224;10827:1;10824;10820:9;10815:14;;10780:284;;;10784:14;11080:3;11073:10;;10481:608;;;10357:732;;;;:::o;11095:373::-;11238:4;11276:2;11265:9;11261:18;11253:26;;11325:9;11319:4;11315:20;11311:1;11300:9;11296:17;11289:47;11353:108;11456:4;11447:6;11353:108;:::i;:::-;11345:116;;11095:373;;;;:::o;11474:468::-;11539:6;11547;11596:2;11584:9;11575:7;11571:23;11567:32;11564:119;;;11602:79;;:::i;:::-;11564:119;11722:1;11747:53;11792:7;11783:6;11772:9;11768:22;11747:53;:::i;:::-;11737:63;;11693:117;11849:2;11875:50;11917:7;11908:6;11897:9;11893:22;11875:50;:::i;:::-;11865:60;;11820:115;11474:468;;;;;:::o;11948:307::-;12009:4;12099:18;12091:6;12088:30;12085:56;;;12121:18;;:::i;:::-;12085:56;12159:29;12181:6;12159:29;:::i;:::-;12151:37;;12243:4;12237;12233:15;12225:23;;11948:307;;;:::o;12261:410::-;12338:5;12363:65;12379:48;12420:6;12379:48;:::i;:::-;12363:65;:::i;:::-;12354:74;;12451:6;12444:5;12437:21;12489:4;12482:5;12478:16;12527:3;12518:6;12513:3;12509:16;12506:25;12503:112;;;12534:79;;:::i;:::-;12503:112;12624:41;12658:6;12653:3;12648;12624:41;:::i;:::-;12344:327;12261:410;;;;;:::o;12690:338::-;12745:5;12794:3;12787:4;12779:6;12775:17;12771:27;12761:122;;12802:79;;:::i;:::-;12761:122;12919:6;12906:20;12944:78;13018:3;13010:6;13003:4;12995:6;12991:17;12944:78;:::i;:::-;12935:87;;12751:277;12690:338;;;;:::o;13034:943::-;13129:6;13137;13145;13153;13202:3;13190:9;13181:7;13177:23;13173:33;13170:120;;;13209:79;;:::i;:::-;13170:120;13329:1;13354:53;13399:7;13390:6;13379:9;13375:22;13354:53;:::i;:::-;13344:63;;13300:117;13456:2;13482:53;13527:7;13518:6;13507:9;13503:22;13482:53;:::i;:::-;13472:63;;13427:118;13584:2;13610:53;13655:7;13646:6;13635:9;13631:22;13610:53;:::i;:::-;13600:63;;13555:118;13740:2;13729:9;13725:18;13712:32;13771:18;13763:6;13760:30;13757:117;;;13793:79;;:::i;:::-;13757:117;13898:62;13952:7;13943:6;13932:9;13928:22;13898:62;:::i;:::-;13888:72;;13683:287;13034:943;;;;;;;:::o;13983:474::-;14051:6;14059;14108:2;14096:9;14087:7;14083:23;14079:32;14076:119;;;14114:79;;:::i;:::-;14076:119;14234:1;14259:53;14304:7;14295:6;14284:9;14280:22;14259:53;:::i;:::-;14249:63;;14205:117;14361:2;14387:53;14432:7;14423:6;14412:9;14408:22;14387:53;:::i;:::-;14377:63;;14332:118;13983:474;;;;;:::o;14463:::-;14531:6;14539;14588:2;14576:9;14567:7;14563:23;14559:32;14556:119;;;14594:79;;:::i;:::-;14556:119;14714:1;14739:53;14784:7;14775:6;14764:9;14760:22;14739:53;:::i;:::-;14729:63;;14685:117;14841:2;14867:53;14912:7;14903:6;14892:9;14888:22;14867:53;:::i;:::-;14857:63;;14812:118;14463:474;;;;;:::o;14943:180::-;14991:77;14988:1;14981:88;15088:4;15085:1;15078:15;15112:4;15109:1;15102:15;15129:320;15173:6;15210:1;15204:4;15200:12;15190:22;;15257:1;15251:4;15247:12;15278:18;15268:81;;15334:4;15326:6;15322:17;15312:27;;15268:81;15396:2;15388:6;15385:14;15365:18;15362:38;15359:84;;;15415:18;;:::i;:::-;15359:84;15180:269;15129:320;;;:::o;15455:231::-;15595:34;15591:1;15583:6;15579:14;15572:58;15664:14;15659:2;15651:6;15647:15;15640:39;15455:231;:::o;15692:366::-;15834:3;15855:67;15919:2;15914:3;15855:67;:::i;:::-;15848:74;;15931:93;16020:3;15931:93;:::i;:::-;16049:2;16044:3;16040:12;16033:19;;15692:366;;;:::o;16064:419::-;16230:4;16268:2;16257:9;16253:18;16245:26;;16317:9;16311:4;16307:20;16303:1;16292:9;16288:17;16281:47;16345:131;16471:4;16345:131;:::i;:::-;16337:139;;16064:419;;;:::o;16489:220::-;16629:34;16625:1;16617:6;16613:14;16606:58;16698:3;16693:2;16685:6;16681:15;16674:28;16489:220;:::o;16715:366::-;16857:3;16878:67;16942:2;16937:3;16878:67;:::i;:::-;16871:74;;16954:93;17043:3;16954:93;:::i;:::-;17072:2;17067:3;17063:12;17056:19;;16715:366;;;:::o;17087:419::-;17253:4;17291:2;17280:9;17276:18;17268:26;;17340:9;17334:4;17330:20;17326:1;17315:9;17311:17;17304:47;17368:131;17494:4;17368:131;:::i;:::-;17360:139;;17087:419;;;:::o;17512:243::-;17652:34;17648:1;17640:6;17636:14;17629:58;17721:26;17716:2;17708:6;17704:15;17697:51;17512:243;:::o;17761:366::-;17903:3;17924:67;17988:2;17983:3;17924:67;:::i;:::-;17917:74;;18000:93;18089:3;18000:93;:::i;:::-;18118:2;18113:3;18109:12;18102:19;;17761:366;;;:::o;18133:419::-;18299:4;18337:2;18326:9;18322:18;18314:26;;18386:9;18380:4;18376:20;18372:1;18361:9;18357:17;18350:47;18414:131;18540:4;18414:131;:::i;:::-;18406:139;;18133:419;;;:::o;18558:182::-;18698:34;18694:1;18686:6;18682:14;18675:58;18558:182;:::o;18746:366::-;18888:3;18909:67;18973:2;18968:3;18909:67;:::i;:::-;18902:74;;18985:93;19074:3;18985:93;:::i;:::-;19103:2;19098:3;19094:12;19087:19;;18746:366;;;:::o;19118:419::-;19284:4;19322:2;19311:9;19307:18;19299:26;;19371:9;19365:4;19361:20;19357:1;19346:9;19342:17;19335:47;19399:131;19525:4;19399:131;:::i;:::-;19391:139;;19118:419;;;:::o;19543:236::-;19683:34;19679:1;19671:6;19667:14;19660:58;19752:19;19747:2;19739:6;19735:15;19728:44;19543:236;:::o;19785:366::-;19927:3;19948:67;20012:2;20007:3;19948:67;:::i;:::-;19941:74;;20024:93;20113:3;20024:93;:::i;:::-;20142:2;20137:3;20133:12;20126:19;;19785:366;;;:::o;20157:419::-;20323:4;20361:2;20350:9;20346:18;20338:26;;20410:9;20404:4;20400:20;20396:1;20385:9;20381:17;20374:47;20438:131;20564:4;20438:131;:::i;:::-;20430:139;;20157:419;;;:::o;20582:181::-;20722:33;20718:1;20710:6;20706:14;20699:57;20582:181;:::o;20769:366::-;20911:3;20932:67;20996:2;20991:3;20932:67;:::i;:::-;20925:74;;21008:93;21097:3;21008:93;:::i;:::-;21126:2;21121:3;21117:12;21110:19;;20769:366;;;:::o;21141:419::-;21307:4;21345:2;21334:9;21330:18;21322:26;;21394:9;21388:4;21384:20;21380:1;21369:9;21365:17;21358:47;21422:131;21548:4;21422:131;:::i;:::-;21414:139;;21141:419;;;:::o;21566:147::-;21667:11;21704:3;21689:18;;21566:147;;;;:::o;21719:114::-;;:::o;21839:398::-;21998:3;22019:83;22100:1;22095:3;22019:83;:::i;:::-;22012:90;;22111:93;22200:3;22111:93;:::i;:::-;22229:1;22224:3;22220:11;22213:18;;21839:398;;;:::o;22243:379::-;22427:3;22449:147;22592:3;22449:147;:::i;:::-;22442:154;;22613:3;22606:10;;22243:379;;;:::o;22628:180::-;22676:77;22673:1;22666:88;22773:4;22770:1;22763:15;22797:4;22794:1;22787:15;22814:180;22862:77;22859:1;22852:88;22959:4;22956:1;22949:15;22983:4;22980:1;22973:15;23000:233;23039:3;23062:24;23080:5;23062:24;:::i;:::-;23053:33;;23108:66;23101:5;23098:77;23095:103;;;23178:18;;:::i;:::-;23095:103;23225:1;23218:5;23214:13;23207:20;;23000:233;;;:::o;23239:228::-;23379:34;23375:1;23367:6;23363:14;23356:58;23448:11;23443:2;23435:6;23431:15;23424:36;23239:228;:::o;23473:366::-;23615:3;23636:67;23700:2;23695:3;23636:67;:::i;:::-;23629:74;;23712:93;23801:3;23712:93;:::i;:::-;23830:2;23825:3;23821:12;23814:19;;23473:366;;;:::o;23845:419::-;24011:4;24049:2;24038:9;24034:18;24026:26;;24098:9;24092:4;24088:20;24084:1;24073:9;24069:17;24062:47;24126:131;24252:4;24126:131;:::i;:::-;24118:139;;23845:419;;;:::o;24270:229::-;24410:34;24406:1;24398:6;24394:14;24387:58;24479:12;24474:2;24466:6;24462:15;24455:37;24270:229;:::o;24505:366::-;24647:3;24668:67;24732:2;24727:3;24668:67;:::i;:::-;24661:74;;24744:93;24833:3;24744:93;:::i;:::-;24862:2;24857:3;24853:12;24846:19;;24505:366;;;:::o;24877:419::-;25043:4;25081:2;25070:9;25066:18;25058:26;;25130:9;25124:4;25120:20;25116:1;25105:9;25101:17;25094:47;25158:131;25284:4;25158:131;:::i;:::-;25150:139;;24877:419;;;:::o;25302:170::-;25442:22;25438:1;25430:6;25426:14;25419:46;25302:170;:::o;25478:366::-;25620:3;25641:67;25705:2;25700:3;25641:67;:::i;:::-;25634:74;;25717:93;25806:3;25717:93;:::i;:::-;25835:2;25830:3;25826:12;25819:19;;25478:366;;;:::o;25850:419::-;26016:4;26054:2;26043:9;26039:18;26031:26;;26103:9;26097:4;26093:20;26089:1;26078:9;26074:17;26067:47;26131:131;26257:4;26131:131;:::i;:::-;26123:139;;25850:419;;;:::o;26275:305::-;26315:3;26334:20;26352:1;26334:20;:::i;:::-;26329:25;;26368:20;26386:1;26368:20;:::i;:::-;26363:25;;26522:1;26454:66;26450:74;26447:1;26444:81;26441:107;;;26528:18;;:::i;:::-;26441:107;26572:1;26569;26565:9;26558:16;;26275:305;;;;:::o;26586:170::-;26726:22;26722:1;26714:6;26710:14;26703:46;26586:170;:::o;26762:366::-;26904:3;26925:67;26989:2;26984:3;26925:67;:::i;:::-;26918:74;;27001:93;27090:3;27001:93;:::i;:::-;27119:2;27114:3;27110:12;27103:19;;26762:366;;;:::o;27134:419::-;27300:4;27338:2;27327:9;27323:18;27315:26;;27387:9;27381:4;27377:20;27373:1;27362:9;27358:17;27351:47;27415:131;27541:4;27415:131;:::i;:::-;27407:139;;27134:419;;;:::o;27559:348::-;27599:7;27622:20;27640:1;27622:20;:::i;:::-;27617:25;;27656:20;27674:1;27656:20;:::i;:::-;27651:25;;27844:1;27776:66;27772:74;27769:1;27766:81;27761:1;27754:9;27747:17;27743:105;27740:131;;;27851:18;;:::i;:::-;27740:131;27899:1;27896;27892:9;27881:20;;27559:348;;;;:::o;27913:169::-;28053:21;28049:1;28041:6;28037:14;28030:45;27913:169;:::o;28088:366::-;28230:3;28251:67;28315:2;28310:3;28251:67;:::i;:::-;28244:74;;28327:93;28416:3;28327:93;:::i;:::-;28445:2;28440:3;28436:12;28429:19;;28088:366;;;:::o;28460:419::-;28626:4;28664:2;28653:9;28649:18;28641:26;;28713:9;28707:4;28703:20;28699:1;28688:9;28684:17;28677:47;28741:131;28867:4;28741:131;:::i;:::-;28733:139;;28460:419;;;:::o;28885:173::-;29025:25;29021:1;29013:6;29009:14;29002:49;28885:173;:::o;29064:366::-;29206:3;29227:67;29291:2;29286:3;29227:67;:::i;:::-;29220:74;;29303:93;29392:3;29303:93;:::i;:::-;29421:2;29416:3;29412:12;29405:19;;29064:366;;;:::o;29436:419::-;29602:4;29640:2;29629:9;29625:18;29617:26;;29689:9;29683:4;29679:20;29675:1;29664:9;29660:17;29653:47;29717:131;29843:4;29717:131;:::i;:::-;29709:139;;29436:419;;;:::o;29861:234::-;30001:34;29997:1;29989:6;29985:14;29978:58;30070:17;30065:2;30057:6;30053:15;30046:42;29861:234;:::o;30101:366::-;30243:3;30264:67;30328:2;30323:3;30264:67;:::i;:::-;30257:74;;30340:93;30429:3;30340:93;:::i;:::-;30458:2;30453:3;30449:12;30442:19;;30101:366;;;:::o;30473:419::-;30639:4;30677:2;30666:9;30662:18;30654:26;;30726:9;30720:4;30716:20;30712:1;30701:9;30697:17;30690:47;30754:131;30880:4;30754:131;:::i;:::-;30746:139;;30473:419;;;:::o;30898:148::-;31000:11;31037:3;31022:18;;30898:148;;;;:::o;31052:377::-;31158:3;31186:39;31219:5;31186:39;:::i;:::-;31241:89;31323:6;31318:3;31241:89;:::i;:::-;31234:96;;31339:52;31384:6;31379:3;31372:4;31365:5;31361:16;31339:52;:::i;:::-;31416:6;31411:3;31407:16;31400:23;;31162:267;31052:377;;;;:::o;31435:141::-;31484:4;31507:3;31499:11;;31530:3;31527:1;31520:14;31564:4;31561:1;31551:18;31543:26;;31435:141;;;:::o;31606:845::-;31709:3;31746:5;31740:12;31775:36;31801:9;31775:36;:::i;:::-;31827:89;31909:6;31904:3;31827:89;:::i;:::-;31820:96;;31947:1;31936:9;31932:17;31963:1;31958:137;;;;32109:1;32104:341;;;;31925:520;;31958:137;32042:4;32038:9;32027;32023:25;32018:3;32011:38;32078:6;32073:3;32069:16;32062:23;;31958:137;;32104:341;32171:38;32203:5;32171:38;:::i;:::-;32231:1;32245:154;32259:6;32256:1;32253:13;32245:154;;;32333:7;32327:14;32323:1;32318:3;32314:11;32307:35;32383:1;32374:7;32370:15;32359:26;;32281:4;32278:1;32274:12;32269:17;;32245:154;;;32428:6;32423:3;32419:16;32412:23;;32111:334;;31925:520;;31713:738;;31606:845;;;;:::o;32457:589::-;32682:3;32704:95;32795:3;32786:6;32704:95;:::i;:::-;32697:102;;32816:95;32907:3;32898:6;32816:95;:::i;:::-;32809:102;;32928:92;33016:3;33007:6;32928:92;:::i;:::-;32921:99;;33037:3;33030:10;;32457:589;;;;;;:::o;33052:225::-;33192:34;33188:1;33180:6;33176:14;33169:58;33261:8;33256:2;33248:6;33244:15;33237:33;33052:225;:::o;33283:366::-;33425:3;33446:67;33510:2;33505:3;33446:67;:::i;:::-;33439:74;;33522:93;33611:3;33522:93;:::i;:::-;33640:2;33635:3;33631:12;33624:19;;33283:366;;;:::o;33655:419::-;33821:4;33859:2;33848:9;33844:18;33836:26;;33908:9;33902:4;33898:20;33894:1;33883:9;33879:17;33872:47;33936:131;34062:4;33936:131;:::i;:::-;33928:139;;33655:419;;;:::o;34080:231::-;34220:34;34216:1;34208:6;34204:14;34197:58;34289:14;34284:2;34276:6;34272:15;34265:39;34080:231;:::o;34317:366::-;34459:3;34480:67;34544:2;34539:3;34480:67;:::i;:::-;34473:74;;34556:93;34645:3;34556:93;:::i;:::-;34674:2;34669:3;34665:12;34658:19;;34317:366;;;:::o;34689:419::-;34855:4;34893:2;34882:9;34878:18;34870:26;;34942:9;34936:4;34932:20;34928:1;34917:9;34913:17;34906:47;34970:131;35096:4;34970:131;:::i;:::-;34962:139;;34689:419;;;:::o;35114:224::-;35254:34;35250:1;35242:6;35238:14;35231:58;35323:7;35318:2;35310:6;35306:15;35299:32;35114:224;:::o;35344:366::-;35486:3;35507:67;35571:2;35566:3;35507:67;:::i;:::-;35500:74;;35583:93;35672:3;35583:93;:::i;:::-;35701:2;35696:3;35692:12;35685:19;;35344:366;;;:::o;35716:419::-;35882:4;35920:2;35909:9;35905:18;35897:26;;35969:9;35963:4;35959:20;35955:1;35944:9;35940:17;35933:47;35997:131;36123:4;35997:131;:::i;:::-;35989:139;;35716:419;;;:::o;36141:223::-;36281:34;36277:1;36269:6;36265:14;36258:58;36350:6;36345:2;36337:6;36333:15;36326:31;36141:223;:::o;36370:366::-;36512:3;36533:67;36597:2;36592:3;36533:67;:::i;:::-;36526:74;;36609:93;36698:3;36609:93;:::i;:::-;36727:2;36722:3;36718:12;36711:19;;36370:366;;;:::o;36742:419::-;36908:4;36946:2;36935:9;36931:18;36923:26;;36995:9;36989:4;36985:20;36981:1;36970:9;36966:17;36959:47;37023:131;37149:4;37023:131;:::i;:::-;37015:139;;36742:419;;;:::o;37167:191::-;37207:4;37227:20;37245:1;37227:20;:::i;:::-;37222:25;;37261:20;37279:1;37261:20;:::i;:::-;37256:25;;37300:1;37297;37294:8;37291:34;;;37305:18;;:::i;:::-;37291:34;37350:1;37347;37343:9;37335:17;;37167:191;;;;:::o;37364:175::-;37504:27;37500:1;37492:6;37488:14;37481:51;37364:175;:::o;37545:366::-;37687:3;37708:67;37772:2;37767:3;37708:67;:::i;:::-;37701:74;;37784:93;37873:3;37784:93;:::i;:::-;37902:2;37897:3;37893:12;37886:19;;37545:366;;;:::o;37917:419::-;38083:4;38121:2;38110:9;38106:18;38098:26;;38170:9;38164:4;38160:20;38156:1;38145:9;38141:17;38134:47;38198:131;38324:4;38198:131;:::i;:::-;38190:139;;37917:419;;;:::o;38342:237::-;38482:34;38478:1;38470:6;38466:14;38459:58;38551:20;38546:2;38538:6;38534:15;38527:45;38342:237;:::o;38585:366::-;38727:3;38748:67;38812:2;38807:3;38748:67;:::i;:::-;38741:74;;38824:93;38913:3;38824:93;:::i;:::-;38942:2;38937:3;38933:12;38926:19;;38585:366;;;:::o;38957:419::-;39123:4;39161:2;39150:9;39146:18;39138:26;;39210:9;39204:4;39200:20;39196:1;39185:9;39181:17;39174:47;39238:131;39364:4;39238:131;:::i;:::-;39230:139;;38957:419;;;:::o;39382:180::-;39430:77;39427:1;39420:88;39527:4;39524:1;39517:15;39551:4;39548:1;39541:15;39568:185;39608:1;39625:20;39643:1;39625:20;:::i;:::-;39620:25;;39659:20;39677:1;39659:20;:::i;:::-;39654:25;;39698:1;39688:35;;39703:18;;:::i;:::-;39688:35;39745:1;39742;39738:9;39733:14;;39568:185;;;;:::o;39759:176::-;39791:1;39808:20;39826:1;39808:20;:::i;:::-;39803:25;;39842:20;39860:1;39842:20;:::i;:::-;39837:25;;39881:1;39871:35;;39886:18;;:::i;:::-;39871:35;39927:1;39924;39920:9;39915:14;;39759:176;;;;:::o;39941:98::-;39992:6;40026:5;40020:12;40010:22;;39941:98;;;:::o;40045:168::-;40128:11;40162:6;40157:3;40150:19;40202:4;40197:3;40193:14;40178:29;;40045:168;;;;:::o;40219:360::-;40305:3;40333:38;40365:5;40333:38;:::i;:::-;40387:70;40450:6;40445:3;40387:70;:::i;:::-;40380:77;;40466:52;40511:6;40506:3;40499:4;40492:5;40488:16;40466:52;:::i;:::-;40543:29;40565:6;40543:29;:::i;:::-;40538:3;40534:39;40527:46;;40309:270;40219:360;;;;:::o;40585:640::-;40780:4;40818:3;40807:9;40803:19;40795:27;;40832:71;40900:1;40889:9;40885:17;40876:6;40832:71;:::i;:::-;40913:72;40981:2;40970:9;40966:18;40957:6;40913:72;:::i;:::-;40995;41063:2;41052:9;41048:18;41039:6;40995:72;:::i;:::-;41114:9;41108:4;41104:20;41099:2;41088:9;41084:18;41077:48;41142:76;41213:4;41204:6;41142:76;:::i;:::-;41134:84;;40585:640;;;;;;;:::o;41231:141::-;41287:5;41318:6;41312:13;41303:22;;41334:32;41360:5;41334:32;:::i;:::-;41231:141;;;;:::o;41378:349::-;41447:6;41496:2;41484:9;41475:7;41471:23;41467:32;41464:119;;;41502:79;;:::i;:::-;41464:119;41622:1;41647:63;41702:7;41693:6;41682:9;41678:22;41647:63;:::i;:::-;41637:73;;41593:127;41378:349;;;;:::o;41733:182::-;41873:34;41869:1;41861:6;41857:14;41850:58;41733:182;:::o;41921:366::-;42063:3;42084:67;42148:2;42143:3;42084:67;:::i;:::-;42077:74;;42160:93;42249:3;42160:93;:::i;:::-;42278:2;42273:3;42269:12;42262:19;;41921:366;;;:::o;42293:419::-;42459:4;42497:2;42486:9;42482:18;42474:26;;42546:9;42540:4;42536:20;42532:1;42521:9;42517:17;42510:47;42574:131;42700:4;42574:131;:::i;:::-;42566:139;;42293:419;;;:::o;42718:178::-;42858:30;42854:1;42846:6;42842:14;42835:54;42718:178;:::o;42902:366::-;43044:3;43065:67;43129:2;43124:3;43065:67;:::i;:::-;43058:74;;43141:93;43230:3;43141:93;:::i;:::-;43259:2;43254:3;43250:12;43243:19;;42902:366;;;:::o;43274:419::-;43440:4;43478:2;43467:9;43463:18;43455:26;;43527:9;43521:4;43517:20;43513:1;43502:9;43498:17;43491:47;43555:131;43681:4;43555:131;:::i;:::-;43547:139;;43274:419;;;:::o

Swarm Source

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