ETH Price: $3,174.85 (-8.25%)
Gas: 4 Gwei

Token

DrunkenMonkey (DMS)
 

Overview

Max Total Supply

444 DMS

Holders

104

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*🖕️upayme.eth
Balance
1 DMS
0x849393c5748023828c816c4f634d80cd63636803
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:
DrunkenMonkeyNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-31
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/contract.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;



contract DrunkenMonkeyNFT is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.08 ether;
    uint256 public presaleCost = 0.06 ether;
    uint256 public maxSupply = 10000;
    bool public paused = false;
    bool public inPreSale = true;
    mapping(address => bool) public presaleWallets;
    address public seller;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        address _seller
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        seller = _seller;
    }

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

    function setSeller(address _seller) external onlyOwner {
        seller = _seller;
    }

    function mint(uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();

        require(!paused);
        require(_mintAmount > 0);
        require(supply + _mintAmount <= maxSupply);

        if (msg.sender != owner()) {
            if(inPreSale == true){
                require(presaleWallets[msg.sender]);
                require(msg.value >= presaleCost * _mintAmount);
            }
            else{
                require(msg.value >= cost * _mintAmount);
            }
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setPresaleCost(uint256 _newCost) public onlyOwner {
        presaleCost = _newCost;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function _price() external view returns (uint) {
        if(inPreSale == true && presaleWallets[msg.sender] == true){
            return presaleCost;
        }
        else{
            return cost;
        }
    }

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

    function changePreSale() public onlyOwner {
        inPreSale = !inPreSale;
    }

    function addPresaleUser(address _user) public onlyOwner {
        presaleWallets[_user] = true;
    }

    function addMultiplePresaleUser(address[] memory _user) public onlyOwner {
        for (uint i = 0; i< _user.length; i++){
            presaleWallets[_user[i]] = true;
        }
    }

    function removePresaleUser(address _user) public onlyOwner {
        presaleWallets[_user] = false;
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"address","name":"_seller","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"}],"name":"addMultiplePresaleUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"addPresaleUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"changePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inPreSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removePresaleUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_seller","type":"address"}],"name":"setSeller","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000519291906200032d565b5067011c37937e080000600d5566d529ae9e860000600e55612710600f556000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550348015620000b257600080fd5b50604051620051bf380380620051bf8339818101604052810190620000d8919062000472565b83838160009080519060200190620000f29291906200032d565b5080600190805190602001906200010b9291906200032d565b5050506200012e620001226200018a60201b60201c565b6200019260201b60201c565b6200013f826200025860201b60201c565b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000796565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002686200018a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200028e6200030360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002de9062000568565b60405180910390fd5b80600b9080519060200190620002ff9291906200032d565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200033b9062000664565b90600052602060002090601f0160209004810192826200035f5760008555620003ab565b82601f106200037a57805160ff1916838001178555620003ab565b82800160010185558215620003ab579182015b82811115620003aa5782518255916020019190600101906200038d565b5b509050620003ba9190620003be565b5090565b5b80821115620003d9576000816000905550600101620003bf565b5090565b6000620003f4620003ee84620005b3565b6200058a565b90508281526020810184848401111562000413576200041262000733565b5b620004208482856200062e565b509392505050565b60008151905062000439816200077c565b92915050565b600082601f8301126200045757620004566200072e565b5b815162000469848260208601620003dd565b91505092915050565b600080600080608085870312156200048f576200048e6200073d565b5b600085015167ffffffffffffffff811115620004b057620004af62000738565b5b620004be878288016200043f565b945050602085015167ffffffffffffffff811115620004e257620004e162000738565b5b620004f0878288016200043f565b935050604085015167ffffffffffffffff81111562000514576200051362000738565b5b62000522878288016200043f565b9250506060620005358782880162000428565b91505092959194509250565b600062000550602083620005e9565b91506200055d8262000753565b602082019050919050565b60006020820190508181036000830152620005838162000541565b9050919050565b600062000596620005a9565b9050620005a482826200069a565b919050565b6000604051905090565b600067ffffffffffffffff821115620005d157620005d0620006ff565b5b620005dc8262000742565b9050602081019050919050565b600082825260208201905092915050565b600062000607826200060e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200064e57808201518184015260208101905062000631565b838111156200065e576000848401525b50505050565b600060028204905060018216806200067d57607f821691505b60208210811415620006945762000693620006d0565b5b50919050565b620006a58262000742565b810181811067ffffffffffffffff82111715620006c757620006c6620006ff565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200078781620005fa565b81146200079357600080fd5b50565b614a1980620007a66000396000f3fe6080604052600436106102515760003560e01c80636352211e11610139578063b2f3e85e116100b6578063d634961b1161007a578063d634961b146108aa578063da3ef23f146108c1578063e985e9c5146108ea578063e99d286614610927578063ed931e1714610950578063f2fde38b1461097957610251565b8063b2f3e85e146107c5578063b88d4fde146107ee578063c668286214610817578063c87b56dd14610842578063d5abeb011461087f57610251565b80638da5cb5b116100fd5780638da5cb5b146107015780638fdcf9421461072c57806395d89b4114610755578063a0712d6814610780578063a22cb4651461079c57610251565b80636352211e1461061c5780636c0360eb1461065957806370a0823114610684578063715018a6146106c15780637748f375146106d857610251565b806323b872dd116101d257806342842e0e1161019657806342842e0e146104fc578063438b63001461052557806344a0d68a146105625780634f6ccce71461058b57806355f804b3146105c85780635c975abb146105f157610251565b806323b872dd146104245780632a23d07d1461044d5780632f745c591461047857806330b2264e146104b55780633ccfd60b146104f257610251565b8063095ea7b311610219578063095ea7b31461034f57806313faede61461037857806318160ddd146103a35780631a40626b146103ce578063235b6ea1146103f957610251565b806301ffc9a71461025657806302329a291461029357806306fdde03146102bc578063081812fc146102e757806308551a5314610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906136af565b6109a2565b60405161028a9190613cbb565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613682565b610a1c565b005b3480156102c857600080fd5b506102d1610ab5565b6040516102de9190613cd6565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190613752565b610b47565b60405161031b9190613c32565b60405180910390f35b34801561033057600080fd5b50610339610bcc565b6040516103469190613c32565b60405180910390f35b34801561035b57600080fd5b50610376600480360381019061037191906135f9565b610bf2565b005b34801561038457600080fd5b5061038d610d0a565b60405161039a9190613f38565b60405180910390f35b3480156103af57600080fd5b506103b8610d10565b6040516103c59190613f38565b60405180910390f35b3480156103da57600080fd5b506103e3610d1d565b6040516103f09190613cbb565b60405180910390f35b34801561040557600080fd5b5061040e610d30565b60405161041b9190613f38565b60405180910390f35b34801561043057600080fd5b5061044b600480360381019061044691906134e3565b610dbd565b005b34801561045957600080fd5b50610462610e1d565b60405161046f9190613f38565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a91906135f9565b610e23565b6040516104ac9190613f38565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190613476565b610ec8565b6040516104e99190613cbb565b60405180910390f35b6104fa610ee8565b005b34801561050857600080fd5b50610523600480360381019061051e91906134e3565b610fdd565b005b34801561053157600080fd5b5061054c60048036038101906105479190613476565b610ffd565b6040516105599190613c99565b60405180910390f35b34801561056e57600080fd5b5061058960048036038101906105849190613752565b6110ab565b005b34801561059757600080fd5b506105b260048036038101906105ad9190613752565b611131565b6040516105bf9190613f38565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613709565b6111a2565b005b3480156105fd57600080fd5b50610606611238565b6040516106139190613cbb565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e9190613752565b61124b565b6040516106509190613c32565b60405180910390f35b34801561066557600080fd5b5061066e6112fd565b60405161067b9190613cd6565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a69190613476565b61138b565b6040516106b89190613f38565b60405180910390f35b3480156106cd57600080fd5b506106d6611443565b005b3480156106e457600080fd5b506106ff60048036038101906106fa9190613639565b6114cb565b005b34801561070d57600080fd5b506107166115dc565b6040516107239190613c32565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190613752565b611606565b005b34801561076157600080fd5b5061076a61168c565b6040516107779190613cd6565b60405180910390f35b61079a60048036038101906107959190613752565b61171e565b005b3480156107a857600080fd5b506107c360048036038101906107be91906135b9565b61188d565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190613476565b6118a3565b005b3480156107fa57600080fd5b5061081560048036038101906108109190613536565b61197a565b005b34801561082357600080fd5b5061082c6119dc565b6040516108399190613cd6565b60405180910390f35b34801561084e57600080fd5b5061086960048036038101906108649190613752565b611a6a565b6040516108769190613cd6565b60405180910390f35b34801561088b57600080fd5b50610894611b14565b6040516108a19190613f38565b60405180910390f35b3480156108b657600080fd5b506108bf611b1a565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190613709565b611bc2565b005b3480156108f657600080fd5b50610911600480360381019061090c91906134a3565b611c58565b60405161091e9190613cbb565b60405180910390f35b34801561093357600080fd5b5061094e60048036038101906109499190613476565b611cec565b005b34801561095c57600080fd5b5061097760048036038101906109729190613476565b611dac565b005b34801561098557600080fd5b506109a0600480360381019061099b9190613476565b611e83565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a155750610a1482611f7b565b5b9050919050565b610a2461205d565b73ffffffffffffffffffffffffffffffffffffffff16610a426115dc565b73ffffffffffffffffffffffffffffffffffffffff1614610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f90613e98565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060008054610ac49061426d565b80601f0160208091040260200160405190810160405280929190818152602001828054610af09061426d565b8015610b3d5780601f10610b1257610100808354040283529160200191610b3d565b820191906000526020600020905b815481529060010190602001808311610b2057829003601f168201915b5050505050905090565b6000610b5282612065565b610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890613e78565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610bfd8261124b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590613ed8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c8d61205d565b73ffffffffffffffffffffffffffffffffffffffff161480610cbc5750610cbb81610cb661205d565b611c58565b5b610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf290613df8565b60405180910390fd5b610d0583836120d1565b505050565b600d5481565b6000600880549050905090565b601060019054906101000a900460ff1681565b600060011515601060019054906101000a900460ff161515148015610da5575060011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b15610db457600e549050610dba565b600d5490505b90565b610dce610dc861205d565b8261218a565b610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490613ef8565b60405180910390fd5b610e18838383612268565b505050565b600e5481565b6000610e2e8361138b565b8210610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690613cf8565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b610ef061205d565b73ffffffffffffffffffffffffffffffffffffffff16610f0e6115dc565b73ffffffffffffffffffffffffffffffffffffffff1614610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b90613e98565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610f8a90613c1d565b60006040518083038185875af1925050503d8060008114610fc7576040519150601f19603f3d011682016040523d82523d6000602084013e610fcc565b606091505b5050905080610fda57600080fd5b50565b610ff88383836040518060200160405280600081525061197a565b505050565b6060600061100a8361138b565b905060008167ffffffffffffffff81111561102857611027614435565b5b6040519080825280602002602001820160405280156110565781602001602082028036833780820191505090505b50905060005b828110156110a05761106e8582610e23565b82828151811061108157611080614406565b5b6020026020010181815250508080611098906142d0565b91505061105c565b508092505050919050565b6110b361205d565b73ffffffffffffffffffffffffffffffffffffffff166110d16115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e90613e98565b60405180910390fd5b80600d8190555050565b600061113b610d10565b821061117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390613f18565b60405180910390fd5b600882815481106111905761118f614406565b5b90600052602060002001549050919050565b6111aa61205d565b73ffffffffffffffffffffffffffffffffffffffff166111c86115dc565b73ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590613e98565b60405180910390fd5b80600b90805190602001906112349291906131ec565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90613e38565b60405180910390fd5b80915050919050565b600b805461130a9061426d565b80601f01602080910402602001604051908101604052809291908181526020018280546113369061426d565b80156113835780601f1061135857610100808354040283529160200191611383565b820191906000526020600020905b81548152906001019060200180831161136657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390613e18565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61144b61205d565b73ffffffffffffffffffffffffffffffffffffffff166114696115dc565b73ffffffffffffffffffffffffffffffffffffffff16146114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690613e98565b60405180910390fd5b6114c960006124cf565b565b6114d361205d565b73ffffffffffffffffffffffffffffffffffffffff166114f16115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e90613e98565b60405180910390fd5b60005b81518110156115d85760016011600084848151811061156c5761156b614406565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806115d0906142d0565b91505061154a565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61160e61205d565b73ffffffffffffffffffffffffffffffffffffffff1661162c6115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990613e98565b60405180910390fd5b80600e8190555050565b60606001805461169b9061426d565b80601f01602080910402602001604051908101604052809291908181526020018280546116c79061426d565b80156117145780601f106116e957610100808354040283529160200191611714565b820191906000526020600020905b8154815290600101906020018083116116f757829003601f168201915b5050505050905090565b6000611728610d10565b9050601060009054906101000a900460ff161561174457600080fd5b6000821161175157600080fd5b600f54828261176091906140a2565b111561176b57600080fd5b6117736115dc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118525760011515601060019054906101000a900460ff161515141561183657601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661181757600080fd5b81600e546118259190614129565b34101561183157600080fd5b611851565b81600d546118449190614129565b34101561185057600080fd5b5b5b6000600190505b8281116118885761187533828461187091906140a2565b612595565b8080611880906142d0565b915050611859565b505050565b61189f61189861205d565b83836125b3565b5050565b6118ab61205d565b73ffffffffffffffffffffffffffffffffffffffff166118c96115dc565b73ffffffffffffffffffffffffffffffffffffffff161461191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690613e98565b60405180910390fd5b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61198b61198561205d565b8361218a565b6119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c190613ef8565b60405180910390fd5b6119d684848484612720565b50505050565b600c80546119e99061426d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a159061426d565b8015611a625780601f10611a3757610100808354040283529160200191611a62565b820191906000526020600020905b815481529060010190602001808311611a4557829003601f168201915b505050505081565b6060611a7582612065565b611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab90613eb8565b60405180910390fd5b6000611abe61277c565b90506000815111611ade5760405180602001604052806000815250611b0c565b80611ae88461280e565b600c604051602001611afc93929190613bec565b6040516020818303038152906040525b915050919050565b600f5481565b611b2261205d565b73ffffffffffffffffffffffffffffffffffffffff16611b406115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90613e98565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b611bca61205d565b73ffffffffffffffffffffffffffffffffffffffff16611be86115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3590613e98565b60405180910390fd5b80600c9080519060200190611c549291906131ec565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cf461205d565b73ffffffffffffffffffffffffffffffffffffffff16611d126115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5f90613e98565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611db461205d565b73ffffffffffffffffffffffffffffffffffffffff16611dd26115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90613e98565b60405180910390fd5b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611e8b61205d565b73ffffffffffffffffffffffffffffffffffffffff16611ea96115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef690613e98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6690613d38565b60405180910390fd5b611f78816124cf565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061204657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061205657506120558261296f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121448361124b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061219582612065565b6121d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cb90613dd8565b60405180910390fd5b60006121df8361124b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061222157506122208185611c58565b5b8061225f57508373ffffffffffffffffffffffffffffffffffffffff1661224784610b47565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122888261124b565b73ffffffffffffffffffffffffffffffffffffffff16146122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d590613d58565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561234e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234590613d98565b60405180910390fd5b6123598383836129d9565b6123646000826120d1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123b49190614183565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461240b91906140a2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124ca838383612aed565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125af828260405180602001604052806000815250612af2565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261990613db8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127139190613cbb565b60405180910390a3505050565b61272b848484612268565b61273784848484612b4d565b612776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276d90613d18565b60405180910390fd5b50505050565b6060600b805461278b9061426d565b80601f01602080910402602001604051908101604052809291908181526020018280546127b79061426d565b80156128045780601f106127d957610100808354040283529160200191612804565b820191906000526020600020905b8154815290600101906020018083116127e757829003601f168201915b5050505050905090565b60606000821415612856576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061296a565b600082905060005b60008214612888578080612871906142d0565b915050600a8261288191906140f8565b915061285e565b60008167ffffffffffffffff8111156128a4576128a3614435565b5b6040519080825280601f01601f1916602001820160405280156128d65781602001600182028036833780820191505090505b5090505b60008514612963576001826128ef9190614183565b9150600a856128fe9190614319565b603061290a91906140a2565b60f81b8183815181106129205761291f614406565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561295c91906140f8565b94506128da565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6129e4838383612ce4565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a2757612a2281612ce9565b612a66565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a6557612a648382612d32565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa957612aa481612e9f565b612ae8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ae757612ae68282612f70565b5b5b505050565b505050565b612afc8383612fef565b612b096000848484612b4d565b612b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3f90613d18565b60405180910390fd5b505050565b6000612b6e8473ffffffffffffffffffffffffffffffffffffffff166131c9565b15612cd7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b9761205d565b8786866040518563ffffffff1660e01b8152600401612bb99493929190613c4d565b602060405180830381600087803b158015612bd357600080fd5b505af1925050508015612c0457506040513d601f19601f82011682018060405250810190612c0191906136dc565b60015b612c87573d8060008114612c34576040519150601f19603f3d011682016040523d82523d6000602084013e612c39565b606091505b50600081511415612c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7690613d18565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612cdc565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d3f8461138b565b612d499190614183565b9050600060076000848152602001908152602001600020549050818114612e2e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612eb39190614183565b9050600060096000848152602001908152602001600020549050600060088381548110612ee357612ee2614406565b5b906000526020600020015490508060088381548110612f0557612f04614406565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f5457612f536143d7565b5b6001900381819060005260206000200160009055905550505050565b6000612f7b8361138b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561305f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305690613e58565b60405180910390fd5b61306881612065565b156130a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309f90613d78565b60405180910390fd5b6130b4600083836129d9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461310491906140a2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131c560008383612aed565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546131f89061426d565b90600052602060002090601f01602090048101928261321a5760008555613261565b82601f1061323357805160ff1916838001178555613261565b82800160010185558215613261579182015b82811115613260578251825591602001919060010190613245565b5b50905061326e9190613272565b5090565b5b8082111561328b576000816000905550600101613273565b5090565b60006132a261329d84613f78565b613f53565b905080838252602082019050828560208602820111156132c5576132c4614469565b5b60005b858110156132f557816132db8882613383565b8452602084019350602083019250506001810190506132c8565b5050509392505050565b600061331261330d84613fa4565b613f53565b90508281526020810184848401111561332e5761332d61446e565b5b61333984828561422b565b509392505050565b600061335461334f84613fd5565b613f53565b9050828152602081018484840111156133705761336f61446e565b5b61337b84828561422b565b509392505050565b60008135905061339281614987565b92915050565b600082601f8301126133ad576133ac614464565b5b81356133bd84826020860161328f565b91505092915050565b6000813590506133d58161499e565b92915050565b6000813590506133ea816149b5565b92915050565b6000815190506133ff816149b5565b92915050565b600082601f83011261341a57613419614464565b5b813561342a8482602086016132ff565b91505092915050565b600082601f83011261344857613447614464565b5b8135613458848260208601613341565b91505092915050565b600081359050613470816149cc565b92915050565b60006020828403121561348c5761348b614478565b5b600061349a84828501613383565b91505092915050565b600080604083850312156134ba576134b9614478565b5b60006134c885828601613383565b92505060206134d985828601613383565b9150509250929050565b6000806000606084860312156134fc576134fb614478565b5b600061350a86828701613383565b935050602061351b86828701613383565b925050604061352c86828701613461565b9150509250925092565b600080600080608085870312156135505761354f614478565b5b600061355e87828801613383565b945050602061356f87828801613383565b935050604061358087828801613461565b925050606085013567ffffffffffffffff8111156135a1576135a0614473565b5b6135ad87828801613405565b91505092959194509250565b600080604083850312156135d0576135cf614478565b5b60006135de85828601613383565b92505060206135ef858286016133c6565b9150509250929050565b600080604083850312156136105761360f614478565b5b600061361e85828601613383565b925050602061362f85828601613461565b9150509250929050565b60006020828403121561364f5761364e614478565b5b600082013567ffffffffffffffff81111561366d5761366c614473565b5b61367984828501613398565b91505092915050565b60006020828403121561369857613697614478565b5b60006136a6848285016133c6565b91505092915050565b6000602082840312156136c5576136c4614478565b5b60006136d3848285016133db565b91505092915050565b6000602082840312156136f2576136f1614478565b5b6000613700848285016133f0565b91505092915050565b60006020828403121561371f5761371e614478565b5b600082013567ffffffffffffffff81111561373d5761373c614473565b5b61374984828501613433565b91505092915050565b60006020828403121561376857613767614478565b5b600061377684828501613461565b91505092915050565b600061378b8383613bce565b60208301905092915050565b6137a0816141b7565b82525050565b60006137b18261402b565b6137bb8185614059565b93506137c683614006565b8060005b838110156137f75781516137de888261377f565b97506137e98361404c565b9250506001810190506137ca565b5085935050505092915050565b61380d816141c9565b82525050565b600061381e82614036565b613828818561406a565b935061383881856020860161423a565b6138418161447d565b840191505092915050565b600061385782614041565b6138618185614086565b935061387181856020860161423a565b61387a8161447d565b840191505092915050565b600061389082614041565b61389a8185614097565b93506138aa81856020860161423a565b80840191505092915050565b600081546138c38161426d565b6138cd8186614097565b945060018216600081146138e857600181146138f95761392c565b60ff1983168652818601935061392c565b61390285614016565b60005b8381101561392457815481890152600182019150602081019050613905565b838801955050505b50505092915050565b6000613942602b83614086565b915061394d8261448e565b604082019050919050565b6000613965603283614086565b9150613970826144dd565b604082019050919050565b6000613988602683614086565b91506139938261452c565b604082019050919050565b60006139ab602583614086565b91506139b68261457b565b604082019050919050565b60006139ce601c83614086565b91506139d9826145ca565b602082019050919050565b60006139f1602483614086565b91506139fc826145f3565b604082019050919050565b6000613a14601983614086565b9150613a1f82614642565b602082019050919050565b6000613a37602c83614086565b9150613a428261466b565b604082019050919050565b6000613a5a603883614086565b9150613a65826146ba565b604082019050919050565b6000613a7d602a83614086565b9150613a8882614709565b604082019050919050565b6000613aa0602983614086565b9150613aab82614758565b604082019050919050565b6000613ac3602083614086565b9150613ace826147a7565b602082019050919050565b6000613ae6602c83614086565b9150613af1826147d0565b604082019050919050565b6000613b09602083614086565b9150613b148261481f565b602082019050919050565b6000613b2c602f83614086565b9150613b3782614848565b604082019050919050565b6000613b4f602183614086565b9150613b5a82614897565b604082019050919050565b6000613b7260008361407b565b9150613b7d826148e6565b600082019050919050565b6000613b95603183614086565b9150613ba0826148e9565b604082019050919050565b6000613bb8602c83614086565b9150613bc382614938565b604082019050919050565b613bd781614221565b82525050565b613be681614221565b82525050565b6000613bf88286613885565b9150613c048285613885565b9150613c1082846138b6565b9150819050949350505050565b6000613c2882613b65565b9150819050919050565b6000602082019050613c476000830184613797565b92915050565b6000608082019050613c626000830187613797565b613c6f6020830186613797565b613c7c6040830185613bdd565b8181036060830152613c8e8184613813565b905095945050505050565b60006020820190508181036000830152613cb381846137a6565b905092915050565b6000602082019050613cd06000830184613804565b92915050565b60006020820190508181036000830152613cf0818461384c565b905092915050565b60006020820190508181036000830152613d1181613935565b9050919050565b60006020820190508181036000830152613d3181613958565b9050919050565b60006020820190508181036000830152613d518161397b565b9050919050565b60006020820190508181036000830152613d718161399e565b9050919050565b60006020820190508181036000830152613d91816139c1565b9050919050565b60006020820190508181036000830152613db1816139e4565b9050919050565b60006020820190508181036000830152613dd181613a07565b9050919050565b60006020820190508181036000830152613df181613a2a565b9050919050565b60006020820190508181036000830152613e1181613a4d565b9050919050565b60006020820190508181036000830152613e3181613a70565b9050919050565b60006020820190508181036000830152613e5181613a93565b9050919050565b60006020820190508181036000830152613e7181613ab6565b9050919050565b60006020820190508181036000830152613e9181613ad9565b9050919050565b60006020820190508181036000830152613eb181613afc565b9050919050565b60006020820190508181036000830152613ed181613b1f565b9050919050565b60006020820190508181036000830152613ef181613b42565b9050919050565b60006020820190508181036000830152613f1181613b88565b9050919050565b60006020820190508181036000830152613f3181613bab565b9050919050565b6000602082019050613f4d6000830184613bdd565b92915050565b6000613f5d613f6e565b9050613f69828261429f565b919050565b6000604051905090565b600067ffffffffffffffff821115613f9357613f92614435565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613fbf57613fbe614435565b5b613fc88261447d565b9050602081019050919050565b600067ffffffffffffffff821115613ff057613fef614435565b5b613ff98261447d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140ad82614221565b91506140b883614221565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140ed576140ec61434a565b5b828201905092915050565b600061410382614221565b915061410e83614221565b92508261411e5761411d614379565b5b828204905092915050565b600061413482614221565b915061413f83614221565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141785761417761434a565b5b828202905092915050565b600061418e82614221565b915061419983614221565b9250828210156141ac576141ab61434a565b5b828203905092915050565b60006141c282614201565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561425857808201518184015260208101905061423d565b83811115614267576000848401525b50505050565b6000600282049050600182168061428557607f821691505b60208210811415614299576142986143a8565b5b50919050565b6142a88261447d565b810181811067ffffffffffffffff821117156142c7576142c6614435565b5b80604052505050565b60006142db82614221565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561430e5761430d61434a565b5b600182019050919050565b600061432482614221565b915061432f83614221565b92508261433f5761433e614379565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614990816141b7565b811461499b57600080fd5b50565b6149a7816141c9565b81146149b257600080fd5b50565b6149be816141d5565b81146149c957600080fd5b50565b6149d581614221565b81146149e057600080fd5b5056fea2646970667358221220c86763a12ba758ae2f237959af479ac308263d4dcf9429a26ac213423a15761a64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000219fd5a2fe88151fdf1f76e45fe2eb02d24bef07000000000000000000000000000000000000000000000000000000000000000d4472756e6b656e4d6f6e6b6579000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003444d5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636352211e11610139578063b2f3e85e116100b6578063d634961b1161007a578063d634961b146108aa578063da3ef23f146108c1578063e985e9c5146108ea578063e99d286614610927578063ed931e1714610950578063f2fde38b1461097957610251565b8063b2f3e85e146107c5578063b88d4fde146107ee578063c668286214610817578063c87b56dd14610842578063d5abeb011461087f57610251565b80638da5cb5b116100fd5780638da5cb5b146107015780638fdcf9421461072c57806395d89b4114610755578063a0712d6814610780578063a22cb4651461079c57610251565b80636352211e1461061c5780636c0360eb1461065957806370a0823114610684578063715018a6146106c15780637748f375146106d857610251565b806323b872dd116101d257806342842e0e1161019657806342842e0e146104fc578063438b63001461052557806344a0d68a146105625780634f6ccce71461058b57806355f804b3146105c85780635c975abb146105f157610251565b806323b872dd146104245780632a23d07d1461044d5780632f745c591461047857806330b2264e146104b55780633ccfd60b146104f257610251565b8063095ea7b311610219578063095ea7b31461034f57806313faede61461037857806318160ddd146103a35780631a40626b146103ce578063235b6ea1146103f957610251565b806301ffc9a71461025657806302329a291461029357806306fdde03146102bc578063081812fc146102e757806308551a5314610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906136af565b6109a2565b60405161028a9190613cbb565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613682565b610a1c565b005b3480156102c857600080fd5b506102d1610ab5565b6040516102de9190613cd6565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190613752565b610b47565b60405161031b9190613c32565b60405180910390f35b34801561033057600080fd5b50610339610bcc565b6040516103469190613c32565b60405180910390f35b34801561035b57600080fd5b50610376600480360381019061037191906135f9565b610bf2565b005b34801561038457600080fd5b5061038d610d0a565b60405161039a9190613f38565b60405180910390f35b3480156103af57600080fd5b506103b8610d10565b6040516103c59190613f38565b60405180910390f35b3480156103da57600080fd5b506103e3610d1d565b6040516103f09190613cbb565b60405180910390f35b34801561040557600080fd5b5061040e610d30565b60405161041b9190613f38565b60405180910390f35b34801561043057600080fd5b5061044b600480360381019061044691906134e3565b610dbd565b005b34801561045957600080fd5b50610462610e1d565b60405161046f9190613f38565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a91906135f9565b610e23565b6040516104ac9190613f38565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190613476565b610ec8565b6040516104e99190613cbb565b60405180910390f35b6104fa610ee8565b005b34801561050857600080fd5b50610523600480360381019061051e91906134e3565b610fdd565b005b34801561053157600080fd5b5061054c60048036038101906105479190613476565b610ffd565b6040516105599190613c99565b60405180910390f35b34801561056e57600080fd5b5061058960048036038101906105849190613752565b6110ab565b005b34801561059757600080fd5b506105b260048036038101906105ad9190613752565b611131565b6040516105bf9190613f38565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613709565b6111a2565b005b3480156105fd57600080fd5b50610606611238565b6040516106139190613cbb565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e9190613752565b61124b565b6040516106509190613c32565b60405180910390f35b34801561066557600080fd5b5061066e6112fd565b60405161067b9190613cd6565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a69190613476565b61138b565b6040516106b89190613f38565b60405180910390f35b3480156106cd57600080fd5b506106d6611443565b005b3480156106e457600080fd5b506106ff60048036038101906106fa9190613639565b6114cb565b005b34801561070d57600080fd5b506107166115dc565b6040516107239190613c32565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190613752565b611606565b005b34801561076157600080fd5b5061076a61168c565b6040516107779190613cd6565b60405180910390f35b61079a60048036038101906107959190613752565b61171e565b005b3480156107a857600080fd5b506107c360048036038101906107be91906135b9565b61188d565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190613476565b6118a3565b005b3480156107fa57600080fd5b5061081560048036038101906108109190613536565b61197a565b005b34801561082357600080fd5b5061082c6119dc565b6040516108399190613cd6565b60405180910390f35b34801561084e57600080fd5b5061086960048036038101906108649190613752565b611a6a565b6040516108769190613cd6565b60405180910390f35b34801561088b57600080fd5b50610894611b14565b6040516108a19190613f38565b60405180910390f35b3480156108b657600080fd5b506108bf611b1a565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190613709565b611bc2565b005b3480156108f657600080fd5b50610911600480360381019061090c91906134a3565b611c58565b60405161091e9190613cbb565b60405180910390f35b34801561093357600080fd5b5061094e60048036038101906109499190613476565b611cec565b005b34801561095c57600080fd5b5061097760048036038101906109729190613476565b611dac565b005b34801561098557600080fd5b506109a0600480360381019061099b9190613476565b611e83565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a155750610a1482611f7b565b5b9050919050565b610a2461205d565b73ffffffffffffffffffffffffffffffffffffffff16610a426115dc565b73ffffffffffffffffffffffffffffffffffffffff1614610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f90613e98565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060008054610ac49061426d565b80601f0160208091040260200160405190810160405280929190818152602001828054610af09061426d565b8015610b3d5780601f10610b1257610100808354040283529160200191610b3d565b820191906000526020600020905b815481529060010190602001808311610b2057829003601f168201915b5050505050905090565b6000610b5282612065565b610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890613e78565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610bfd8261124b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590613ed8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c8d61205d565b73ffffffffffffffffffffffffffffffffffffffff161480610cbc5750610cbb81610cb661205d565b611c58565b5b610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf290613df8565b60405180910390fd5b610d0583836120d1565b505050565b600d5481565b6000600880549050905090565b601060019054906101000a900460ff1681565b600060011515601060019054906101000a900460ff161515148015610da5575060011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b15610db457600e549050610dba565b600d5490505b90565b610dce610dc861205d565b8261218a565b610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490613ef8565b60405180910390fd5b610e18838383612268565b505050565b600e5481565b6000610e2e8361138b565b8210610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690613cf8565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b610ef061205d565b73ffffffffffffffffffffffffffffffffffffffff16610f0e6115dc565b73ffffffffffffffffffffffffffffffffffffffff1614610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b90613e98565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610f8a90613c1d565b60006040518083038185875af1925050503d8060008114610fc7576040519150601f19603f3d011682016040523d82523d6000602084013e610fcc565b606091505b5050905080610fda57600080fd5b50565b610ff88383836040518060200160405280600081525061197a565b505050565b6060600061100a8361138b565b905060008167ffffffffffffffff81111561102857611027614435565b5b6040519080825280602002602001820160405280156110565781602001602082028036833780820191505090505b50905060005b828110156110a05761106e8582610e23565b82828151811061108157611080614406565b5b6020026020010181815250508080611098906142d0565b91505061105c565b508092505050919050565b6110b361205d565b73ffffffffffffffffffffffffffffffffffffffff166110d16115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e90613e98565b60405180910390fd5b80600d8190555050565b600061113b610d10565b821061117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390613f18565b60405180910390fd5b600882815481106111905761118f614406565b5b90600052602060002001549050919050565b6111aa61205d565b73ffffffffffffffffffffffffffffffffffffffff166111c86115dc565b73ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590613e98565b60405180910390fd5b80600b90805190602001906112349291906131ec565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90613e38565b60405180910390fd5b80915050919050565b600b805461130a9061426d565b80601f01602080910402602001604051908101604052809291908181526020018280546113369061426d565b80156113835780601f1061135857610100808354040283529160200191611383565b820191906000526020600020905b81548152906001019060200180831161136657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390613e18565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61144b61205d565b73ffffffffffffffffffffffffffffffffffffffff166114696115dc565b73ffffffffffffffffffffffffffffffffffffffff16146114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690613e98565b60405180910390fd5b6114c960006124cf565b565b6114d361205d565b73ffffffffffffffffffffffffffffffffffffffff166114f16115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e90613e98565b60405180910390fd5b60005b81518110156115d85760016011600084848151811061156c5761156b614406565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806115d0906142d0565b91505061154a565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61160e61205d565b73ffffffffffffffffffffffffffffffffffffffff1661162c6115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990613e98565b60405180910390fd5b80600e8190555050565b60606001805461169b9061426d565b80601f01602080910402602001604051908101604052809291908181526020018280546116c79061426d565b80156117145780601f106116e957610100808354040283529160200191611714565b820191906000526020600020905b8154815290600101906020018083116116f757829003601f168201915b5050505050905090565b6000611728610d10565b9050601060009054906101000a900460ff161561174457600080fd5b6000821161175157600080fd5b600f54828261176091906140a2565b111561176b57600080fd5b6117736115dc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118525760011515601060019054906101000a900460ff161515141561183657601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661181757600080fd5b81600e546118259190614129565b34101561183157600080fd5b611851565b81600d546118449190614129565b34101561185057600080fd5b5b5b6000600190505b8281116118885761187533828461187091906140a2565b612595565b8080611880906142d0565b915050611859565b505050565b61189f61189861205d565b83836125b3565b5050565b6118ab61205d565b73ffffffffffffffffffffffffffffffffffffffff166118c96115dc565b73ffffffffffffffffffffffffffffffffffffffff161461191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690613e98565b60405180910390fd5b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61198b61198561205d565b8361218a565b6119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c190613ef8565b60405180910390fd5b6119d684848484612720565b50505050565b600c80546119e99061426d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a159061426d565b8015611a625780601f10611a3757610100808354040283529160200191611a62565b820191906000526020600020905b815481529060010190602001808311611a4557829003601f168201915b505050505081565b6060611a7582612065565b611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab90613eb8565b60405180910390fd5b6000611abe61277c565b90506000815111611ade5760405180602001604052806000815250611b0c565b80611ae88461280e565b600c604051602001611afc93929190613bec565b6040516020818303038152906040525b915050919050565b600f5481565b611b2261205d565b73ffffffffffffffffffffffffffffffffffffffff16611b406115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90613e98565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b611bca61205d565b73ffffffffffffffffffffffffffffffffffffffff16611be86115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3590613e98565b60405180910390fd5b80600c9080519060200190611c549291906131ec565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cf461205d565b73ffffffffffffffffffffffffffffffffffffffff16611d126115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5f90613e98565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611db461205d565b73ffffffffffffffffffffffffffffffffffffffff16611dd26115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90613e98565b60405180910390fd5b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611e8b61205d565b73ffffffffffffffffffffffffffffffffffffffff16611ea96115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef690613e98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6690613d38565b60405180910390fd5b611f78816124cf565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061204657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061205657506120558261296f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121448361124b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061219582612065565b6121d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cb90613dd8565b60405180910390fd5b60006121df8361124b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061222157506122208185611c58565b5b8061225f57508373ffffffffffffffffffffffffffffffffffffffff1661224784610b47565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122888261124b565b73ffffffffffffffffffffffffffffffffffffffff16146122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d590613d58565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561234e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234590613d98565b60405180910390fd5b6123598383836129d9565b6123646000826120d1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123b49190614183565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461240b91906140a2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124ca838383612aed565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125af828260405180602001604052806000815250612af2565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261990613db8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127139190613cbb565b60405180910390a3505050565b61272b848484612268565b61273784848484612b4d565b612776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276d90613d18565b60405180910390fd5b50505050565b6060600b805461278b9061426d565b80601f01602080910402602001604051908101604052809291908181526020018280546127b79061426d565b80156128045780601f106127d957610100808354040283529160200191612804565b820191906000526020600020905b8154815290600101906020018083116127e757829003601f168201915b5050505050905090565b60606000821415612856576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061296a565b600082905060005b60008214612888578080612871906142d0565b915050600a8261288191906140f8565b915061285e565b60008167ffffffffffffffff8111156128a4576128a3614435565b5b6040519080825280601f01601f1916602001820160405280156128d65781602001600182028036833780820191505090505b5090505b60008514612963576001826128ef9190614183565b9150600a856128fe9190614319565b603061290a91906140a2565b60f81b8183815181106129205761291f614406565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561295c91906140f8565b94506128da565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6129e4838383612ce4565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a2757612a2281612ce9565b612a66565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a6557612a648382612d32565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa957612aa481612e9f565b612ae8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ae757612ae68282612f70565b5b5b505050565b505050565b612afc8383612fef565b612b096000848484612b4d565b612b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3f90613d18565b60405180910390fd5b505050565b6000612b6e8473ffffffffffffffffffffffffffffffffffffffff166131c9565b15612cd7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b9761205d565b8786866040518563ffffffff1660e01b8152600401612bb99493929190613c4d565b602060405180830381600087803b158015612bd357600080fd5b505af1925050508015612c0457506040513d601f19601f82011682018060405250810190612c0191906136dc565b60015b612c87573d8060008114612c34576040519150601f19603f3d011682016040523d82523d6000602084013e612c39565b606091505b50600081511415612c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7690613d18565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612cdc565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d3f8461138b565b612d499190614183565b9050600060076000848152602001908152602001600020549050818114612e2e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612eb39190614183565b9050600060096000848152602001908152602001600020549050600060088381548110612ee357612ee2614406565b5b906000526020600020015490508060088381548110612f0557612f04614406565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f5457612f536143d7565b5b6001900381819060005260206000200160009055905550505050565b6000612f7b8361138b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561305f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305690613e58565b60405180910390fd5b61306881612065565b156130a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309f90613d78565b60405180910390fd5b6130b4600083836129d9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461310491906140a2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131c560008383612aed565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546131f89061426d565b90600052602060002090601f01602090048101928261321a5760008555613261565b82601f1061323357805160ff1916838001178555613261565b82800160010185558215613261579182015b82811115613260578251825591602001919060010190613245565b5b50905061326e9190613272565b5090565b5b8082111561328b576000816000905550600101613273565b5090565b60006132a261329d84613f78565b613f53565b905080838252602082019050828560208602820111156132c5576132c4614469565b5b60005b858110156132f557816132db8882613383565b8452602084019350602083019250506001810190506132c8565b5050509392505050565b600061331261330d84613fa4565b613f53565b90508281526020810184848401111561332e5761332d61446e565b5b61333984828561422b565b509392505050565b600061335461334f84613fd5565b613f53565b9050828152602081018484840111156133705761336f61446e565b5b61337b84828561422b565b509392505050565b60008135905061339281614987565b92915050565b600082601f8301126133ad576133ac614464565b5b81356133bd84826020860161328f565b91505092915050565b6000813590506133d58161499e565b92915050565b6000813590506133ea816149b5565b92915050565b6000815190506133ff816149b5565b92915050565b600082601f83011261341a57613419614464565b5b813561342a8482602086016132ff565b91505092915050565b600082601f83011261344857613447614464565b5b8135613458848260208601613341565b91505092915050565b600081359050613470816149cc565b92915050565b60006020828403121561348c5761348b614478565b5b600061349a84828501613383565b91505092915050565b600080604083850312156134ba576134b9614478565b5b60006134c885828601613383565b92505060206134d985828601613383565b9150509250929050565b6000806000606084860312156134fc576134fb614478565b5b600061350a86828701613383565b935050602061351b86828701613383565b925050604061352c86828701613461565b9150509250925092565b600080600080608085870312156135505761354f614478565b5b600061355e87828801613383565b945050602061356f87828801613383565b935050604061358087828801613461565b925050606085013567ffffffffffffffff8111156135a1576135a0614473565b5b6135ad87828801613405565b91505092959194509250565b600080604083850312156135d0576135cf614478565b5b60006135de85828601613383565b92505060206135ef858286016133c6565b9150509250929050565b600080604083850312156136105761360f614478565b5b600061361e85828601613383565b925050602061362f85828601613461565b9150509250929050565b60006020828403121561364f5761364e614478565b5b600082013567ffffffffffffffff81111561366d5761366c614473565b5b61367984828501613398565b91505092915050565b60006020828403121561369857613697614478565b5b60006136a6848285016133c6565b91505092915050565b6000602082840312156136c5576136c4614478565b5b60006136d3848285016133db565b91505092915050565b6000602082840312156136f2576136f1614478565b5b6000613700848285016133f0565b91505092915050565b60006020828403121561371f5761371e614478565b5b600082013567ffffffffffffffff81111561373d5761373c614473565b5b61374984828501613433565b91505092915050565b60006020828403121561376857613767614478565b5b600061377684828501613461565b91505092915050565b600061378b8383613bce565b60208301905092915050565b6137a0816141b7565b82525050565b60006137b18261402b565b6137bb8185614059565b93506137c683614006565b8060005b838110156137f75781516137de888261377f565b97506137e98361404c565b9250506001810190506137ca565b5085935050505092915050565b61380d816141c9565b82525050565b600061381e82614036565b613828818561406a565b935061383881856020860161423a565b6138418161447d565b840191505092915050565b600061385782614041565b6138618185614086565b935061387181856020860161423a565b61387a8161447d565b840191505092915050565b600061389082614041565b61389a8185614097565b93506138aa81856020860161423a565b80840191505092915050565b600081546138c38161426d565b6138cd8186614097565b945060018216600081146138e857600181146138f95761392c565b60ff1983168652818601935061392c565b61390285614016565b60005b8381101561392457815481890152600182019150602081019050613905565b838801955050505b50505092915050565b6000613942602b83614086565b915061394d8261448e565b604082019050919050565b6000613965603283614086565b9150613970826144dd565b604082019050919050565b6000613988602683614086565b91506139938261452c565b604082019050919050565b60006139ab602583614086565b91506139b68261457b565b604082019050919050565b60006139ce601c83614086565b91506139d9826145ca565b602082019050919050565b60006139f1602483614086565b91506139fc826145f3565b604082019050919050565b6000613a14601983614086565b9150613a1f82614642565b602082019050919050565b6000613a37602c83614086565b9150613a428261466b565b604082019050919050565b6000613a5a603883614086565b9150613a65826146ba565b604082019050919050565b6000613a7d602a83614086565b9150613a8882614709565b604082019050919050565b6000613aa0602983614086565b9150613aab82614758565b604082019050919050565b6000613ac3602083614086565b9150613ace826147a7565b602082019050919050565b6000613ae6602c83614086565b9150613af1826147d0565b604082019050919050565b6000613b09602083614086565b9150613b148261481f565b602082019050919050565b6000613b2c602f83614086565b9150613b3782614848565b604082019050919050565b6000613b4f602183614086565b9150613b5a82614897565b604082019050919050565b6000613b7260008361407b565b9150613b7d826148e6565b600082019050919050565b6000613b95603183614086565b9150613ba0826148e9565b604082019050919050565b6000613bb8602c83614086565b9150613bc382614938565b604082019050919050565b613bd781614221565b82525050565b613be681614221565b82525050565b6000613bf88286613885565b9150613c048285613885565b9150613c1082846138b6565b9150819050949350505050565b6000613c2882613b65565b9150819050919050565b6000602082019050613c476000830184613797565b92915050565b6000608082019050613c626000830187613797565b613c6f6020830186613797565b613c7c6040830185613bdd565b8181036060830152613c8e8184613813565b905095945050505050565b60006020820190508181036000830152613cb381846137a6565b905092915050565b6000602082019050613cd06000830184613804565b92915050565b60006020820190508181036000830152613cf0818461384c565b905092915050565b60006020820190508181036000830152613d1181613935565b9050919050565b60006020820190508181036000830152613d3181613958565b9050919050565b60006020820190508181036000830152613d518161397b565b9050919050565b60006020820190508181036000830152613d718161399e565b9050919050565b60006020820190508181036000830152613d91816139c1565b9050919050565b60006020820190508181036000830152613db1816139e4565b9050919050565b60006020820190508181036000830152613dd181613a07565b9050919050565b60006020820190508181036000830152613df181613a2a565b9050919050565b60006020820190508181036000830152613e1181613a4d565b9050919050565b60006020820190508181036000830152613e3181613a70565b9050919050565b60006020820190508181036000830152613e5181613a93565b9050919050565b60006020820190508181036000830152613e7181613ab6565b9050919050565b60006020820190508181036000830152613e9181613ad9565b9050919050565b60006020820190508181036000830152613eb181613afc565b9050919050565b60006020820190508181036000830152613ed181613b1f565b9050919050565b60006020820190508181036000830152613ef181613b42565b9050919050565b60006020820190508181036000830152613f1181613b88565b9050919050565b60006020820190508181036000830152613f3181613bab565b9050919050565b6000602082019050613f4d6000830184613bdd565b92915050565b6000613f5d613f6e565b9050613f69828261429f565b919050565b6000604051905090565b600067ffffffffffffffff821115613f9357613f92614435565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613fbf57613fbe614435565b5b613fc88261447d565b9050602081019050919050565b600067ffffffffffffffff821115613ff057613fef614435565b5b613ff98261447d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140ad82614221565b91506140b883614221565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140ed576140ec61434a565b5b828201905092915050565b600061410382614221565b915061410e83614221565b92508261411e5761411d614379565b5b828204905092915050565b600061413482614221565b915061413f83614221565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141785761417761434a565b5b828202905092915050565b600061418e82614221565b915061419983614221565b9250828210156141ac576141ab61434a565b5b828203905092915050565b60006141c282614201565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561425857808201518184015260208101905061423d565b83811115614267576000848401525b50505050565b6000600282049050600182168061428557607f821691505b60208210811415614299576142986143a8565b5b50919050565b6142a88261447d565b810181811067ffffffffffffffff821117156142c7576142c6614435565b5b80604052505050565b60006142db82614221565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561430e5761430d61434a565b5b600182019050919050565b600061432482614221565b915061432f83614221565b92508261433f5761433e614379565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614990816141b7565b811461499b57600080fd5b50565b6149a7816141c9565b81146149b257600080fd5b50565b6149be816141d5565b81146149c957600080fd5b50565b6149d581614221565b81146149e057600080fd5b5056fea2646970667358221220c86763a12ba758ae2f237959af479ac308263d4dcf9429a26ac213423a15761a64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000219fd5a2fe88151fdf1f76e45fe2eb02d24bef07000000000000000000000000000000000000000000000000000000000000000d4472756e6b656e4d6f6e6b6579000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003444d5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): DrunkenMonkey
Arg [1] : _symbol (string): DMS
Arg [2] : _initBaseURI (string):
Arg [3] : _seller (address): 0x219Fd5A2fE88151fDF1F76e45fe2Eb02d24BeF07

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000219fd5a2fe88151fdf1f76e45fe2eb02d24bef07
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 4472756e6b656e4d6f6e6b657900000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 444d530000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45599:4118:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39353:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48923:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26172:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27732:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46012:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27255:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45767:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39993:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45924:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48694:221;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28482:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45806:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39661:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45959:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49522:192;;;:::i;:::-;;28892:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47155:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48221:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40183:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48423:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45891:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25866:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45695:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25596:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;49212:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48315:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26341:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46501:646;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28025:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49101:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29148:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45723:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47553:642;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45852:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49010:83;;;;;;;;;;;;;:::i;:::-;;48535:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28251:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46403:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49407:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39353:224;39455:4;39494:35;39479:50;;;:11;:50;;;;:90;;;;39533:36;39557:11;39533:23;:36::i;:::-;39479:90;39472:97;;39353:224;;;:::o;48923:79::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48988:6:::1;48979;;:15;;;;;;;;;;;;;;;;;;48923:79:::0;:::o;26172:100::-;26226:13;26259:5;26252:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26172:100;:::o;27732:221::-;27808:7;27836:16;27844:7;27836;:16::i;:::-;27828:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27921:15;:24;27937:7;27921:24;;;;;;;;;;;;;;;;;;;;;27914:31;;27732:221;;;:::o;46012:21::-;;;;;;;;;;;;;:::o;27255:411::-;27336:13;27352:23;27367:7;27352:14;:23::i;:::-;27336:39;;27400:5;27394:11;;:2;:11;;;;27386:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27494:5;27478:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27503:37;27520:5;27527:12;:10;:12::i;:::-;27503:16;:37::i;:::-;27478:62;27456:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27637:21;27646:2;27650:7;27637:8;:21::i;:::-;27325:341;27255:411;;:::o;45767:32::-;;;;:::o;39993:113::-;40054:7;40081:10;:17;;;;40074:24;;39993:113;:::o;45924:28::-;;;;;;;;;;;;;:::o;48694:221::-;48735:4;48768;48755:17;;:9;;;;;;;;;;;:17;;;:55;;;;;48806:4;48776:34;;:14;:26;48791:10;48776:26;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;48755:55;48752:156;;;48833:11;;48826:18;;;;48752:156;48892:4;;48885:11;;48694:221;;:::o;28482:339::-;28677:41;28696:12;:10;:12::i;:::-;28710:7;28677:18;:41::i;:::-;28669:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28785:28;28795:4;28801:2;28805:7;28785:9;:28::i;:::-;28482:339;;;:::o;45806:39::-;;;;:::o;39661:256::-;39758:7;39794:23;39811:5;39794:16;:23::i;:::-;39786:5;:31;39778:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39883:12;:19;39896:5;39883:19;;;;;;;;;;;;;;;:26;39903:5;39883:26;;;;;;;;;;;;39876:33;;39661:256;;;;:::o;45959:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;49522:192::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49579:12:::1;49605:10;49597:24;;49643:21;49597:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49578:101;;;49698:7;49690:16;;;::::0;::::1;;49567:147;49522:192::o:0;28892:185::-;29030:39;29047:4;29053:2;29057:7;29030:39;;;;;;;;;;;;:16;:39::i;:::-;28892:185;;;:::o;47155:390::-;47242:16;47276:23;47302:17;47312:6;47302:9;:17::i;:::-;47276:43;;47330:25;47372:15;47358:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47330:58;;47404:9;47399:113;47419:15;47415:1;:19;47399:113;;;47470:30;47490:6;47498:1;47470:19;:30::i;:::-;47456:8;47465:1;47456:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;47436:3;;;;;:::i;:::-;;;;47399:113;;;;47529:8;47522:15;;;;47155:390;;;:::o;48221:86::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48291:8:::1;48284:4;:15;;;;48221:86:::0;:::o;40183:233::-;40258:7;40294:30;:28;:30::i;:::-;40286:5;:38;40278:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40391:10;40402:5;40391:17;;;;;;;;:::i;:::-;;;;;;;;;;40384:24;;40183:233;;;:::o;48423:104::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48508:11:::1;48498:7;:21;;;;;;;;;;;;:::i;:::-;;48423:104:::0;:::o;45891:26::-;;;;;;;;;;;;;:::o;25866:239::-;25938:7;25958:13;25974:7;:16;25982:7;25974:16;;;;;;;;;;;;;;;;;;;;;25958:32;;26026:1;26009:19;;:5;:19;;;;26001:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26092:5;26085:12;;;25866:239;;;:::o;45695:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25596:208::-;25668:7;25713:1;25696:19;;:5;:19;;;;25688:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25780:9;:16;25790:5;25780:16;;;;;;;;;;;;;;;;25773:23;;25596:208;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;49212:187::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49301:6:::1;49296:96;49316:5;:12;49313:1;:15;49296:96;;;49376:4;49349:14;:24;49364:5;49370:1;49364:8;;;;;;;;:::i;:::-;;;;;;;;49349:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;49330:3;;;;;:::i;:::-;;;;49296:96;;;;49212:187:::0;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;48315:100::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48399:8:::1;48385:11;:22;;;;48315:100:::0;:::o;26341:104::-;26397:13;26430:7;26423:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26341:104;:::o;46501:646::-;46562:14;46579:13;:11;:13::i;:::-;46562:30;;46614:6;;;;;;;;;;;46613:7;46605:16;;;;;;46654:1;46640:11;:15;46632:24;;;;;;46699:9;;46684:11;46675:6;:20;;;;:::i;:::-;:33;;46667:42;;;;;;46740:7;:5;:7::i;:::-;46726:21;;:10;:21;;;46722:303;;46780:4;46767:17;;:9;;;;;;;;;;;:17;;;46764:250;;;46812:14;:26;46827:10;46812:26;;;;;;;;;;;;;;;;;;;;;;;;;46804:35;;;;;;46893:11;46879;;:25;;;;:::i;:::-;46866:9;:38;;46858:47;;;;;;46764:250;;;46986:11;46979:4;;:18;;;;:::i;:::-;46966:9;:31;;46958:40;;;;;;46764:250;46722:303;47042:9;47054:1;47042:13;;47037:103;47062:11;47057:1;:16;47037:103;;47095:33;47105:10;47126:1;47117:6;:10;;;;:::i;:::-;47095:9;:33::i;:::-;47075:3;;;;;:::i;:::-;;;;47037:103;;;;46551:596;46501:646;:::o;28025:155::-;28120:52;28139:12;:10;:12::i;:::-;28153:8;28163;28120:18;:52::i;:::-;28025:155;;:::o;49101:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49192:4:::1;49168:14;:21;49183:5;49168:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;49101:103:::0;:::o;29148:328::-;29323:41;29342:12;:10;:12::i;:::-;29356:7;29323:18;:41::i;:::-;29315:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29429:39;29443:4;29449:2;29453:7;29462:5;29429:13;:39::i;:::-;29148:328;;;;:::o;45723:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47553:642::-;47671:13;47724:16;47732:7;47724;:16::i;:::-;47702:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;47828:28;47859:10;:8;:10::i;:::-;47828:41;;47931:1;47906:14;47900:28;:32;:287;;;;;;;;;;;;;;;;;48024:14;48065:18;:7;:16;:18::i;:::-;48110:13;47981:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47900:287;47880:307;;;47553:642;;;:::o;45852:32::-;;;;:::o;49010:83::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49076:9:::1;;;;;;;;;;;49075:10;49063:9;;:22;;;;;;;;;;;;;;;;;;49010:83::o:0;48535:151::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48661:17:::1;48645:13;:33;;;;;;;;;;;;:::i;:::-;;48535:151:::0;:::o;28251:164::-;28348:4;28372:18;:25;28391:5;28372:25;;;;;;;;;;;;;;;:35;28398:8;28372:35;;;;;;;;;;;;;;;;;;;;;;;;;28365:42;;28251:164;;;;:::o;46403:90::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46478:7:::1;46469:6;;:16;;;;;;;;;;;;;;;;;;46403:90:::0;:::o;49407:107::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49501:5:::1;49477:14;:21;49492:5;49477:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;49407:107:::0;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;25227:305::-;25329:4;25381:25;25366:40;;;:11;:40;;;;:105;;;;25438:33;25423:48;;;:11;:48;;;;25366:105;:158;;;;25488:36;25512:11;25488:23;:36::i;:::-;25366:158;25346:178;;25227:305;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;30986:127::-;31051:4;31103:1;31075:30;;:7;:16;31083:7;31075:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31068:37;;30986:127;;;:::o;35132:174::-;35234:2;35207:15;:24;35223:7;35207:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35290:7;35286:2;35252:46;;35261:23;35276:7;35261:14;:23::i;:::-;35252:46;;;;;;;;;;;;35132:174;;:::o;31280:348::-;31373:4;31398:16;31406:7;31398;:16::i;:::-;31390:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31474:13;31490:23;31505:7;31490:14;:23::i;:::-;31474:39;;31543:5;31532:16;;:7;:16;;;:52;;;;31552:32;31569:5;31576:7;31552:16;:32::i;:::-;31532:52;:87;;;;31612:7;31588:31;;:20;31600:7;31588:11;:20::i;:::-;:31;;;31532:87;31524:96;;;31280:348;;;;:::o;34389:625::-;34548:4;34521:31;;:23;34536:7;34521:14;:23::i;:::-;:31;;;34513:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34627:1;34613:16;;:2;:16;;;;34605:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34683:39;34704:4;34710:2;34714:7;34683:20;:39::i;:::-;34787:29;34804:1;34808:7;34787:8;:29::i;:::-;34848:1;34829:9;:15;34839:4;34829:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34877:1;34860:9;:13;34870:2;34860:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34908:2;34889:7;:16;34897:7;34889:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34947:7;34943:2;34928:27;;34937:4;34928:27;;;;;;;;;;;;34968:38;34988:4;34994:2;34998:7;34968:19;:38::i;:::-;34389:625;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;31970:110::-;32046:26;32056:2;32060:7;32046:26;;;;;;;;;;;;:9;:26::i;:::-;31970:110;;:::o;35448:315::-;35603:8;35594:17;;:5;:17;;;;35586:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35690:8;35652:18;:25;35671:5;35652:25;;;;;;;;;;;;;;;:35;35678:8;35652:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35736:8;35714:41;;35729:5;35714:41;;;35746:8;35714:41;;;;;;:::i;:::-;;;;;;;;35448:315;;;:::o;30358:::-;30515:28;30525:4;30531:2;30535:7;30515:9;:28::i;:::-;30562:48;30585:4;30591:2;30595:7;30604:5;30562:22;:48::i;:::-;30554:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30358:315;;;;:::o;46287:108::-;46347:13;46380:7;46373:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46287:108;:::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;16886:157::-;16971:4;17010:25;16995:40;;;:11;:40;;;;16988:47;;16886:157;;;:::o;41029:589::-;41173:45;41200:4;41206:2;41210:7;41173:26;:45::i;:::-;41251:1;41235:18;;:4;:18;;;41231:187;;;41270:40;41302:7;41270:31;:40::i;:::-;41231:187;;;41340:2;41332:10;;:4;:10;;;41328:90;;41359:47;41392:4;41398:7;41359:32;:47::i;:::-;41328:90;41231:187;41446:1;41432:16;;:2;:16;;;41428:183;;;41465:45;41502:7;41465:36;:45::i;:::-;41428:183;;;41538:4;41532:10;;:2;:10;;;41528:83;;41559:40;41587:2;41591:7;41559:27;:40::i;:::-;41528:83;41428:183;41029:589;;;:::o;38210:125::-;;;;:::o;32307:321::-;32437:18;32443:2;32447:7;32437:5;:18::i;:::-;32488:54;32519:1;32523:2;32527:7;32536:5;32488:22;:54::i;:::-;32466:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32307:321;;;:::o;36328:799::-;36483:4;36504:15;:2;:13;;;:15::i;:::-;36500:620;;;36556:2;36540:36;;;36577:12;:10;:12::i;:::-;36591:4;36597:7;36606:5;36540:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36536:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36799:1;36782:6;:13;:18;36778:272;;;36825:60;;;;;;;;;;:::i;:::-;;;;;;;;36778:272;37000:6;36994:13;36985:6;36981:2;36977:15;36970:38;36536:529;36673:41;;;36663:51;;;:6;:51;;;;36656:58;;;;;36500:620;37104:4;37097:11;;36328:799;;;;;;;:::o;37699:126::-;;;;:::o;42341:164::-;42445:10;:17;;;;42418:15;:24;42434:7;42418:24;;;;;;;;;;;:44;;;;42473:10;42489:7;42473:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42341:164;:::o;43132:988::-;43398:22;43448:1;43423:22;43440:4;43423:16;:22::i;:::-;:26;;;;:::i;:::-;43398:51;;43460:18;43481:17;:26;43499:7;43481:26;;;;;;;;;;;;43460:47;;43628:14;43614:10;:28;43610:328;;43659:19;43681:12;:18;43694:4;43681:18;;;;;;;;;;;;;;;:34;43700:14;43681:34;;;;;;;;;;;;43659:56;;43765:11;43732:12;:18;43745:4;43732:18;;;;;;;;;;;;;;;:30;43751:10;43732:30;;;;;;;;;;;:44;;;;43882:10;43849:17;:30;43867:11;43849:30;;;;;;;;;;;:43;;;;43644:294;43610:328;44034:17;:26;44052:7;44034:26;;;;;;;;;;;44027:33;;;44078:12;:18;44091:4;44078:18;;;;;;;;;;;;;;;:34;44097:14;44078:34;;;;;;;;;;;44071:41;;;43213:907;;43132:988;;:::o;44415:1079::-;44668:22;44713:1;44693:10;:17;;;;:21;;;;:::i;:::-;44668:46;;44725:18;44746:15;:24;44762:7;44746:24;;;;;;;;;;;;44725:45;;45097:19;45119:10;45130:14;45119:26;;;;;;;;:::i;:::-;;;;;;;;;;45097:48;;45183:11;45158:10;45169;45158:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45294:10;45263:15;:28;45279:11;45263:28;;;;;;;;;;;:41;;;;45435:15;:24;45451:7;45435:24;;;;;;;;;;;45428:31;;;45470:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44486:1008;;;44415:1079;:::o;41919:221::-;42004:14;42021:20;42038:2;42021:16;:20::i;:::-;42004:37;;42079:7;42052:12;:16;42065:2;42052:16;;;;;;;;;;;;;;;:24;42069:6;42052:24;;;;;;;;;;;:34;;;;42126:6;42097:17;:26;42115:7;42097:26;;;;;;;;;;;:35;;;;41993:147;41919:221;;:::o;32964:439::-;33058:1;33044:16;;:2;:16;;;;33036:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33117:16;33125:7;33117;:16::i;:::-;33116:17;33108:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33179:45;33208:1;33212:2;33216:7;33179:20;:45::i;:::-;33254:1;33237:9;:13;33247:2;33237:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33285:2;33266:7;:16;33274:7;33266:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33330:7;33326:2;33305:33;;33322:1;33305:33;;;;;;;;;;;;33351:44;33379:1;33383:2;33387:7;33351:19;:44::i;:::-;32964:439;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:323::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:50;7601:7;7592:6;7581:9;7577:22;7559:50;:::i;:::-;7549:60;;7505:114;7303:323;;;;:::o;7632:327::-;7690:6;7739:2;7727:9;7718:7;7714:23;7710:32;7707:119;;;7745:79;;:::i;:::-;7707:119;7865:1;7890:52;7934:7;7925:6;7914:9;7910:22;7890:52;:::i;:::-;7880:62;;7836:116;7632:327;;;;:::o;7965:349::-;8034:6;8083:2;8071:9;8062:7;8058:23;8054:32;8051:119;;;8089:79;;:::i;:::-;8051:119;8209:1;8234:63;8289:7;8280:6;8269:9;8265:22;8234:63;:::i;:::-;8224:73;;8180:127;7965:349;;;;:::o;8320:509::-;8389:6;8438:2;8426:9;8417:7;8413:23;8409:32;8406:119;;;8444:79;;:::i;:::-;8406:119;8592:1;8581:9;8577:17;8564:31;8622:18;8614:6;8611:30;8608:117;;;8644:79;;:::i;:::-;8608:117;8749:63;8804:7;8795:6;8784:9;8780:22;8749:63;:::i;:::-;8739:73;;8535:287;8320:509;;;;:::o;8835:329::-;8894:6;8943:2;8931:9;8922:7;8918:23;8914:32;8911:119;;;8949:79;;:::i;:::-;8911:119;9069:1;9094:53;9139:7;9130:6;9119:9;9115:22;9094:53;:::i;:::-;9084:63;;9040:117;8835:329;;;;:::o;9170:179::-;9239:10;9260:46;9302:3;9294:6;9260:46;:::i;:::-;9338:4;9333:3;9329:14;9315:28;;9170:179;;;;:::o;9355:118::-;9442:24;9460:5;9442:24;:::i;:::-;9437:3;9430:37;9355:118;;:::o;9509:732::-;9628:3;9657:54;9705:5;9657:54;:::i;:::-;9727:86;9806:6;9801:3;9727:86;:::i;:::-;9720:93;;9837:56;9887:5;9837:56;:::i;:::-;9916:7;9947:1;9932:284;9957:6;9954:1;9951:13;9932:284;;;10033:6;10027:13;10060:63;10119:3;10104:13;10060:63;:::i;:::-;10053:70;;10146:60;10199:6;10146:60;:::i;:::-;10136:70;;9992:224;9979:1;9976;9972:9;9967:14;;9932:284;;;9936:14;10232:3;10225:10;;9633:608;;;9509:732;;;;:::o;10247:109::-;10328:21;10343:5;10328:21;:::i;:::-;10323:3;10316:34;10247:109;;:::o;10362:360::-;10448:3;10476:38;10508:5;10476:38;:::i;:::-;10530:70;10593:6;10588:3;10530:70;:::i;:::-;10523:77;;10609:52;10654:6;10649:3;10642:4;10635:5;10631:16;10609:52;:::i;:::-;10686:29;10708:6;10686:29;:::i;:::-;10681:3;10677:39;10670:46;;10452:270;10362:360;;;;:::o;10728:364::-;10816:3;10844:39;10877:5;10844:39;:::i;:::-;10899:71;10963:6;10958:3;10899:71;:::i;:::-;10892:78;;10979:52;11024:6;11019:3;11012:4;11005:5;11001:16;10979:52;:::i;:::-;11056:29;11078:6;11056:29;:::i;:::-;11051:3;11047:39;11040:46;;10820:272;10728:364;;;;:::o;11098:377::-;11204:3;11232:39;11265:5;11232:39;:::i;:::-;11287:89;11369:6;11364:3;11287:89;:::i;:::-;11280:96;;11385:52;11430:6;11425:3;11418:4;11411:5;11407:16;11385:52;:::i;:::-;11462:6;11457:3;11453:16;11446:23;;11208:267;11098:377;;;;:::o;11505:845::-;11608:3;11645:5;11639:12;11674:36;11700:9;11674:36;:::i;:::-;11726:89;11808:6;11803:3;11726:89;:::i;:::-;11719:96;;11846:1;11835:9;11831:17;11862:1;11857:137;;;;12008:1;12003:341;;;;11824:520;;11857:137;11941:4;11937:9;11926;11922:25;11917:3;11910:38;11977:6;11972:3;11968:16;11961:23;;11857:137;;12003:341;12070:38;12102:5;12070:38;:::i;:::-;12130:1;12144:154;12158:6;12155:1;12152:13;12144:154;;;12232:7;12226:14;12222:1;12217:3;12213:11;12206:35;12282:1;12273:7;12269:15;12258:26;;12180:4;12177:1;12173:12;12168:17;;12144:154;;;12327:6;12322:3;12318:16;12311:23;;12010:334;;11824:520;;11612:738;;11505:845;;;;:::o;12356:366::-;12498:3;12519:67;12583:2;12578:3;12519:67;:::i;:::-;12512:74;;12595:93;12684:3;12595:93;:::i;:::-;12713:2;12708:3;12704:12;12697:19;;12356:366;;;:::o;12728:::-;12870:3;12891:67;12955:2;12950:3;12891:67;:::i;:::-;12884:74;;12967:93;13056:3;12967:93;:::i;:::-;13085:2;13080:3;13076:12;13069:19;;12728:366;;;:::o;13100:::-;13242:3;13263:67;13327:2;13322:3;13263:67;:::i;:::-;13256:74;;13339:93;13428:3;13339:93;:::i;:::-;13457:2;13452:3;13448:12;13441:19;;13100:366;;;:::o;13472:::-;13614:3;13635:67;13699:2;13694:3;13635:67;:::i;:::-;13628:74;;13711:93;13800:3;13711:93;:::i;:::-;13829:2;13824:3;13820:12;13813:19;;13472:366;;;:::o;13844:::-;13986:3;14007:67;14071:2;14066:3;14007:67;:::i;:::-;14000:74;;14083:93;14172:3;14083:93;:::i;:::-;14201:2;14196:3;14192:12;14185:19;;13844:366;;;:::o;14216:::-;14358:3;14379:67;14443:2;14438:3;14379:67;:::i;:::-;14372:74;;14455:93;14544:3;14455:93;:::i;:::-;14573:2;14568:3;14564:12;14557:19;;14216:366;;;:::o;14588:::-;14730:3;14751:67;14815:2;14810:3;14751:67;:::i;:::-;14744:74;;14827:93;14916:3;14827:93;:::i;:::-;14945:2;14940:3;14936:12;14929:19;;14588:366;;;:::o;14960:::-;15102:3;15123:67;15187:2;15182:3;15123:67;:::i;:::-;15116:74;;15199:93;15288:3;15199:93;:::i;:::-;15317:2;15312:3;15308:12;15301:19;;14960:366;;;:::o;15332:::-;15474:3;15495:67;15559:2;15554:3;15495:67;:::i;:::-;15488:74;;15571:93;15660:3;15571:93;:::i;:::-;15689:2;15684:3;15680:12;15673:19;;15332:366;;;:::o;15704:::-;15846:3;15867:67;15931:2;15926:3;15867:67;:::i;:::-;15860:74;;15943:93;16032:3;15943:93;:::i;:::-;16061:2;16056:3;16052:12;16045:19;;15704:366;;;:::o;16076:::-;16218:3;16239:67;16303:2;16298:3;16239:67;:::i;:::-;16232:74;;16315:93;16404:3;16315:93;:::i;:::-;16433:2;16428:3;16424:12;16417:19;;16076:366;;;:::o;16448:::-;16590:3;16611:67;16675:2;16670:3;16611:67;:::i;:::-;16604:74;;16687:93;16776:3;16687:93;:::i;:::-;16805:2;16800:3;16796:12;16789:19;;16448:366;;;:::o;16820:::-;16962:3;16983:67;17047:2;17042:3;16983:67;:::i;:::-;16976:74;;17059:93;17148:3;17059:93;:::i;:::-;17177:2;17172:3;17168:12;17161:19;;16820:366;;;:::o;17192:::-;17334:3;17355:67;17419:2;17414:3;17355:67;:::i;:::-;17348:74;;17431:93;17520:3;17431:93;:::i;:::-;17549:2;17544:3;17540:12;17533:19;;17192:366;;;:::o;17564:::-;17706:3;17727:67;17791:2;17786:3;17727:67;:::i;:::-;17720:74;;17803:93;17892:3;17803:93;:::i;:::-;17921:2;17916:3;17912:12;17905:19;;17564:366;;;:::o;17936:::-;18078:3;18099:67;18163:2;18158:3;18099:67;:::i;:::-;18092:74;;18175:93;18264:3;18175:93;:::i;:::-;18293:2;18288:3;18284:12;18277:19;;17936:366;;;:::o;18308:398::-;18467:3;18488:83;18569:1;18564:3;18488:83;:::i;:::-;18481:90;;18580:93;18669:3;18580:93;:::i;:::-;18698:1;18693:3;18689:11;18682:18;;18308:398;;;:::o;18712:366::-;18854:3;18875:67;18939:2;18934:3;18875:67;:::i;:::-;18868:74;;18951:93;19040:3;18951:93;:::i;:::-;19069:2;19064:3;19060:12;19053:19;;18712:366;;;:::o;19084:::-;19226:3;19247:67;19311:2;19306:3;19247:67;:::i;:::-;19240:74;;19323:93;19412:3;19323:93;:::i;:::-;19441:2;19436:3;19432:12;19425:19;;19084:366;;;:::o;19456:108::-;19533:24;19551:5;19533:24;:::i;:::-;19528:3;19521:37;19456:108;;:::o;19570:118::-;19657:24;19675:5;19657:24;:::i;:::-;19652:3;19645:37;19570:118;;:::o;19694:589::-;19919:3;19941:95;20032:3;20023:6;19941:95;:::i;:::-;19934:102;;20053:95;20144:3;20135:6;20053:95;:::i;:::-;20046:102;;20165:92;20253:3;20244:6;20165:92;:::i;:::-;20158:99;;20274:3;20267:10;;19694:589;;;;;;:::o;20289:379::-;20473:3;20495:147;20638:3;20495:147;:::i;:::-;20488:154;;20659:3;20652:10;;20289:379;;;:::o;20674:222::-;20767:4;20805:2;20794:9;20790:18;20782:26;;20818:71;20886:1;20875:9;20871:17;20862:6;20818:71;:::i;:::-;20674:222;;;;:::o;20902:640::-;21097:4;21135:3;21124:9;21120:19;21112:27;;21149:71;21217:1;21206:9;21202:17;21193:6;21149:71;:::i;:::-;21230:72;21298:2;21287:9;21283:18;21274:6;21230:72;:::i;:::-;21312;21380:2;21369:9;21365:18;21356:6;21312:72;:::i;:::-;21431:9;21425:4;21421:20;21416:2;21405:9;21401:18;21394:48;21459:76;21530:4;21521:6;21459:76;:::i;:::-;21451:84;;20902:640;;;;;;;:::o;21548:373::-;21691:4;21729:2;21718:9;21714:18;21706:26;;21778:9;21772:4;21768:20;21764:1;21753:9;21749:17;21742:47;21806:108;21909:4;21900:6;21806:108;:::i;:::-;21798:116;;21548:373;;;;:::o;21927:210::-;22014:4;22052:2;22041:9;22037:18;22029:26;;22065:65;22127:1;22116:9;22112:17;22103:6;22065:65;:::i;:::-;21927:210;;;;:::o;22143:313::-;22256:4;22294:2;22283:9;22279:18;22271:26;;22343:9;22337:4;22333:20;22329:1;22318:9;22314:17;22307:47;22371:78;22444:4;22435:6;22371:78;:::i;:::-;22363:86;;22143:313;;;;:::o;22462:419::-;22628:4;22666:2;22655:9;22651:18;22643:26;;22715:9;22709:4;22705:20;22701:1;22690:9;22686:17;22679:47;22743:131;22869:4;22743:131;:::i;:::-;22735:139;;22462:419;;;:::o;22887:::-;23053:4;23091:2;23080:9;23076:18;23068:26;;23140:9;23134:4;23130:20;23126:1;23115:9;23111:17;23104:47;23168:131;23294:4;23168:131;:::i;:::-;23160:139;;22887:419;;;:::o;23312:::-;23478:4;23516:2;23505:9;23501:18;23493:26;;23565:9;23559:4;23555:20;23551:1;23540:9;23536:17;23529:47;23593:131;23719:4;23593:131;:::i;:::-;23585:139;;23312:419;;;:::o;23737:::-;23903:4;23941:2;23930:9;23926:18;23918:26;;23990:9;23984:4;23980:20;23976:1;23965:9;23961:17;23954:47;24018:131;24144:4;24018:131;:::i;:::-;24010:139;;23737:419;;;:::o;24162:::-;24328:4;24366:2;24355:9;24351:18;24343:26;;24415:9;24409:4;24405:20;24401:1;24390:9;24386:17;24379:47;24443:131;24569:4;24443:131;:::i;:::-;24435:139;;24162:419;;;:::o;24587:::-;24753:4;24791:2;24780:9;24776:18;24768:26;;24840:9;24834:4;24830:20;24826:1;24815:9;24811:17;24804:47;24868:131;24994:4;24868:131;:::i;:::-;24860:139;;24587:419;;;:::o;25012:::-;25178:4;25216:2;25205:9;25201:18;25193:26;;25265:9;25259:4;25255:20;25251:1;25240:9;25236:17;25229:47;25293:131;25419:4;25293:131;:::i;:::-;25285:139;;25012:419;;;:::o;25437:::-;25603:4;25641:2;25630:9;25626:18;25618:26;;25690:9;25684:4;25680:20;25676:1;25665:9;25661:17;25654:47;25718:131;25844:4;25718:131;:::i;:::-;25710:139;;25437:419;;;:::o;25862:::-;26028:4;26066:2;26055:9;26051:18;26043:26;;26115:9;26109:4;26105:20;26101:1;26090:9;26086:17;26079:47;26143:131;26269:4;26143:131;:::i;:::-;26135:139;;25862:419;;;:::o;26287:::-;26453:4;26491:2;26480:9;26476:18;26468:26;;26540:9;26534:4;26530:20;26526:1;26515:9;26511:17;26504:47;26568:131;26694:4;26568:131;:::i;:::-;26560:139;;26287:419;;;:::o;26712:::-;26878:4;26916:2;26905:9;26901:18;26893:26;;26965:9;26959:4;26955:20;26951:1;26940:9;26936:17;26929:47;26993:131;27119:4;26993:131;:::i;:::-;26985:139;;26712:419;;;:::o;27137:::-;27303:4;27341:2;27330:9;27326:18;27318:26;;27390:9;27384:4;27380:20;27376:1;27365:9;27361:17;27354:47;27418:131;27544:4;27418:131;:::i;:::-;27410:139;;27137:419;;;:::o;27562:::-;27728:4;27766:2;27755:9;27751:18;27743:26;;27815:9;27809:4;27805:20;27801:1;27790:9;27786:17;27779:47;27843:131;27969:4;27843:131;:::i;:::-;27835:139;;27562:419;;;:::o;27987:::-;28153:4;28191:2;28180:9;28176:18;28168:26;;28240:9;28234:4;28230:20;28226:1;28215:9;28211:17;28204:47;28268:131;28394:4;28268:131;:::i;:::-;28260:139;;27987:419;;;:::o;28412:::-;28578:4;28616:2;28605:9;28601:18;28593:26;;28665:9;28659:4;28655:20;28651:1;28640:9;28636:17;28629:47;28693:131;28819:4;28693:131;:::i;:::-;28685:139;;28412:419;;;:::o;28837:::-;29003:4;29041:2;29030:9;29026:18;29018:26;;29090:9;29084:4;29080:20;29076:1;29065:9;29061:17;29054:47;29118:131;29244:4;29118:131;:::i;:::-;29110:139;;28837:419;;;:::o;29262:::-;29428:4;29466:2;29455:9;29451:18;29443:26;;29515:9;29509:4;29505:20;29501:1;29490:9;29486:17;29479:47;29543:131;29669:4;29543:131;:::i;:::-;29535:139;;29262:419;;;:::o;29687:::-;29853:4;29891:2;29880:9;29876:18;29868:26;;29940:9;29934:4;29930:20;29926:1;29915:9;29911:17;29904:47;29968:131;30094:4;29968:131;:::i;:::-;29960:139;;29687:419;;;:::o;30112:222::-;30205:4;30243:2;30232:9;30228:18;30220:26;;30256:71;30324:1;30313:9;30309:17;30300:6;30256:71;:::i;:::-;30112:222;;;;:::o;30340:129::-;30374:6;30401:20;;:::i;:::-;30391:30;;30430:33;30458:4;30450:6;30430:33;:::i;:::-;30340:129;;;:::o;30475:75::-;30508:6;30541:2;30535:9;30525:19;;30475:75;:::o;30556:311::-;30633:4;30723:18;30715:6;30712:30;30709:56;;;30745:18;;:::i;:::-;30709:56;30795:4;30787:6;30783:17;30775:25;;30855:4;30849;30845:15;30837:23;;30556:311;;;:::o;30873:307::-;30934:4;31024:18;31016:6;31013:30;31010:56;;;31046:18;;:::i;:::-;31010:56;31084:29;31106:6;31084:29;:::i;:::-;31076:37;;31168:4;31162;31158:15;31150:23;;30873:307;;;:::o;31186:308::-;31248:4;31338:18;31330:6;31327:30;31324:56;;;31360:18;;:::i;:::-;31324:56;31398:29;31420:6;31398:29;:::i;:::-;31390:37;;31482:4;31476;31472:15;31464:23;;31186:308;;;:::o;31500:132::-;31567:4;31590:3;31582:11;;31620:4;31615:3;31611:14;31603:22;;31500:132;;;:::o;31638:141::-;31687:4;31710:3;31702:11;;31733:3;31730:1;31723:14;31767:4;31764:1;31754:18;31746:26;;31638:141;;;:::o;31785:114::-;31852:6;31886:5;31880:12;31870:22;;31785:114;;;:::o;31905:98::-;31956:6;31990:5;31984:12;31974:22;;31905:98;;;:::o;32009:99::-;32061:6;32095:5;32089:12;32079:22;;32009:99;;;:::o;32114:113::-;32184:4;32216;32211:3;32207:14;32199:22;;32114:113;;;:::o;32233:184::-;32332:11;32366:6;32361:3;32354:19;32406:4;32401:3;32397:14;32382:29;;32233:184;;;;:::o;32423:168::-;32506:11;32540:6;32535:3;32528:19;32580:4;32575:3;32571:14;32556:29;;32423:168;;;;:::o;32597:147::-;32698:11;32735:3;32720:18;;32597:147;;;;:::o;32750:169::-;32834:11;32868:6;32863:3;32856:19;32908:4;32903:3;32899:14;32884:29;;32750:169;;;;:::o;32925:148::-;33027:11;33064:3;33049:18;;32925:148;;;;:::o;33079:305::-;33119:3;33138:20;33156:1;33138:20;:::i;:::-;33133:25;;33172:20;33190:1;33172:20;:::i;:::-;33167:25;;33326:1;33258:66;33254:74;33251:1;33248:81;33245:107;;;33332:18;;:::i;:::-;33245:107;33376:1;33373;33369:9;33362:16;;33079:305;;;;:::o;33390:185::-;33430:1;33447:20;33465:1;33447:20;:::i;:::-;33442:25;;33481:20;33499:1;33481:20;:::i;:::-;33476:25;;33520:1;33510:35;;33525:18;;:::i;:::-;33510:35;33567:1;33564;33560:9;33555:14;;33390:185;;;;:::o;33581:348::-;33621:7;33644:20;33662:1;33644:20;:::i;:::-;33639:25;;33678:20;33696:1;33678:20;:::i;:::-;33673:25;;33866:1;33798:66;33794:74;33791:1;33788:81;33783:1;33776:9;33769:17;33765:105;33762:131;;;33873:18;;:::i;:::-;33762:131;33921:1;33918;33914:9;33903:20;;33581:348;;;;:::o;33935:191::-;33975:4;33995:20;34013:1;33995:20;:::i;:::-;33990:25;;34029:20;34047:1;34029:20;:::i;:::-;34024:25;;34068:1;34065;34062:8;34059:34;;;34073:18;;:::i;:::-;34059:34;34118:1;34115;34111:9;34103:17;;33935:191;;;;:::o;34132:96::-;34169:7;34198:24;34216:5;34198:24;:::i;:::-;34187:35;;34132:96;;;:::o;34234:90::-;34268:7;34311:5;34304:13;34297:21;34286:32;;34234:90;;;:::o;34330:149::-;34366:7;34406:66;34399:5;34395:78;34384:89;;34330:149;;;:::o;34485:126::-;34522:7;34562:42;34555:5;34551:54;34540:65;;34485:126;;;:::o;34617:77::-;34654:7;34683:5;34672:16;;34617:77;;;:::o;34700:154::-;34784:6;34779:3;34774;34761:30;34846:1;34837:6;34832:3;34828:16;34821:27;34700:154;;;:::o;34860:307::-;34928:1;34938:113;34952:6;34949:1;34946:13;34938:113;;;35037:1;35032:3;35028:11;35022:18;35018:1;35013:3;35009:11;35002:39;34974:2;34971:1;34967:10;34962:15;;34938:113;;;35069:6;35066:1;35063:13;35060:101;;;35149:1;35140:6;35135:3;35131:16;35124:27;35060:101;34909:258;34860:307;;;:::o;35173:320::-;35217:6;35254:1;35248:4;35244:12;35234:22;;35301:1;35295:4;35291:12;35322:18;35312:81;;35378:4;35370:6;35366:17;35356:27;;35312:81;35440:2;35432:6;35429:14;35409:18;35406:38;35403:84;;;35459:18;;:::i;:::-;35403:84;35224:269;35173:320;;;:::o;35499:281::-;35582:27;35604:4;35582:27;:::i;:::-;35574:6;35570:40;35712:6;35700:10;35697:22;35676:18;35664:10;35661:34;35658:62;35655:88;;;35723:18;;:::i;:::-;35655:88;35763:10;35759:2;35752:22;35542:238;35499:281;;:::o;35786:233::-;35825:3;35848:24;35866:5;35848:24;:::i;:::-;35839:33;;35894:66;35887:5;35884:77;35881:103;;;35964:18;;:::i;:::-;35881:103;36011:1;36004:5;36000:13;35993:20;;35786:233;;;:::o;36025:176::-;36057:1;36074:20;36092:1;36074:20;:::i;:::-;36069:25;;36108:20;36126:1;36108:20;:::i;:::-;36103:25;;36147:1;36137:35;;36152:18;;:::i;:::-;36137:35;36193:1;36190;36186:9;36181:14;;36025:176;;;;:::o;36207:180::-;36255:77;36252:1;36245:88;36352:4;36349:1;36342:15;36376:4;36373:1;36366:15;36393:180;36441:77;36438:1;36431:88;36538:4;36535:1;36528:15;36562:4;36559:1;36552:15;36579:180;36627:77;36624:1;36617:88;36724:4;36721:1;36714:15;36748:4;36745:1;36738:15;36765:180;36813:77;36810:1;36803:88;36910:4;36907:1;36900:15;36934:4;36931:1;36924:15;36951:180;36999:77;36996:1;36989:88;37096:4;37093:1;37086:15;37120:4;37117:1;37110:15;37137:180;37185:77;37182:1;37175:88;37282:4;37279:1;37272:15;37306:4;37303:1;37296:15;37323:117;37432:1;37429;37422:12;37446:117;37555:1;37552;37545:12;37569:117;37678:1;37675;37668:12;37692:117;37801:1;37798;37791:12;37815:117;37924:1;37921;37914:12;37938:102;37979:6;38030:2;38026:7;38021:2;38014:5;38010:14;38006:28;37996:38;;37938:102;;;:::o;38046:230::-;38186:34;38182:1;38174:6;38170:14;38163:58;38255:13;38250:2;38242:6;38238:15;38231:38;38046:230;:::o;38282:237::-;38422:34;38418:1;38410:6;38406:14;38399:58;38491:20;38486:2;38478:6;38474:15;38467:45;38282:237;:::o;38525:225::-;38665:34;38661:1;38653:6;38649:14;38642:58;38734:8;38729:2;38721:6;38717:15;38710:33;38525:225;:::o;38756:224::-;38896:34;38892:1;38884:6;38880:14;38873:58;38965:7;38960:2;38952:6;38948:15;38941:32;38756:224;:::o;38986:178::-;39126:30;39122:1;39114:6;39110:14;39103:54;38986:178;:::o;39170:223::-;39310:34;39306:1;39298:6;39294:14;39287:58;39379:6;39374:2;39366:6;39362:15;39355:31;39170:223;:::o;39399:175::-;39539:27;39535:1;39527:6;39523:14;39516:51;39399:175;:::o;39580:231::-;39720:34;39716:1;39708:6;39704:14;39697:58;39789:14;39784:2;39776:6;39772:15;39765:39;39580:231;:::o;39817:243::-;39957:34;39953:1;39945:6;39941:14;39934:58;40026:26;40021:2;40013:6;40009:15;40002:51;39817:243;:::o;40066:229::-;40206:34;40202:1;40194:6;40190:14;40183:58;40275:12;40270:2;40262:6;40258:15;40251:37;40066:229;:::o;40301:228::-;40441:34;40437:1;40429:6;40425:14;40418:58;40510:11;40505:2;40497:6;40493:15;40486:36;40301:228;:::o;40535:182::-;40675:34;40671:1;40663:6;40659:14;40652:58;40535:182;:::o;40723:231::-;40863:34;40859:1;40851:6;40847:14;40840:58;40932:14;40927:2;40919:6;40915:15;40908:39;40723:231;:::o;40960:182::-;41100:34;41096:1;41088:6;41084:14;41077:58;40960:182;:::o;41148:234::-;41288:34;41284:1;41276:6;41272:14;41265:58;41357:17;41352:2;41344:6;41340:15;41333:42;41148:234;:::o;41388:220::-;41528:34;41524:1;41516:6;41512:14;41505:58;41597:3;41592:2;41584:6;41580:15;41573:28;41388:220;:::o;41614:114::-;;:::o;41734:236::-;41874:34;41870:1;41862:6;41858:14;41851:58;41943:19;41938:2;41930:6;41926:15;41919:44;41734:236;:::o;41976:231::-;42116:34;42112:1;42104:6;42100:14;42093:58;42185:14;42180:2;42172:6;42168:15;42161:39;41976:231;:::o;42213:122::-;42286:24;42304:5;42286:24;:::i;:::-;42279:5;42276:35;42266:63;;42325:1;42322;42315:12;42266:63;42213:122;:::o;42341:116::-;42411:21;42426:5;42411:21;:::i;:::-;42404:5;42401:32;42391:60;;42447:1;42444;42437:12;42391:60;42341:116;:::o;42463:120::-;42535:23;42552:5;42535:23;:::i;:::-;42528:5;42525:34;42515:62;;42573:1;42570;42563:12;42515:62;42463:120;:::o;42589:122::-;42662:24;42680:5;42662:24;:::i;:::-;42655:5;42652:35;42642:63;;42701:1;42698;42691:12;42642:63;42589:122;:::o

Swarm Source

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