ETH Price: $3,445.75 (-2.56%)
Gas: 2 Gwei

Token

Touns (TOUNS)
 

Overview

Max Total Supply

460 TOUNS

Holders

72

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
20 TOUNS
0xa771e41c82c4cc9a8b4ace52224ecbde3bebdaff
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:
Touns

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-02-19
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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/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: contracts/Touns.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

abstract contract Ownable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = msg.sender;
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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() == msg.sender, "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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @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..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * 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 tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // 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.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @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) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        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.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        string memory extensionURI = _extensionURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), extensionURI)) : '';
    }

    /**
     * @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 '';
    }

    function _extensionURI() internal view virtual returns (string memory) {
        return '.json';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _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**128.
        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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), 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**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 TransferToNonERC721ReceiverImplementer();
                } 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.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

contract Touns is ERC721A, Ownable {

    string baseURI = '';
    string extensionURI = '.json';
    uint256 public price = 0.0169 ether;
    uint256 public constant MAX_SUPPLY = 6969;
    uint256 public constant MAX_MULTIMINT = 20;

  constructor() ERC721A("Touns", "TOUNS") {
      _safeMint(0x85e622FA9c75bd148e9366e7d09E73fA4B3669ee, 100); // for giveaways 
  }

    function setBaseURI(string calldata _baseURI) external onlyOwner {
    baseURI = _baseURI;
    }

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

    function _extensionURI() internal view virtual override returns (string memory) {
    return extensionURI;
    }

    function setExtensionURI(string calldata _extensionURI) external onlyOwner {
    extensionURI = _extensionURI;
    }

  function mint(uint256 quantity) external payable {
    require(totalSupply() + quantity - 1 < MAX_SUPPLY, "Exceeds max supply");

    require(quantity <= MAX_MULTIMINT, "Mint at most 20 at a time");

    require(
      msg.value >= price * quantity, "Insufficient Ether"
    );

    _safeMint(msg.sender, quantity);
  }

  function setPrice(uint256 _newPrice) public onlyOwner() {
      price = _newPrice;
  }

  function withdraw() public onlyOwner {
    uint256 balance = address(this).balance;

    Address.sendValue(payable(0x85e622FA9c75bd148e9366e7d09E73fA4B3669ee), balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":[],"name":"MAX_MULTIMINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":[{"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"string","name":"_extensionURI","type":"string"}],"name":"setExtensionURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

608060405260405180602001604052806000815250600890805190602001906200002b929190620007dc565b506040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506009908051906020019062000079929190620007dc565b50663c0a75e0b44000600a553480156200009257600080fd5b506040518060400160405280600581526020017f546f756e730000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f544f554e53000000000000000000000000000000000000000000000000000000815250816001908051906020019062000117929190620007dc565b50806002908051906020019062000130929190620007dc565b505050600033905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001fc7385e622fa9c75bd148e9366e7d09e73fa4b3669ee60646200020260201b60201c565b62000add565b620002248282604051806020016040528060008152506200022860201b60201c565b5050565b6200023d83838360016200024260201b60201c565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620002de576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156200031a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200032f6000868387620005f660201b60201c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015620005a057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015620005525750620005506000888488620005fc60201b60201c565b155b156200058a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050620004cd565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050620005ef6000868387620007ab60201b60201c565b5050505050565b50505050565b60006200062a8473ffffffffffffffffffffffffffffffffffffffff16620007b160201b6200189f1760201c565b156200079e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200065c620007d460201b60201c565b8786866040518563ffffffff1660e01b815260040162000680949392919062000938565b602060405180830381600087803b1580156200069b57600080fd5b505af1925050508015620006cf57506040513d601f19601f82011682018060405250810190620006cc9190620008a3565b60015b6200074d573d806000811462000702576040519150601f19603f3d011682016040523d82523d6000602084013e62000707565b606091505b5060008151141562000745576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620007a3565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600033905090565b828054620007ea9062000a48565b90600052602060002090601f0160209004810192826200080e57600085556200085a565b82601f106200082957805160ff19168380011785556200085a565b828001600101855582156200085a579182015b82811115620008595782518255916020019190600101906200083c565b5b5090506200086991906200086d565b5090565b5b80821115620008885760008160009055506001016200086e565b5090565b6000815190506200089d8162000ac3565b92915050565b600060208284031215620008bc57620008bb62000aad565b5b6000620008cc848285016200088c565b91505092915050565b620008e081620009a8565b82525050565b6000620008f3826200098c565b620008ff818562000997565b93506200091181856020860162000a12565b6200091c8162000ab2565b840191505092915050565b620009328162000a08565b82525050565b60006080820190506200094f6000830187620008d5565b6200095e6020830186620008d5565b6200096d604083018562000927565b8181036060830152620009818184620008e6565b905095945050505050565b600081519050919050565b600082825260208201905092915050565b6000620009b582620009e8565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000a3257808201518184015260208101905062000a15565b8381111562000a42576000848401525b50505050565b6000600282049050600182168062000a6157607f821691505b6020821081141562000a785762000a7762000a7e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b62000ace81620009bc565b811462000ada57600080fd5b50565b6139cb8062000aed6000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063a22cb4651161008a578063c3bb8c6411610064578063c3bb8c64146105a5578063c87b56dd146105ce578063e985e9c51461060b578063f2fde38b146106485761019c565b8063a22cb46514610528578063b88d4fde14610551578063b8fc10511461057a5761019c565b806391b7f5ed116100c657806391b7f5ed1461048d57806395d89b41146104b6578063a035b1fe146104e1578063a0712d681461050c5761019c565b806370a082311461040e578063715018a61461044b5780638da5cb5b146104625761019c565b80632f745c591161015957806342842e0e1161013357806342842e0e146103425780634f6ccce71461036b57806355f804b3146103a85780636352211e146103d15761019c565b80632f745c59146102c357806332cb6b0c146103005780633ccfd60b1461032b5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612ec4565b610671565b6040516101d5919061322d565b60405180910390f35b3480156101ea57600080fd5b506101f36107bb565b6040516102009190613248565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612f6b565b61084d565b60405161023d91906131c6565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612e84565b6108c9565b005b34801561027b57600080fd5b506102846109d4565b604051610291919061334a565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612d6e565b610a29565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190612e84565b610a39565b6040516102f7919061334a565b60405180910390f35b34801561030c57600080fd5b50610315610c40565b604051610322919061334a565b60405180910390f35b34801561033757600080fd5b50610340610c46565b005b34801561034e57600080fd5b5061036960048036038101906103649190612d6e565b610ce1565b005b34801561037757600080fd5b50610392600480360381019061038d9190612f6b565b610d01565b60405161039f919061334a565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca9190612f1e565b610e72565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190612f6b565b610efd565b60405161040591906131c6565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190612d01565b610f13565b604051610442919061334a565b60405180910390f35b34801561045757600080fd5b50610460610fe3565b005b34801561046e57600080fd5b50610477611119565b60405161048491906131c6565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190612f6b565b611143565b005b3480156104c257600080fd5b506104cb6111c2565b6040516104d89190613248565b60405180910390f35b3480156104ed57600080fd5b506104f6611254565b604051610503919061334a565b60405180910390f35b61052660048036038101906105219190612f6b565b61125a565b005b34801561053457600080fd5b5061054f600480360381019061054a9190612e44565b61135d565b005b34801561055d57600080fd5b5061057860048036038101906105739190612dc1565b6114d5565b005b34801561058657600080fd5b5061058f611528565b60405161059c919061334a565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190612f1e565b61152d565b005b3480156105da57600080fd5b506105f560048036038101906105f09190612f6b565b6115b8565b6040516106029190613248565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d9190612d2e565b611666565b60405161063f919061322d565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190612d01565b6116fa565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b457506107b3826118c2565b5b9050919050565b6060600180546107ca906135d4565b80601f01602080910402602001604051908101604052809291908181526020018280546107f6906135d4565b80156108435780601f1061081857610100808354040283529160200191610843565b820191906000526020600020905b81548152906001019060200180831161082657829003601f168201915b5050505050905090565b60006108588261192c565b61088e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108d482610efd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561093c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095b611994565b73ffffffffffffffffffffffffffffffffffffffff161415801561098d575061098b81610986611994565b611666565b155b156109c4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109cf83838361199c565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610a34838383611a4e565b505050565b6000610a4483610f13565b8210610a7c576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610c34576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610b935750610c27565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bd357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c255786841415610c1c578195505050505050610c3a565b83806001019450505b505b8080600101915050610ab6565b50600080fd5b92915050565b611b3981565b3373ffffffffffffffffffffffffffffffffffffffff16610c65611119565b73ffffffffffffffffffffffffffffffffffffffff1614610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb29061330a565b60405180910390fd5b6000479050610cde7385e622fa9c75bd148e9366e7d09e73fa4b3669ee82611f6b565b50565b610cfc838383604051806020016040528060008152506114d5565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015610e3a576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610e2c5785831415610e235781945050505050610e6d565b82806001019350505b508080600101915050610d39565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b3373ffffffffffffffffffffffffffffffffffffffff16610e91611119565b73ffffffffffffffffffffffffffffffffffffffff1614610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede9061330a565b60405180910390fd5b818160089190610ef8929190612aec565b505050565b6000610f088261205f565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16611002611119565b73ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f9061330a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16611162611119565b73ffffffffffffffffffffffffffffffffffffffff16146111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af9061330a565b60405180910390fd5b80600a8190555050565b6060600280546111d1906135d4565b80601f01602080910402602001604051908101604052809291908181526020018280546111fd906135d4565b801561124a5780601f1061121f5761010080835404028352916020019161124a565b820191906000526020600020905b81548152906001019060200180831161122d57829003601f168201915b5050505050905090565b600a5481565b611b396001826112686109d4565b6112729190613409565b61127c91906134ea565b106112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b3906132ea565b60405180910390fd5b6014811115611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f79061332a565b60405180910390fd5b80600a5461130e9190613490565b341015611350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611347906132ca565b60405180910390fd5b61135a3382612307565b50565b611365611994565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ca576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006113d7611994565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611484611994565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114c9919061322d565b60405180910390a35050565b6114e0848484611a4e565b6114ec84848484612325565b611522576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b601481565b3373ffffffffffffffffffffffffffffffffffffffff1661154c611119565b73ffffffffffffffffffffffffffffffffffffffff16146115a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115999061330a565b60405180910390fd5b8181600991906115b3929190612aec565b505050565b60606115c38261192c565b6115f9576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116036124b3565b9050600061160f612545565b9050600082511415611630576040518060200160405280600081525061165d565b8161163a856125d7565b8260405160200161164d93929190613180565b6040516020818303038152906040525b92505050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16611719611119565b73ffffffffffffffffffffffffffffffffffffffff161461176f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117669061330a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d69061326a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168210801561198d575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611a598261205f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a80611994565b73ffffffffffffffffffffffffffffffffffffffff161480611ab35750611ab28260000151611aad611994565b611666565b5b80611af85750611ac1611994565b73ffffffffffffffffffffffffffffffffffffffff16611ae08461084d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b31576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b9a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c01576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c0e8585856001612738565b611c1e600084846000015161199c565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611efb5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015611efa5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f64858585600161273e565b5050505050565b80471015611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa5906132aa565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611fd4906131b1565b60006040518083038185875af1925050503d8060008114612011576040519150601f19603f3d011682016040523d82523d6000602084013e612016565b606091505b505090508061205a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120519061328a565b60405180910390fd5b505050565b612067612b72565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156122d0576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122ce57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121b2578092505050612302565b5b6001156122cd57818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122c8578092505050612302565b6121b3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612321828260405180602001604052806000815250612744565b5050565b60006123468473ffffffffffffffffffffffffffffffffffffffff1661189f565b156124a6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261236f611994565b8786866040518563ffffffff1660e01b815260040161239194939291906131e1565b602060405180830381600087803b1580156123ab57600080fd5b505af19250505080156123dc57506040513d601f19601f820116820180604052508101906123d99190612ef1565b60015b612456573d806000811461240c576040519150601f19603f3d011682016040523d82523d6000602084013e612411565b606091505b5060008151141561244e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124ab565b600190505b949350505050565b6060600880546124c2906135d4565b80601f01602080910402602001604051908101604052809291908181526020018280546124ee906135d4565b801561253b5780601f106125105761010080835404028352916020019161253b565b820191906000526020600020905b81548152906001019060200180831161251e57829003601f168201915b5050505050905090565b606060098054612554906135d4565b80601f0160208091040260200160405190810160405280929190818152602001828054612580906135d4565b80156125cd5780601f106125a2576101008083540402835291602001916125cd565b820191906000526020600020905b8154815290600101906020018083116125b057829003601f168201915b5050505050905090565b6060600082141561261f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612733565b600082905060005b6000821461265157808061263a90613637565b915050600a8261264a919061345f565b9150612627565b60008167ffffffffffffffff81111561266d5761266c61376d565b5b6040519080825280601f01601f19166020018201604052801561269f5781602001600182028036833780820191505090505b5090505b6000851461272c576001826126b891906134ea565b9150600a856126c79190613680565b60306126d39190613409565b60f81b8183815181106126e9576126e861373e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612725919061345f565b94506126a3565b8093505050505b919050565b50505050565b50505050565b6127518383836001612756565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127f1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561282c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128396000868387612738565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612a9e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612a525750612a506000888488612325565b155b15612a89576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506129d7565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050612ae5600086838761273e565b5050505050565b828054612af8906135d4565b90600052602060002090601f016020900481019282612b1a5760008555612b61565b82601f10612b3357803560ff1916838001178555612b61565b82800160010185558215612b61579182015b82811115612b60578235825591602001919060010190612b45565b5b509050612b6e9190612bb5565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612bce576000816000905550600101612bb6565b5090565b6000612be5612be08461338a565b613365565b905082815260208101848484011115612c0157612c006137ab565b5b612c0c848285613592565b509392505050565b600081359050612c2381613939565b92915050565b600081359050612c3881613950565b92915050565b600081359050612c4d81613967565b92915050565b600081519050612c6281613967565b92915050565b600082601f830112612c7d57612c7c6137a1565b5b8135612c8d848260208601612bd2565b91505092915050565b60008083601f840112612cac57612cab6137a1565b5b8235905067ffffffffffffffff811115612cc957612cc861379c565b5b602083019150836001820283011115612ce557612ce46137a6565b5b9250929050565b600081359050612cfb8161397e565b92915050565b600060208284031215612d1757612d166137b5565b5b6000612d2584828501612c14565b91505092915050565b60008060408385031215612d4557612d446137b5565b5b6000612d5385828601612c14565b9250506020612d6485828601612c14565b9150509250929050565b600080600060608486031215612d8757612d866137b5565b5b6000612d9586828701612c14565b9350506020612da686828701612c14565b9250506040612db786828701612cec565b9150509250925092565b60008060008060808587031215612ddb57612dda6137b5565b5b6000612de987828801612c14565b9450506020612dfa87828801612c14565b9350506040612e0b87828801612cec565b925050606085013567ffffffffffffffff811115612e2c57612e2b6137b0565b5b612e3887828801612c68565b91505092959194509250565b60008060408385031215612e5b57612e5a6137b5565b5b6000612e6985828601612c14565b9250506020612e7a85828601612c29565b9150509250929050565b60008060408385031215612e9b57612e9a6137b5565b5b6000612ea985828601612c14565b9250506020612eba85828601612cec565b9150509250929050565b600060208284031215612eda57612ed96137b5565b5b6000612ee884828501612c3e565b91505092915050565b600060208284031215612f0757612f066137b5565b5b6000612f1584828501612c53565b91505092915050565b60008060208385031215612f3557612f346137b5565b5b600083013567ffffffffffffffff811115612f5357612f526137b0565b5b612f5f85828601612c96565b92509250509250929050565b600060208284031215612f8157612f806137b5565b5b6000612f8f84828501612cec565b91505092915050565b612fa18161351e565b82525050565b612fb081613530565b82525050565b6000612fc1826133bb565b612fcb81856133d1565b9350612fdb8185602086016135a1565b612fe4816137ba565b840191505092915050565b6000612ffa826133c6565b61300481856133ed565b93506130148185602086016135a1565b61301d816137ba565b840191505092915050565b6000613033826133c6565b61303d81856133fe565b935061304d8185602086016135a1565b80840191505092915050565b60006130666026836133ed565b9150613071826137cb565b604082019050919050565b6000613089603a836133ed565b91506130948261381a565b604082019050919050565b60006130ac601d836133ed565b91506130b782613869565b602082019050919050565b60006130cf6012836133ed565b91506130da82613892565b602082019050919050565b60006130f26012836133ed565b91506130fd826138bb565b602082019050919050565b60006131156020836133ed565b9150613120826138e4565b602082019050919050565b60006131386019836133ed565b91506131438261390d565b602082019050919050565b600061315b6000836133e2565b915061316682613936565b600082019050919050565b61317a81613588565b82525050565b600061318c8286613028565b91506131988285613028565b91506131a48284613028565b9150819050949350505050565b60006131bc8261314e565b9150819050919050565b60006020820190506131db6000830184612f98565b92915050565b60006080820190506131f66000830187612f98565b6132036020830186612f98565b6132106040830185613171565b81810360608301526132228184612fb6565b905095945050505050565b60006020820190506132426000830184612fa7565b92915050565b600060208201905081810360008301526132628184612fef565b905092915050565b6000602082019050818103600083015261328381613059565b9050919050565b600060208201905081810360008301526132a38161307c565b9050919050565b600060208201905081810360008301526132c38161309f565b9050919050565b600060208201905081810360008301526132e3816130c2565b9050919050565b60006020820190508181036000830152613303816130e5565b9050919050565b6000602082019050818103600083015261332381613108565b9050919050565b600060208201905081810360008301526133438161312b565b9050919050565b600060208201905061335f6000830184613171565b92915050565b600061336f613380565b905061337b8282613606565b919050565b6000604051905090565b600067ffffffffffffffff8211156133a5576133a461376d565b5b6133ae826137ba565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061341482613588565b915061341f83613588565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613454576134536136b1565b5b828201905092915050565b600061346a82613588565b915061347583613588565b925082613485576134846136e0565b5b828204905092915050565b600061349b82613588565b91506134a683613588565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134df576134de6136b1565b5b828202905092915050565b60006134f582613588565b915061350083613588565b925082821015613513576135126136b1565b5b828203905092915050565b600061352982613568565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135bf5780820151818401526020810190506135a4565b838111156135ce576000848401525b50505050565b600060028204905060018216806135ec57607f821691505b60208210811415613600576135ff61370f565b5b50919050565b61360f826137ba565b810181811067ffffffffffffffff8211171561362e5761362d61376d565b5b80604052505050565b600061364282613588565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613675576136746136b1565b5b600182019050919050565b600061368b82613588565b915061369683613588565b9250826136a6576136a56136e0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f496e73756666696369656e742045746865720000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74206174206d6f737420323020617420612074696d6500000000000000600082015250565b50565b6139428161351e565b811461394d57600080fd5b50565b61395981613530565b811461396457600080fd5b50565b6139708161353c565b811461397b57600080fd5b50565b61398781613588565b811461399257600080fd5b5056fea264697066735822122084223e9d41df835f2720d5b3cfc8d0f51f4245756739a66e7a55392abefe884e64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806370a08231116100ec578063a22cb4651161008a578063c3bb8c6411610064578063c3bb8c64146105a5578063c87b56dd146105ce578063e985e9c51461060b578063f2fde38b146106485761019c565b8063a22cb46514610528578063b88d4fde14610551578063b8fc10511461057a5761019c565b806391b7f5ed116100c657806391b7f5ed1461048d57806395d89b41146104b6578063a035b1fe146104e1578063a0712d681461050c5761019c565b806370a082311461040e578063715018a61461044b5780638da5cb5b146104625761019c565b80632f745c591161015957806342842e0e1161013357806342842e0e146103425780634f6ccce71461036b57806355f804b3146103a85780636352211e146103d15761019c565b80632f745c59146102c357806332cb6b0c146103005780633ccfd60b1461032b5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612ec4565b610671565b6040516101d5919061322d565b60405180910390f35b3480156101ea57600080fd5b506101f36107bb565b6040516102009190613248565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612f6b565b61084d565b60405161023d91906131c6565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612e84565b6108c9565b005b34801561027b57600080fd5b506102846109d4565b604051610291919061334a565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612d6e565b610a29565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190612e84565b610a39565b6040516102f7919061334a565b60405180910390f35b34801561030c57600080fd5b50610315610c40565b604051610322919061334a565b60405180910390f35b34801561033757600080fd5b50610340610c46565b005b34801561034e57600080fd5b5061036960048036038101906103649190612d6e565b610ce1565b005b34801561037757600080fd5b50610392600480360381019061038d9190612f6b565b610d01565b60405161039f919061334a565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca9190612f1e565b610e72565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190612f6b565b610efd565b60405161040591906131c6565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190612d01565b610f13565b604051610442919061334a565b60405180910390f35b34801561045757600080fd5b50610460610fe3565b005b34801561046e57600080fd5b50610477611119565b60405161048491906131c6565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190612f6b565b611143565b005b3480156104c257600080fd5b506104cb6111c2565b6040516104d89190613248565b60405180910390f35b3480156104ed57600080fd5b506104f6611254565b604051610503919061334a565b60405180910390f35b61052660048036038101906105219190612f6b565b61125a565b005b34801561053457600080fd5b5061054f600480360381019061054a9190612e44565b61135d565b005b34801561055d57600080fd5b5061057860048036038101906105739190612dc1565b6114d5565b005b34801561058657600080fd5b5061058f611528565b60405161059c919061334a565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190612f1e565b61152d565b005b3480156105da57600080fd5b506105f560048036038101906105f09190612f6b565b6115b8565b6040516106029190613248565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d9190612d2e565b611666565b60405161063f919061322d565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190612d01565b6116fa565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b457506107b3826118c2565b5b9050919050565b6060600180546107ca906135d4565b80601f01602080910402602001604051908101604052809291908181526020018280546107f6906135d4565b80156108435780601f1061081857610100808354040283529160200191610843565b820191906000526020600020905b81548152906001019060200180831161082657829003601f168201915b5050505050905090565b60006108588261192c565b61088e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108d482610efd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561093c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095b611994565b73ffffffffffffffffffffffffffffffffffffffff161415801561098d575061098b81610986611994565b611666565b155b156109c4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109cf83838361199c565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610a34838383611a4e565b505050565b6000610a4483610f13565b8210610a7c576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610c34576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610b935750610c27565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bd357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c255786841415610c1c578195505050505050610c3a565b83806001019450505b505b8080600101915050610ab6565b50600080fd5b92915050565b611b3981565b3373ffffffffffffffffffffffffffffffffffffffff16610c65611119565b73ffffffffffffffffffffffffffffffffffffffff1614610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb29061330a565b60405180910390fd5b6000479050610cde7385e622fa9c75bd148e9366e7d09e73fa4b3669ee82611f6b565b50565b610cfc838383604051806020016040528060008152506114d5565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015610e3a576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610e2c5785831415610e235781945050505050610e6d565b82806001019350505b508080600101915050610d39565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b3373ffffffffffffffffffffffffffffffffffffffff16610e91611119565b73ffffffffffffffffffffffffffffffffffffffff1614610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede9061330a565b60405180910390fd5b818160089190610ef8929190612aec565b505050565b6000610f088261205f565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16611002611119565b73ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f9061330a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16611162611119565b73ffffffffffffffffffffffffffffffffffffffff16146111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af9061330a565b60405180910390fd5b80600a8190555050565b6060600280546111d1906135d4565b80601f01602080910402602001604051908101604052809291908181526020018280546111fd906135d4565b801561124a5780601f1061121f5761010080835404028352916020019161124a565b820191906000526020600020905b81548152906001019060200180831161122d57829003601f168201915b5050505050905090565b600a5481565b611b396001826112686109d4565b6112729190613409565b61127c91906134ea565b106112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b3906132ea565b60405180910390fd5b6014811115611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f79061332a565b60405180910390fd5b80600a5461130e9190613490565b341015611350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611347906132ca565b60405180910390fd5b61135a3382612307565b50565b611365611994565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ca576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006113d7611994565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611484611994565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114c9919061322d565b60405180910390a35050565b6114e0848484611a4e565b6114ec84848484612325565b611522576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b601481565b3373ffffffffffffffffffffffffffffffffffffffff1661154c611119565b73ffffffffffffffffffffffffffffffffffffffff16146115a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115999061330a565b60405180910390fd5b8181600991906115b3929190612aec565b505050565b60606115c38261192c565b6115f9576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116036124b3565b9050600061160f612545565b9050600082511415611630576040518060200160405280600081525061165d565b8161163a856125d7565b8260405160200161164d93929190613180565b6040516020818303038152906040525b92505050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16611719611119565b73ffffffffffffffffffffffffffffffffffffffff161461176f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117669061330a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d69061326a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168210801561198d575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611a598261205f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a80611994565b73ffffffffffffffffffffffffffffffffffffffff161480611ab35750611ab28260000151611aad611994565b611666565b5b80611af85750611ac1611994565b73ffffffffffffffffffffffffffffffffffffffff16611ae08461084d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b31576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b9a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c01576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c0e8585856001612738565b611c1e600084846000015161199c565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611efb5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015611efa5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f64858585600161273e565b5050505050565b80471015611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa5906132aa565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611fd4906131b1565b60006040518083038185875af1925050503d8060008114612011576040519150601f19603f3d011682016040523d82523d6000602084013e612016565b606091505b505090508061205a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120519061328a565b60405180910390fd5b505050565b612067612b72565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156122d0576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122ce57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121b2578092505050612302565b5b6001156122cd57818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122c8578092505050612302565b6121b3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612321828260405180602001604052806000815250612744565b5050565b60006123468473ffffffffffffffffffffffffffffffffffffffff1661189f565b156124a6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261236f611994565b8786866040518563ffffffff1660e01b815260040161239194939291906131e1565b602060405180830381600087803b1580156123ab57600080fd5b505af19250505080156123dc57506040513d601f19601f820116820180604052508101906123d99190612ef1565b60015b612456573d806000811461240c576040519150601f19603f3d011682016040523d82523d6000602084013e612411565b606091505b5060008151141561244e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124ab565b600190505b949350505050565b6060600880546124c2906135d4565b80601f01602080910402602001604051908101604052809291908181526020018280546124ee906135d4565b801561253b5780601f106125105761010080835404028352916020019161253b565b820191906000526020600020905b81548152906001019060200180831161251e57829003601f168201915b5050505050905090565b606060098054612554906135d4565b80601f0160208091040260200160405190810160405280929190818152602001828054612580906135d4565b80156125cd5780601f106125a2576101008083540402835291602001916125cd565b820191906000526020600020905b8154815290600101906020018083116125b057829003601f168201915b5050505050905090565b6060600082141561261f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612733565b600082905060005b6000821461265157808061263a90613637565b915050600a8261264a919061345f565b9150612627565b60008167ffffffffffffffff81111561266d5761266c61376d565b5b6040519080825280601f01601f19166020018201604052801561269f5781602001600182028036833780820191505090505b5090505b6000851461272c576001826126b891906134ea565b9150600a856126c79190613680565b60306126d39190613409565b60f81b8183815181106126e9576126e861373e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612725919061345f565b94506126a3565b8093505050505b919050565b50505050565b50505050565b6127518383836001612756565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127f1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561282c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128396000868387612738565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612a9e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612a525750612a506000888488612325565b155b15612a89576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506129d7565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050612ae5600086838761273e565b5050505050565b828054612af8906135d4565b90600052602060002090601f016020900481019282612b1a5760008555612b61565b82601f10612b3357803560ff1916838001178555612b61565b82800160010185558215612b61579182015b82811115612b60578235825591602001919060010190612b45565b5b509050612b6e9190612bb5565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612bce576000816000905550600101612bb6565b5090565b6000612be5612be08461338a565b613365565b905082815260208101848484011115612c0157612c006137ab565b5b612c0c848285613592565b509392505050565b600081359050612c2381613939565b92915050565b600081359050612c3881613950565b92915050565b600081359050612c4d81613967565b92915050565b600081519050612c6281613967565b92915050565b600082601f830112612c7d57612c7c6137a1565b5b8135612c8d848260208601612bd2565b91505092915050565b60008083601f840112612cac57612cab6137a1565b5b8235905067ffffffffffffffff811115612cc957612cc861379c565b5b602083019150836001820283011115612ce557612ce46137a6565b5b9250929050565b600081359050612cfb8161397e565b92915050565b600060208284031215612d1757612d166137b5565b5b6000612d2584828501612c14565b91505092915050565b60008060408385031215612d4557612d446137b5565b5b6000612d5385828601612c14565b9250506020612d6485828601612c14565b9150509250929050565b600080600060608486031215612d8757612d866137b5565b5b6000612d9586828701612c14565b9350506020612da686828701612c14565b9250506040612db786828701612cec565b9150509250925092565b60008060008060808587031215612ddb57612dda6137b5565b5b6000612de987828801612c14565b9450506020612dfa87828801612c14565b9350506040612e0b87828801612cec565b925050606085013567ffffffffffffffff811115612e2c57612e2b6137b0565b5b612e3887828801612c68565b91505092959194509250565b60008060408385031215612e5b57612e5a6137b5565b5b6000612e6985828601612c14565b9250506020612e7a85828601612c29565b9150509250929050565b60008060408385031215612e9b57612e9a6137b5565b5b6000612ea985828601612c14565b9250506020612eba85828601612cec565b9150509250929050565b600060208284031215612eda57612ed96137b5565b5b6000612ee884828501612c3e565b91505092915050565b600060208284031215612f0757612f066137b5565b5b6000612f1584828501612c53565b91505092915050565b60008060208385031215612f3557612f346137b5565b5b600083013567ffffffffffffffff811115612f5357612f526137b0565b5b612f5f85828601612c96565b92509250509250929050565b600060208284031215612f8157612f806137b5565b5b6000612f8f84828501612cec565b91505092915050565b612fa18161351e565b82525050565b612fb081613530565b82525050565b6000612fc1826133bb565b612fcb81856133d1565b9350612fdb8185602086016135a1565b612fe4816137ba565b840191505092915050565b6000612ffa826133c6565b61300481856133ed565b93506130148185602086016135a1565b61301d816137ba565b840191505092915050565b6000613033826133c6565b61303d81856133fe565b935061304d8185602086016135a1565b80840191505092915050565b60006130666026836133ed565b9150613071826137cb565b604082019050919050565b6000613089603a836133ed565b91506130948261381a565b604082019050919050565b60006130ac601d836133ed565b91506130b782613869565b602082019050919050565b60006130cf6012836133ed565b91506130da82613892565b602082019050919050565b60006130f26012836133ed565b91506130fd826138bb565b602082019050919050565b60006131156020836133ed565b9150613120826138e4565b602082019050919050565b60006131386019836133ed565b91506131438261390d565b602082019050919050565b600061315b6000836133e2565b915061316682613936565b600082019050919050565b61317a81613588565b82525050565b600061318c8286613028565b91506131988285613028565b91506131a48284613028565b9150819050949350505050565b60006131bc8261314e565b9150819050919050565b60006020820190506131db6000830184612f98565b92915050565b60006080820190506131f66000830187612f98565b6132036020830186612f98565b6132106040830185613171565b81810360608301526132228184612fb6565b905095945050505050565b60006020820190506132426000830184612fa7565b92915050565b600060208201905081810360008301526132628184612fef565b905092915050565b6000602082019050818103600083015261328381613059565b9050919050565b600060208201905081810360008301526132a38161307c565b9050919050565b600060208201905081810360008301526132c38161309f565b9050919050565b600060208201905081810360008301526132e3816130c2565b9050919050565b60006020820190508181036000830152613303816130e5565b9050919050565b6000602082019050818103600083015261332381613108565b9050919050565b600060208201905081810360008301526133438161312b565b9050919050565b600060208201905061335f6000830184613171565b92915050565b600061336f613380565b905061337b8282613606565b919050565b6000604051905090565b600067ffffffffffffffff8211156133a5576133a461376d565b5b6133ae826137ba565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061341482613588565b915061341f83613588565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613454576134536136b1565b5b828201905092915050565b600061346a82613588565b915061347583613588565b925082613485576134846136e0565b5b828204905092915050565b600061349b82613588565b91506134a683613588565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134df576134de6136b1565b5b828202905092915050565b60006134f582613588565b915061350083613588565b925082821015613513576135126136b1565b5b828203905092915050565b600061352982613568565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135bf5780820151818401526020810190506135a4565b838111156135ce576000848401525b50505050565b600060028204905060018216806135ec57607f821691505b60208210811415613600576135ff61370f565b5b50919050565b61360f826137ba565b810181811067ffffffffffffffff8211171561362e5761362d61376d565b5b80604052505050565b600061364282613588565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613675576136746136b1565b5b600182019050919050565b600061368b82613588565b915061369683613588565b9250826136a6576136a56136e0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f496e73756666696369656e742045746865720000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74206174206d6f737420323020617420612074696d6500000000000000600082015250565b50565b6139428161351e565b811461394d57600080fd5b50565b61395981613530565b811461396457600080fd5b50565b6139708161353c565b811461397b57600080fd5b50565b61398781613588565b811461399257600080fd5b5056fea264697066735822122084223e9d41df835f2720d5b3cfc8d0f51f4245756739a66e7a55392abefe884e64736f6c63430008070033

Deployed Bytecode Sourcemap

45612:1455:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28969:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31579:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33263:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32826:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26206:280;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34120:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27792:1105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45760:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46887:177;;;;;;;;;;;;;:::i;:::-;;34361:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26779:713;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45996:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31388:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29405:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23117:148;;;;;;;;;;;;;:::i;:::-;;22468:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46793:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31748:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45718:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46458:329;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33539:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34617:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45808:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46334:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31923:387;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33889:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23420:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28969:372;29071:4;29123:25;29108:40;;;:11;:40;;;;:105;;;;29180:33;29165:48;;;:11;:48;;;;29108:105;:172;;;;29245:35;29230:50;;;:11;:50;;;;29108:172;:225;;;;29297:36;29321:11;29297:23;:36::i;:::-;29108:225;29088:245;;28969:372;;;:::o;31579:100::-;31633:13;31666:5;31659:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31579:100;:::o;33263:204::-;33331:7;33356:16;33364:7;33356;:16::i;:::-;33351:64;;33381:34;;;;;;;;;;;;;;33351:64;33435:15;:24;33451:7;33435:24;;;;;;;;;;;;;;;;;;;;;33428:31;;33263:204;;;:::o;32826:371::-;32899:13;32915:24;32931:7;32915:15;:24::i;:::-;32899:40;;32960:5;32954:11;;:2;:11;;;32950:48;;;32974:24;;;;;;;;;;;;;;32950:48;33031:5;33015:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33041:37;33058:5;33065:12;:10;:12::i;:::-;33041:16;:37::i;:::-;33040:38;33015:63;33011:138;;;33102:35;;;;;;;;;;;;;;33011:138;33161:28;33170:2;33174:7;33183:5;33161:8;:28::i;:::-;32888:309;32826:371;;:::o;26206:280::-;26259:7;26451:12;;;;;;;;;;;26435:13;;;;;;;;;;:28;26428:35;;;;26206:280;:::o;34120:170::-;34254:28;34264:4;34270:2;34274:7;34254:9;:28::i;:::-;34120:170;;;:::o;27792:1105::-;27881:7;27914:16;27924:5;27914:9;:16::i;:::-;27905:5;:25;27901:61;;27939:23;;;;;;;;;;;;;;27901:61;27973:22;27998:13;;;;;;;;;;;27973:38;;;;28022:19;28052:25;28253:9;28248:557;28268:14;28264:1;:18;28248:557;;;28308:31;28342:11;:14;28354:1;28342:14;;;;;;;;;;;28308:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28379:9;:16;;;28375:73;;;28420:8;;;28375:73;28496:1;28470:28;;:9;:14;;;:28;;;28466:111;;28543:9;:14;;;28523:34;;28466:111;28620:5;28599:26;;:17;:26;;;28595:195;;;28669:5;28654:11;:20;28650:85;;;28710:1;28703:8;;;;;;;;;28650:85;28757:13;;;;;;;28595:195;28289:516;28248:557;28284:3;;;;;;;28248:557;;;;28881:8;;;27792:1105;;;;;:::o;45760:41::-;45797:4;45760:41;:::o;46887:177::-;22699:10;22688:21;;:7;:5;:7::i;:::-;:21;;;22680:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;46931:15:::1;46949:21;46931:39;;46979:79;47005:42;47050:7;46979:17;:79::i;:::-;46924:140;46887:177::o:0;34361:185::-;34499:39;34516:4;34522:2;34526:7;34499:39;;;;;;;;;;;;:16;:39::i;:::-;34361:185;;;:::o;26779:713::-;26846:7;26866:22;26891:13;;;;;;;;;;26866:38;;;;26915:19;27110:9;27105:328;27125:14;27121:1;:18;27105:328;;;27165:31;27199:11;:14;27211:1;27199:14;;;;;;;;;;;27165:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27237:9;:16;;;27232:186;;27297:5;27282:11;:20;27278:85;;;27338:1;27331:8;;;;;;;;27278:85;27385:13;;;;;;;27232:186;27146:287;27141:3;;;;;;;27105:328;;;;27461:23;;;;;;;;;;;;;;26779:713;;;;:::o;45996:98::-;22699:10;22688:21;;:7;:5;:7::i;:::-;:21;;;22680:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;46078:8:::1;;46068:7;:18;;;;;;;:::i;:::-;;45996:98:::0;;:::o;31388:124::-;31452:7;31479:20;31491:7;31479:11;:20::i;:::-;:25;;;31472:32;;31388:124;;;:::o;29405:206::-;29469:7;29510:1;29493:19;;:5;:19;;;29489:60;;;29521:28;;;;;;;;;;;;;;29489:60;29575:12;:19;29588:5;29575:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29567:36;;29560:43;;29405:206;;;:::o;23117:148::-;22699:10;22688:21;;:7;:5;:7::i;:::-;:21;;;22680:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;23224:1:::1;23187:40;;23208:6;;;;;;;;;;;23187:40;;;;;;;;;;;;23255:1;23238:6;;:19;;;;;;;;;;;;;;;;;;23117:148::o:0;22468:87::-;22514:7;22541:6;;;;;;;;;;;22534:13;;22468:87;:::o;46793:88::-;22699:10;22688:21;;:7;:5;:7::i;:::-;:21;;;22680:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;46866:9:::1;46858:5;:17;;;;46793:88:::0;:::o;31748:104::-;31804:13;31837:7;31830:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31748:104;:::o;45718:35::-;;;;:::o;46458:329::-;45797:4;46549:1;46538:8;46522:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:28;;;;:::i;:::-;:41;46514:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;45848:2;46603:8;:25;;46595:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46704:8;46696:5;;:16;;;;:::i;:::-;46683:9;:29;;46667:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46750:31;46760:10;46772:8;46750:9;:31::i;:::-;46458:329;:::o;33539:279::-;33642:12;:10;:12::i;:::-;33630:24;;:8;:24;;;33626:54;;;33663:17;;;;;;;;;;;;;;33626:54;33738:8;33693:18;:32;33712:12;:10;:12::i;:::-;33693:32;;;;;;;;;;;;;;;:42;33726:8;33693:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33791:8;33762:48;;33777:12;:10;:12::i;:::-;33762:48;;;33801:8;33762:48;;;;;;:::i;:::-;;;;;;;;33539:279;;:::o;34617:342::-;34784:28;34794:4;34800:2;34804:7;34784:9;:28::i;:::-;34828:48;34851:4;34857:2;34861:7;34870:5;34828:22;:48::i;:::-;34823:129;;34900:40;;;;;;;;;;;;;;34823:129;34617:342;;;;:::o;45808:42::-;45848:2;45808:42;:::o;46334:118::-;22699:10;22688:21;;:7;:5;:7::i;:::-;:21;;;22680:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;46431:13:::1;;46416:12;:28;;;;;;;:::i;:::-;;46334:118:::0;;:::o;31923:387::-;31996:13;32027:16;32035:7;32027;:16::i;:::-;32022:59;;32052:29;;;;;;;;;;;;;;32022:59;32094:21;32118:10;:8;:10::i;:::-;32094:34;;32139:26;32168:15;:13;:15::i;:::-;32139:44;;32226:1;32207:7;32201:21;:26;;:101;;;;;;;;;;;;;;;;;32254:7;32263:18;:7;:16;:18::i;:::-;32283:12;32237:59;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32201:101;32194:108;;;;31923:387;;;:::o;33889:164::-;33986:4;34010:18;:25;34029:5;34010:25;;;;;;;;;;;;;;;:35;34036:8;34010:35;;;;;;;;;;;;;;;;;;;;;;;;;34003:42;;33889:164;;;;:::o;23420:244::-;22699:10;22688:21;;:7;:5;:7::i;:::-;:21;;;22680:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;23529:1:::1;23509:22;;:8;:22;;;;23501:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23619:8;23590:38;;23611:6;;;;;;;;;;;23590:38;;;;;;;;;;;;23648:8;23639:6;;:17;;;;;;;;;;;;;;;;;;23420:244:::0;:::o;4250:326::-;4310:4;4567:1;4545:7;:19;;;:23;4538:30;;4250:326;;;:::o;14333:157::-;14418:4;14457:25;14442:40;;;:11;:40;;;;14435:47;;14333:157;;;:::o;35214:144::-;35271:4;35305:13;;;;;;;;;;;35295:23;;:7;:23;:55;;;;;35323:11;:20;35335:7;35323:20;;;;;;;;;;;:27;;;;;;;;;;;;35322:28;35295:55;35288:62;;35214:144;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;42430:196::-;42572:2;42545:15;:24;42561:7;42545:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42610:7;42606:2;42590:28;;42599:5;42590:28;;;;;;;;;;;;42430:196;;;:::o;37931:2112::-;38046:35;38084:20;38096:7;38084:11;:20::i;:::-;38046:58;;38117:22;38159:13;:18;;;38143:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38194:50;38211:13;:18;;;38231:12;:10;:12::i;:::-;38194:16;:50::i;:::-;38143:101;:154;;;;38285:12;:10;:12::i;:::-;38261:36;;:20;38273:7;38261:11;:20::i;:::-;:36;;;38143:154;38117:181;;38316:17;38311:66;;38342:35;;;;;;;;;;;;;;38311:66;38414:4;38392:26;;:13;:18;;;:26;;;38388:67;;38427:28;;;;;;;;;;;;;;38388:67;38484:1;38470:16;;:2;:16;;;38466:52;;;38495:23;;;;;;;;;;;;;;38466:52;38531:43;38553:4;38559:2;38563:7;38572:1;38531:21;:43::i;:::-;38639:49;38656:1;38660:7;38669:13;:18;;;38639:8;:49::i;:::-;39014:1;38984:12;:18;38997:4;38984:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39058:1;39030:12;:16;39043:2;39030:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39104:2;39076:11;:20;39088:7;39076:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39166:15;39121:11;:20;39133:7;39121:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39434:19;39466:1;39456:7;:11;39434:33;;39527:1;39486:43;;:11;:24;39498:11;39486:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39482:445;;;39711:13;;;;;;;;;;39697:27;;:11;:27;39693:219;;;39781:13;:18;;;39749:11;:24;39761:11;39749:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;39864:13;:28;;;39822:11;:24;39834:11;39822:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;39693:219;39482:445;38959:979;39974:7;39970:2;39955:27;;39964:4;39955:27;;;;;;;;;;;;39993:42;40014:4;40020:2;40024:7;40033:1;39993:20;:42::i;:::-;38035:2008;;37931:2112;;;:::o;5511:317::-;5626:6;5601:21;:31;;5593:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5680:12;5698:9;:14;;5720:6;5698:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5679:52;;;5750:7;5742:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;5582:246;5511:317;;:::o;30243:1083::-;30304:21;;:::i;:::-;30338:12;30353:7;30338:22;;30409:13;;;;;;;;;;30402:20;;:4;:20;30398:861;;;30443:31;30477:11;:17;30489:4;30477:17;;;;;;;;;;;30443:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30518:9;:16;;;30513:731;;30589:1;30563:28;;:9;:14;;;:28;;;30559:101;;30627:9;30620:16;;;;;;30559:101;30964:261;30971:4;30964:261;;;31004:6;;;;;;;;31049:11;:17;31061:4;31049:17;;;;;;;;;;;31037:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31123:1;31097:28;;:9;:14;;;:28;;;31093:109;;31165:9;31158:16;;;;;;31093:109;30964:261;;;30513:731;30424:835;30398:861;31287:31;;;;;;;;;;;;;;30243:1083;;;;:::o;35366:104::-;35435:27;35445:2;35449:8;35435:27;;;;;;;;;;;;:9;:27::i;:::-;35366:104;;:::o;43191:790::-;43346:4;43367:15;:2;:13;;;:15::i;:::-;43363:611;;;43419:2;43403:36;;;43440:12;:10;:12::i;:::-;43454:4;43460:7;43469:5;43403:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43399:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43666:1;43649:6;:13;:18;43645:259;;;43699:40;;;;;;;;;;;;;;43645:259;43854:6;43848:13;43839:6;43835:2;43831:15;43824:38;43399:520;43536:45;;;43526:55;;;:6;:55;;;;43519:62;;;;;43363:611;43958:4;43951:11;;43191:790;;;;;;;:::o;46102:102::-;46162:13;46191:7;46184:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46102:102;:::o;46212:114::-;46277:13;46306:12;46299:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46212:114;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;44629:159::-;;;;;:::o;45447:158::-;;;;;:::o;35833:163::-;35956:32;35962:2;35966:8;35976:5;35983:4;35956:5;:32::i;:::-;35833:163;;;:::o;36255:1422::-;36394:20;36417:13;;;;;;;;;;;36394:36;;;;36459:1;36445:16;;:2;:16;;;36441:48;;;36470:19;;;;;;;;;;;;;;36441:48;36516:1;36504:8;:13;36500:44;;;36526:18;;;;;;;;;;;;;;36500:44;36557:61;36587:1;36591:2;36595:12;36609:8;36557:21;:61::i;:::-;36931:8;36896:12;:16;36909:2;36896:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36995:8;36955:12;:16;36968:2;36955:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37054:2;37021:11;:25;37033:12;37021:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37121:15;37071:11;:25;37083:12;37071:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37154:20;37177:12;37154:35;;37211:9;37206:328;37226:8;37222:1;:12;37206:328;;;37290:12;37286:2;37265:38;;37282:1;37265:38;;;;;;;;;;;;37326:4;:68;;;;;37335:59;37366:1;37370:2;37374:12;37388:5;37335:22;:59::i;:::-;37334:60;37326:68;37322:164;;;37426:40;;;;;;;;;;;;;;37322:164;37504:14;;;;;;;37236:3;;;;;;;37206:328;;;;37574:12;37550:13;;:37;;;;;;;;;;;;;;;;;;36871:728;37609:60;37638:1;37642:2;37646:12;37660:8;37609:20;:60::i;:::-;36383:1294;36255:1422;;;;:::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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:::-;10705:3;10726:67;10790:2;10785:3;10726:67;:::i;:::-;10719:74;;10802:93;10891:3;10802:93;:::i;:::-;10920:2;10915:3;10911:12;10904:19;;10563:366;;;:::o;10935:398::-;11094:3;11115:83;11196:1;11191:3;11115:83;:::i;:::-;11108:90;;11207:93;11296:3;11207:93;:::i;:::-;11325:1;11320:3;11316:11;11309:18;;10935:398;;;:::o;11339:118::-;11426:24;11444:5;11426:24;:::i;:::-;11421:3;11414:37;11339:118;;:::o;11463:595::-;11691:3;11713:95;11804:3;11795:6;11713:95;:::i;:::-;11706:102;;11825:95;11916:3;11907:6;11825:95;:::i;:::-;11818:102;;11937:95;12028:3;12019:6;11937:95;:::i;:::-;11930:102;;12049:3;12042:10;;11463:595;;;;;;:::o;12064:379::-;12248:3;12270:147;12413:3;12270:147;:::i;:::-;12263:154;;12434:3;12427:10;;12064:379;;;:::o;12449:222::-;12542:4;12580:2;12569:9;12565:18;12557:26;;12593:71;12661:1;12650:9;12646:17;12637:6;12593:71;:::i;:::-;12449:222;;;;:::o;12677:640::-;12872:4;12910:3;12899:9;12895:19;12887:27;;12924:71;12992:1;12981:9;12977:17;12968:6;12924:71;:::i;:::-;13005:72;13073:2;13062:9;13058:18;13049:6;13005:72;:::i;:::-;13087;13155:2;13144:9;13140:18;13131:6;13087:72;:::i;:::-;13206:9;13200:4;13196:20;13191:2;13180:9;13176:18;13169:48;13234:76;13305:4;13296:6;13234:76;:::i;:::-;13226:84;;12677:640;;;;;;;:::o;13323:210::-;13410:4;13448:2;13437:9;13433:18;13425:26;;13461:65;13523:1;13512:9;13508:17;13499:6;13461:65;:::i;:::-;13323:210;;;;:::o;13539:313::-;13652:4;13690:2;13679:9;13675:18;13667:26;;13739:9;13733:4;13729:20;13725:1;13714:9;13710:17;13703:47;13767:78;13840:4;13831:6;13767:78;:::i;:::-;13759:86;;13539:313;;;;:::o;13858:419::-;14024:4;14062:2;14051:9;14047:18;14039:26;;14111:9;14105:4;14101:20;14097:1;14086:9;14082:17;14075:47;14139:131;14265:4;14139:131;:::i;:::-;14131:139;;13858:419;;;:::o;14283:::-;14449:4;14487:2;14476:9;14472:18;14464:26;;14536:9;14530:4;14526:20;14522:1;14511:9;14507:17;14500:47;14564:131;14690:4;14564:131;:::i;:::-;14556:139;;14283:419;;;:::o;14708:::-;14874:4;14912:2;14901:9;14897:18;14889:26;;14961:9;14955:4;14951:20;14947:1;14936:9;14932:17;14925:47;14989:131;15115:4;14989:131;:::i;:::-;14981:139;;14708:419;;;:::o;15133:::-;15299:4;15337:2;15326:9;15322:18;15314:26;;15386:9;15380:4;15376:20;15372:1;15361:9;15357:17;15350:47;15414:131;15540:4;15414:131;:::i;:::-;15406:139;;15133:419;;;:::o;15558:::-;15724:4;15762:2;15751:9;15747:18;15739:26;;15811:9;15805:4;15801:20;15797:1;15786:9;15782:17;15775:47;15839:131;15965:4;15839:131;:::i;:::-;15831:139;;15558:419;;;:::o;15983:::-;16149:4;16187:2;16176:9;16172:18;16164:26;;16236:9;16230:4;16226:20;16222:1;16211:9;16207:17;16200:47;16264:131;16390:4;16264:131;:::i;:::-;16256:139;;15983:419;;;:::o;16408:::-;16574:4;16612:2;16601:9;16597:18;16589:26;;16661:9;16655:4;16651:20;16647:1;16636:9;16632:17;16625:47;16689:131;16815:4;16689:131;:::i;:::-;16681:139;;16408:419;;;:::o;16833:222::-;16926:4;16964:2;16953:9;16949:18;16941:26;;16977:71;17045:1;17034:9;17030:17;17021:6;16977:71;:::i;:::-;16833:222;;;;:::o;17061:129::-;17095:6;17122:20;;:::i;:::-;17112:30;;17151:33;17179:4;17171:6;17151:33;:::i;:::-;17061:129;;;:::o;17196:75::-;17229:6;17262:2;17256:9;17246:19;;17196:75;:::o;17277:307::-;17338:4;17428:18;17420:6;17417:30;17414:56;;;17450:18;;:::i;:::-;17414:56;17488:29;17510:6;17488:29;:::i;:::-;17480:37;;17572:4;17566;17562:15;17554:23;;17277:307;;;:::o;17590:98::-;17641:6;17675:5;17669:12;17659:22;;17590:98;;;:::o;17694:99::-;17746:6;17780:5;17774:12;17764:22;;17694:99;;;:::o;17799:168::-;17882:11;17916:6;17911:3;17904:19;17956:4;17951:3;17947:14;17932:29;;17799:168;;;;:::o;17973:147::-;18074:11;18111:3;18096:18;;17973:147;;;;:::o;18126:169::-;18210:11;18244:6;18239:3;18232:19;18284:4;18279:3;18275:14;18260:29;;18126:169;;;;:::o;18301:148::-;18403:11;18440:3;18425:18;;18301:148;;;;:::o;18455:305::-;18495:3;18514:20;18532:1;18514:20;:::i;:::-;18509:25;;18548:20;18566:1;18548:20;:::i;:::-;18543:25;;18702:1;18634:66;18630:74;18627:1;18624:81;18621:107;;;18708:18;;:::i;:::-;18621:107;18752:1;18749;18745:9;18738:16;;18455:305;;;;:::o;18766:185::-;18806:1;18823:20;18841:1;18823:20;:::i;:::-;18818:25;;18857:20;18875:1;18857:20;:::i;:::-;18852:25;;18896:1;18886:35;;18901:18;;:::i;:::-;18886:35;18943:1;18940;18936:9;18931:14;;18766:185;;;;:::o;18957:348::-;18997:7;19020:20;19038:1;19020:20;:::i;:::-;19015:25;;19054:20;19072:1;19054:20;:::i;:::-;19049:25;;19242:1;19174:66;19170:74;19167:1;19164:81;19159:1;19152:9;19145:17;19141:105;19138:131;;;19249:18;;:::i;:::-;19138:131;19297:1;19294;19290:9;19279:20;;18957:348;;;;:::o;19311:191::-;19351:4;19371:20;19389:1;19371:20;:::i;:::-;19366:25;;19405:20;19423:1;19405:20;:::i;:::-;19400:25;;19444:1;19441;19438:8;19435:34;;;19449:18;;:::i;:::-;19435:34;19494:1;19491;19487:9;19479:17;;19311:191;;;;:::o;19508:96::-;19545:7;19574:24;19592:5;19574:24;:::i;:::-;19563:35;;19508:96;;;:::o;19610:90::-;19644:7;19687:5;19680:13;19673:21;19662:32;;19610:90;;;:::o;19706:149::-;19742:7;19782:66;19775:5;19771:78;19760:89;;19706:149;;;:::o;19861:126::-;19898:7;19938:42;19931:5;19927:54;19916:65;;19861:126;;;:::o;19993:77::-;20030:7;20059:5;20048:16;;19993:77;;;:::o;20076:154::-;20160:6;20155:3;20150;20137:30;20222:1;20213:6;20208:3;20204:16;20197:27;20076:154;;;:::o;20236:307::-;20304:1;20314:113;20328:6;20325:1;20322:13;20314:113;;;20413:1;20408:3;20404:11;20398:18;20394:1;20389:3;20385:11;20378:39;20350:2;20347:1;20343:10;20338:15;;20314:113;;;20445:6;20442:1;20439:13;20436:101;;;20525:1;20516:6;20511:3;20507:16;20500:27;20436:101;20285:258;20236:307;;;:::o;20549:320::-;20593:6;20630:1;20624:4;20620:12;20610:22;;20677:1;20671:4;20667:12;20698:18;20688:81;;20754:4;20746:6;20742:17;20732:27;;20688:81;20816:2;20808:6;20805:14;20785:18;20782:38;20779:84;;;20835:18;;:::i;:::-;20779:84;20600:269;20549:320;;;:::o;20875:281::-;20958:27;20980:4;20958:27;:::i;:::-;20950:6;20946:40;21088:6;21076:10;21073:22;21052:18;21040:10;21037:34;21034:62;21031:88;;;21099:18;;:::i;:::-;21031:88;21139:10;21135:2;21128:22;20918:238;20875:281;;:::o;21162:233::-;21201:3;21224:24;21242:5;21224:24;:::i;:::-;21215:33;;21270:66;21263:5;21260:77;21257:103;;;21340:18;;:::i;:::-;21257:103;21387:1;21380:5;21376:13;21369:20;;21162:233;;;:::o;21401:176::-;21433:1;21450:20;21468:1;21450:20;:::i;:::-;21445:25;;21484:20;21502:1;21484:20;:::i;:::-;21479:25;;21523:1;21513:35;;21528:18;;:::i;:::-;21513:35;21569:1;21566;21562:9;21557:14;;21401:176;;;;:::o;21583:180::-;21631:77;21628:1;21621:88;21728:4;21725:1;21718:15;21752:4;21749:1;21742:15;21769:180;21817:77;21814:1;21807:88;21914:4;21911:1;21904:15;21938:4;21935:1;21928:15;21955:180;22003:77;22000:1;21993:88;22100:4;22097:1;22090:15;22124:4;22121:1;22114:15;22141:180;22189:77;22186:1;22179:88;22286:4;22283:1;22276:15;22310:4;22307:1;22300:15;22327:180;22375:77;22372:1;22365:88;22472:4;22469:1;22462:15;22496:4;22493:1;22486:15;22513:117;22622:1;22619;22612:12;22636:117;22745:1;22742;22735:12;22759:117;22868:1;22865;22858:12;22882:117;22991:1;22988;22981:12;23005:117;23114:1;23111;23104:12;23128:117;23237:1;23234;23227:12;23251:102;23292:6;23343:2;23339:7;23334:2;23327:5;23323:14;23319:28;23309:38;;23251:102;;;:::o;23359:225::-;23499:34;23495:1;23487:6;23483:14;23476:58;23568:8;23563:2;23555:6;23551:15;23544:33;23359:225;:::o;23590:245::-;23730:34;23726:1;23718:6;23714:14;23707:58;23799:28;23794:2;23786:6;23782:15;23775:53;23590:245;:::o;23841:179::-;23981:31;23977:1;23969:6;23965:14;23958:55;23841:179;:::o;24026:168::-;24166:20;24162:1;24154:6;24150:14;24143:44;24026:168;:::o;24200:::-;24340:20;24336:1;24328:6;24324:14;24317:44;24200:168;:::o;24374:182::-;24514:34;24510:1;24502:6;24498:14;24491:58;24374:182;:::o;24562:175::-;24702:27;24698:1;24690:6;24686:14;24679:51;24562:175;:::o;24743:114::-;;:::o;24863:122::-;24936:24;24954:5;24936:24;:::i;:::-;24929:5;24926:35;24916:63;;24975:1;24972;24965:12;24916:63;24863:122;:::o;24991:116::-;25061:21;25076:5;25061:21;:::i;:::-;25054:5;25051:32;25041:60;;25097:1;25094;25087:12;25041:60;24991:116;:::o;25113:120::-;25185:23;25202:5;25185:23;:::i;:::-;25178:5;25175:34;25165:62;;25223:1;25220;25213:12;25165:62;25113:120;:::o;25239:122::-;25312:24;25330:5;25312:24;:::i;:::-;25305:5;25302:35;25292:63;;25351:1;25348;25341:12;25292:63;25239:122;:::o

Swarm Source

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