ETH Price: $3,392.78 (-1.26%)
Gas: 2 Gwei

Token

Ohnahji (OHNAH)
 

Overview

Max Total Supply

4,909 OHNAH

Holders

984

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 OHNAH
0x4421a29fbaf50424501019cef52819ecc813e792
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The NFT collection championing diversity, equity and inclusion in web3.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Ohnahji

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-20
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 of token that is not own");
        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);
    }

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

// File: contracts/Ohnahji.sol


/**
   ██████╗ ██╗  ██╗███╗   ██╗ █████╗ ██╗  ██╗     ██╗██╗    
  ██╔═══██╗██║  ██║████╗  ██║██╔══██╗██║  ██║     ██║██║    
  ██║   ██║███████║██╔██╗ ██║███████║███████║     ██║██║    
  ██║   ██║██╔══██║██║╚██╗██║██╔══██║██╔══██║██   ██║██║    
  ╚██████╔╝██║  ██║██║ ╚████║██║  ██║██║  ██║╚█████╔╝██║    
   ╚═════╝ ╚═╝  ╚═╝╚═╝  ╚═══╝╚═╝  ╚═╝╚═╝  ╚═╝ ╚════╝ ╚═╝    
                                                       
                                 _              
  |_  \/   |V| _  __ |     _    |_) __ o __  _  
  |_) /    | |(_| |  |<|_|_>    |   |  | |||(/_  

  _ ___      ___               _ _                 _   _           _   _               ___ _ _ 
 ( | ) \    / / |_  ___   __ _| | |  __ _ ___ _ _ ( ) | |__  ___  | |_| |_  ___ _ _ __|__ ( | )
  V V \ \/\/ /| ' \/ _ \ / _` | | | / _` / _ \ ' \|/  | '_ \/ -_) |  _| ' \/ -_) '_/ -_)/_/V V 
       \_/\_/ |_||_\___/ \__,_|_|_| \__, \___/_||_|   |_.__/\___|  \__|_||_\___|_| \___(_)     
                                    |___/                                                      
*/

// @devs: Make sure to read to the bottom if planning on using 

pragma solidity >=0.7.0 <0.9.0;




contract Ohnahji is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.01 ether;
  uint256 public maxSupply = 9010;
  uint256 public maxMintPerAccnt = 10;

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

  constructor() ERC721("Ohnahji", "OHNAH") {
    setHiddenMetadataUri("ipfs://QmZfz86hCvBN7KE5G2Sw6pCdYgwT68nh1BDstFWwkPg29S/hidden.json");
  }

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

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

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

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

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

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

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

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

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

  function setmaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function setmaxMintPerAccnt(uint256 _maxMintPerAccnt) public onlyOwner {
    maxMintPerAccnt = _maxMintPerAccnt;
  }

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

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

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

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

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

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

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}
/** Feel free to contact us for questions, help and/or comments: 

                     [email protected]
  
    TipJar: 
   ----------
      OhnahjiB: 0xF4DF7A060388b155D58de25bc24ABa4130B5d8A2

  Markus Prime: 0xbcf6c2DbB2517D306E34E19D93D891d834c897CD

      HashLips: 0x943590A42C27D08e3744202c4Ae5eD55c2dE240D 
        *YouTube and Google Him!

   image2ascii.com   textkool.com/en/ascii-art-generator

    °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
    °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
    °°°°°°°°°°°°°°°°°°°°°*@@@@@@*°°°°°°°.°°°°°°°°°°°°°
    °°°°°°°°°°°°°°°***°°.O@@@@@@O°°o@@@@#*°°°°°°°°°°°°
    °°°°°°°°°°°°°o@@@@@@@@@@@@@@@@@@@@@@@O.°°°°°°°°°°°
    °°°°°°°°°°°°°@@@@@@@@@@@@@@@@@@@@@@@o**°°°°°°°°°°°
    °°°°°°°°°°°°°°O@@@@@@@@@@@@@@@@@@@@@@@@@O°°°°°°°°°
    °°°°°°°°°°°°°°°@@@@@@@@@@@@@@@@@@@@@@@@@O°°°°°°°°°
    °°°°°°°°°°°°°°°@#O@@@@@@@@@@@@@@@@@@o**°°°°°°°°°°°
    °°°°°°°°°°°°°[email protected]@@@@@O @@@@@@@@@@@@#.°°°°°°°°°°°
    °°°°°°°°°°°°°o@@@@@@@@@@@@@@@@@@@@@@@@°°°°°°°°°°°°
    °°°°°°°°°°°°.#@@@@@@@@@@@@@@@@@@@##O*°°°°°°°°°°°°°
    °°°°°°°°°°°°°°#@@@@@@@@@@@@@@@@#*...°°°°°°°°°°°°°°
    °°°°°°°°°°°°°°°*O@@@@@@@@@@@O*°.°°°°°°°°°°°°°°°°°°
    °°°°°°°°°°°°°°°°..°°*o@@@@@@***°°°°°°°°°°°°°°°°°°°
    °°°°°°°°°°°°°°°°o#@@@@@@#Ooo#@OOOo°°°°°°°°°°°°°°°°
    °°°°°°°°°°°°°°°@@@@@@Oo**oOOO@**o@o°°°°°°°°°°°°°°°
    °°°°°°°°°°°°°°@@O.  o#Oo*°   @*o*O@.°°°°°°°°°°°°°°
    °°°°°°°°°°°°°@@@             @o**o@°°°°°°°°°°°°°°°

 \    / _ | _ _  _ _  _   _|_ _   _|_|_  _   |~ _  _ _ .|  
  \/\/ (/_|(_(_)| | |(/_   | (_)   | | |(/_  |~(_|| | |||\/
                                                        / 

P.S. This is what happens when two artists living & loving 
           life, figure out coding a tiny bit.
*/

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerAccnt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerAccnt","type":"uint256"}],"name":"setmaxMintPerAccnt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600890805190602001906200002b92919062000367565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200007992919062000367565b50662386f26fc10000600b55612332600c55600a600d556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff021916908315150217905550348015620000d357600080fd5b506040518060400160405280600781526020017f4f686e61686a69000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4f484e414800000000000000000000000000000000000000000000000000000081525081600090805190602001906200015892919062000367565b5080600190805190602001906200017192919062000367565b5050506200019462000188620001c460201b60201c565b620001cc60201b60201c565b620001be60405180608001604052806041815260200162004798604191396200029260201b60201c565b620004ff565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a2620001c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002c86200033d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000318906200043e565b60405180910390fd5b80600a90805190602001906200033992919062000367565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003759062000471565b90600052602060002090601f016020900481019282620003995760008555620003e5565b82601f10620003b457805160ff1916838001178555620003e5565b82800160010185558215620003e5579182015b82811115620003e4578251825591602001919060010190620003c7565b5b509050620003f49190620003f8565b5090565b5b8082111562000413576000816000905550600101620003f9565b5090565b60006200042660208362000460565b91506200043382620004d6565b602082019050919050565b60006020820190508181036000830152620004598162000417565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200048a57607f821691505b60208210811415620004a157620004a0620004a7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614289806200050f6000396000f3fe60806040526004361061021a5760003560e01c80635503a0e811610123578063a0712d68116100ab578063d5abeb011161006f578063d5abeb011461079c578063e0a80853146107c7578063e985e9c5146107f0578063efbd73f41461082d578063f2fde38b146108565761021a565b8063a0712d68146106c6578063a22cb465146106e2578063a45ba8e71461070b578063b88d4fde14610736578063c87b56dd1461075f5761021a565b806370a08231116100f257806370a08231146105f3578063715018a6146106305780637ec4a659146106475780638da5cb5b1461067057806395d89b411461069b5761021a565b80635503a0e8146105355780635c975abb1461056057806362b99ad41461058b5780636352211e146105b65761021a565b8063228025e8116101a657806342842e0e1161017557806342842e0e14610452578063438b63001461047b57806344a0d68a146104b85780634fdd43cb146104e1578063518302271461050a5761021a565b8063228025e8146103c057806323b872dd146103e957806327f5535f146104125780633ccfd60b1461043b5761021a565b80630f4a5307116101ed5780630f4a5307146102ed57806313faede61461031857806316ba10e01461034357806316c38b3c1461036c57806318160ddd146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612eb3565b61087f565b6040516102539190613545565b60405180910390f35b34801561026857600080fd5b50610271610961565b60405161027e9190613560565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612f56565b6109f3565b6040516102bb91906134bc565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612e46565b610a78565b005b3480156102f957600080fd5b50610302610b90565b60405161030f9190613802565b60405180910390f35b34801561032457600080fd5b5061032d610b96565b60405161033a9190613802565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190612f0d565b610b9c565b005b34801561037857600080fd5b50610393600480360381019061038e9190612e86565b610c32565b005b3480156103a157600080fd5b506103aa610ccb565b6040516103b79190613802565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612f56565b610cdc565b005b3480156103f557600080fd5b50610410600480360381019061040b9190612d30565b610d62565b005b34801561041e57600080fd5b5061043960048036038101906104349190612f56565b610dc2565b005b34801561044757600080fd5b50610450610e48565b005b34801561045e57600080fd5b5061047960048036038101906104749190612d30565b610f44565b005b34801561048757600080fd5b506104a2600480360381019061049d9190612cc3565b610f64565b6040516104af9190613523565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190612f56565b61106f565b005b3480156104ed57600080fd5b5061050860048036038101906105039190612f0d565b6110f5565b005b34801561051657600080fd5b5061051f61118b565b60405161052c9190613545565b60405180910390f35b34801561054157600080fd5b5061054a61119e565b6040516105579190613560565b60405180910390f35b34801561056c57600080fd5b5061057561122c565b6040516105829190613545565b60405180910390f35b34801561059757600080fd5b506105a061123f565b6040516105ad9190613560565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d89190612f56565b6112cd565b6040516105ea91906134bc565b60405180910390f35b3480156105ff57600080fd5b5061061a60048036038101906106159190612cc3565b61137f565b6040516106279190613802565b60405180910390f35b34801561063c57600080fd5b50610645611437565b005b34801561065357600080fd5b5061066e60048036038101906106699190612f0d565b6114bf565b005b34801561067c57600080fd5b50610685611555565b60405161069291906134bc565b60405180910390f35b3480156106a757600080fd5b506106b061157f565b6040516106bd9190613560565b60405180910390f35b6106e060048036038101906106db9190612f56565b611611565b005b3480156106ee57600080fd5b5061070960048036038101906107049190612e06565b61176a565b005b34801561071757600080fd5b50610720611780565b60405161072d9190613560565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190612d83565b61180e565b005b34801561076b57600080fd5b5061078660048036038101906107819190612f56565b611870565b6040516107939190613560565b60405180910390f35b3480156107a857600080fd5b506107b16119c9565b6040516107be9190613802565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190612e86565b6119cf565b005b3480156107fc57600080fd5b5061081760048036038101906108129190612cf0565b611a68565b6040516108249190613545565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f9190612f83565b611afc565b005b34801561086257600080fd5b5061087d60048036038101906108789190612cc3565b611c32565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095a575061095982611d2a565b5b9050919050565b60606000805461097090613b0b565b80601f016020809104026020016040519081016040528092919081815260200182805461099c90613b0b565b80156109e95780601f106109be576101008083540402835291602001916109e9565b820191906000526020600020905b8154815290600101906020018083116109cc57829003601f168201915b5050505050905090565b60006109fe82611d94565b610a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a34906136e2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a83826112cd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb90613782565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b13611e00565b73ffffffffffffffffffffffffffffffffffffffff161480610b425750610b4181610b3c611e00565b611a68565b5b610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890613662565b60405180910390fd5b610b8b8383611e08565b505050565b600d5481565b600b5481565b610ba4611e00565b73ffffffffffffffffffffffffffffffffffffffff16610bc2611555565b73ffffffffffffffffffffffffffffffffffffffff1614610c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0f90613702565b60405180910390fd5b8060099080519060200190610c2e929190612ad7565b5050565b610c3a611e00565b73ffffffffffffffffffffffffffffffffffffffff16610c58611555565b73ffffffffffffffffffffffffffffffffffffffff1614610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca590613702565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610cd76007611ec1565b905090565b610ce4611e00565b73ffffffffffffffffffffffffffffffffffffffff16610d02611555565b73ffffffffffffffffffffffffffffffffffffffff1614610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90613702565b60405180910390fd5b80600c8190555050565b610d73610d6d611e00565b82611ecf565b610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da9906137c2565b60405180910390fd5b610dbd838383611fad565b505050565b610dca611e00565b73ffffffffffffffffffffffffffffffffffffffff16610de8611555565b73ffffffffffffffffffffffffffffffffffffffff1614610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590613702565b60405180910390fd5b80600d8190555050565b610e50611e00565b73ffffffffffffffffffffffffffffffffffffffff16610e6e611555565b73ffffffffffffffffffffffffffffffffffffffff1614610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90613702565b60405180910390fd5b6000610ece611555565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ef1906134a7565b60006040518083038185875af1925050503d8060008114610f2e576040519150601f19603f3d011682016040523d82523d6000602084013e610f33565b606091505b5050905080610f4157600080fd5b50565b610f5f8383836040518060200160405280600081525061180e565b505050565b60606000610f718361137f565b905060008167ffffffffffffffff811115610f8f57610f8e613ca4565b5b604051908082528060200260200182016040528015610fbd5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610fda5750600c548211155b15611063576000610fea836112cd565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561104f578284838151811061103457611033613c75565b5b602002602001018181525050818061104b90613b6e565b9250505b828061105a90613b6e565b93505050610fc9565b82945050505050919050565b611077611e00565b73ffffffffffffffffffffffffffffffffffffffff16611095611555565b73ffffffffffffffffffffffffffffffffffffffff16146110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e290613702565b60405180910390fd5b80600b8190555050565b6110fd611e00565b73ffffffffffffffffffffffffffffffffffffffff1661111b611555565b73ffffffffffffffffffffffffffffffffffffffff1614611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890613702565b60405180910390fd5b80600a9080519060200190611187929190612ad7565b5050565b600e60019054906101000a900460ff1681565b600980546111ab90613b0b565b80601f01602080910402602001604051908101604052809291908181526020018280546111d790613b0b565b80156112245780601f106111f957610100808354040283529160200191611224565b820191906000526020600020905b81548152906001019060200180831161120757829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b6008805461124c90613b0b565b80601f016020809104026020016040519081016040528092919081815260200182805461127890613b0b565b80156112c55780601f1061129a576101008083540402835291602001916112c5565b820191906000526020600020905b8154815290600101906020018083116112a857829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d906136a2565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790613682565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61143f611e00565b73ffffffffffffffffffffffffffffffffffffffff1661145d611555565b73ffffffffffffffffffffffffffffffffffffffff16146114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90613702565b60405180910390fd5b6114bd6000612209565b565b6114c7611e00565b73ffffffffffffffffffffffffffffffffffffffff166114e5611555565b73ffffffffffffffffffffffffffffffffffffffff161461153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290613702565b60405180910390fd5b8060089080519060200190611551929190612ad7565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461158e90613b0b565b80601f01602080910402602001604051908101604052809291908181526020018280546115ba90613b0b565b80156116075780601f106115dc57610100808354040283529160200191611607565b820191906000526020600020905b8154815290600101906020018083116115ea57829003601f168201915b5050505050905090565b806000811180156116245750600d548111155b611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a906135e2565b60405180910390fd5b600c54816116716007611ec1565b61167b9190613940565b11156116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b3906137a2565b60405180910390fd5b600e60009054906101000a900460ff161561170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390613722565b60405180910390fd5b81600b5461171a91906139c7565b34101561175c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611753906137e2565b60405180910390fd5b61176633836122cf565b5050565b61177c611775611e00565b838361230f565b5050565b600a805461178d90613b0b565b80601f01602080910402602001604051908101604052809291908181526020018280546117b990613b0b565b80156118065780601f106117db57610100808354040283529160200191611806565b820191906000526020600020905b8154815290600101906020018083116117e957829003601f168201915b505050505081565b61181f611819611e00565b83611ecf565b61185e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611855906137c2565b60405180910390fd5b61186a8484848461247c565b50505050565b606061187b82611d94565b6118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b190613762565b60405180910390fd5b60001515600e60019054906101000a900460ff161515141561196857600a80546118e390613b0b565b80601f016020809104026020016040519081016040528092919081815260200182805461190f90613b0b565b801561195c5780601f106119315761010080835404028352916020019161195c565b820191906000526020600020905b81548152906001019060200180831161193f57829003601f168201915b505050505090506119c4565b60006119726124d8565b9050600081511161199257604051806020016040528060008152506119c0565b8061199c8461256a565b60096040516020016119b093929190613476565b6040516020818303038152906040525b9150505b919050565b600c5481565b6119d7611e00565b73ffffffffffffffffffffffffffffffffffffffff166119f5611555565b73ffffffffffffffffffffffffffffffffffffffff1614611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4290613702565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611b0f5750600d548111155b611b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b45906135e2565b60405180910390fd5b600c5481611b5c6007611ec1565b611b669190613940565b1115611ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9e906137a2565b60405180910390fd5b611baf611e00565b73ffffffffffffffffffffffffffffffffffffffff16611bcd611555565b73ffffffffffffffffffffffffffffffffffffffff1614611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a90613702565b60405180910390fd5b611c2d82846122cf565b505050565b611c3a611e00565b73ffffffffffffffffffffffffffffffffffffffff16611c58611555565b73ffffffffffffffffffffffffffffffffffffffff1614611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca590613702565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d15906135a2565b60405180910390fd5b611d2781612209565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e7b836112cd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611eda82611d94565b611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1090613642565b60405180910390fd5b6000611f24836112cd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f9357508373ffffffffffffffffffffffffffffffffffffffff16611f7b846109f3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa45750611fa38185611a68565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fcd826112cd565b73ffffffffffffffffffffffffffffffffffffffff1614612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90613742565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90613602565b60405180910390fd5b61209e8383836126cb565b6120a9600082611e08565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120f99190613a21565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121509190613940565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b8181101561230a576122e460076126d0565b6122f7836122f26007611ec1565b6126e6565b808061230290613b6e565b9150506122d2565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561237e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237590613622565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161246f9190613545565b60405180910390a3505050565b612487848484611fad565b61249384848484612704565b6124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c990613582565b60405180910390fd5b50505050565b6060600880546124e790613b0b565b80601f016020809104026020016040519081016040528092919081815260200182805461251390613b0b565b80156125605780601f1061253557610100808354040283529160200191612560565b820191906000526020600020905b81548152906001019060200180831161254357829003601f168201915b5050505050905090565b606060008214156125b2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126c6565b600082905060005b600082146125e45780806125cd90613b6e565b915050600a826125dd9190613996565b91506125ba565b60008167ffffffffffffffff811115612600576125ff613ca4565b5b6040519080825280601f01601f1916602001820160405280156126325781602001600182028036833780820191505090505b5090505b600085146126bf5760018261264b9190613a21565b9150600a8561265a9190613bb7565b60306126669190613940565b60f81b81838151811061267c5761267b613c75565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126b89190613996565b9450612636565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b61270082826040518060200160405280600081525061289b565b5050565b60006127258473ffffffffffffffffffffffffffffffffffffffff166128f6565b1561288e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261274e611e00565b8786866040518563ffffffff1660e01b815260040161277094939291906134d7565b602060405180830381600087803b15801561278a57600080fd5b505af19250505080156127bb57506040513d601f19601f820116820180604052508101906127b89190612ee0565b60015b61283e573d80600081146127eb576040519150601f19603f3d011682016040523d82523d6000602084013e6127f0565b606091505b50600081511415612836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282d90613582565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612893565b600190505b949350505050565b6128a58383612909565b6128b26000848484612704565b6128f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e890613582565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612970906136c2565b60405180910390fd5b61298281611d94565b156129c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b9906135c2565b60405180910390fd5b6129ce600083836126cb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a1e9190613940565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612ae390613b0b565b90600052602060002090601f016020900481019282612b055760008555612b4c565b82601f10612b1e57805160ff1916838001178555612b4c565b82800160010185558215612b4c579182015b82811115612b4b578251825591602001919060010190612b30565b5b509050612b599190612b5d565b5090565b5b80821115612b76576000816000905550600101612b5e565b5090565b6000612b8d612b8884613842565b61381d565b905082815260208101848484011115612ba957612ba8613cd8565b5b612bb4848285613ac9565b509392505050565b6000612bcf612bca84613873565b61381d565b905082815260208101848484011115612beb57612bea613cd8565b5b612bf6848285613ac9565b509392505050565b600081359050612c0d816141f7565b92915050565b600081359050612c228161420e565b92915050565b600081359050612c3781614225565b92915050565b600081519050612c4c81614225565b92915050565b600082601f830112612c6757612c66613cd3565b5b8135612c77848260208601612b7a565b91505092915050565b600082601f830112612c9557612c94613cd3565b5b8135612ca5848260208601612bbc565b91505092915050565b600081359050612cbd8161423c565b92915050565b600060208284031215612cd957612cd8613ce2565b5b6000612ce784828501612bfe565b91505092915050565b60008060408385031215612d0757612d06613ce2565b5b6000612d1585828601612bfe565b9250506020612d2685828601612bfe565b9150509250929050565b600080600060608486031215612d4957612d48613ce2565b5b6000612d5786828701612bfe565b9350506020612d6886828701612bfe565b9250506040612d7986828701612cae565b9150509250925092565b60008060008060808587031215612d9d57612d9c613ce2565b5b6000612dab87828801612bfe565b9450506020612dbc87828801612bfe565b9350506040612dcd87828801612cae565b925050606085013567ffffffffffffffff811115612dee57612ded613cdd565b5b612dfa87828801612c52565b91505092959194509250565b60008060408385031215612e1d57612e1c613ce2565b5b6000612e2b85828601612bfe565b9250506020612e3c85828601612c13565b9150509250929050565b60008060408385031215612e5d57612e5c613ce2565b5b6000612e6b85828601612bfe565b9250506020612e7c85828601612cae565b9150509250929050565b600060208284031215612e9c57612e9b613ce2565b5b6000612eaa84828501612c13565b91505092915050565b600060208284031215612ec957612ec8613ce2565b5b6000612ed784828501612c28565b91505092915050565b600060208284031215612ef657612ef5613ce2565b5b6000612f0484828501612c3d565b91505092915050565b600060208284031215612f2357612f22613ce2565b5b600082013567ffffffffffffffff811115612f4157612f40613cdd565b5b612f4d84828501612c80565b91505092915050565b600060208284031215612f6c57612f6b613ce2565b5b6000612f7a84828501612cae565b91505092915050565b60008060408385031215612f9a57612f99613ce2565b5b6000612fa885828601612cae565b9250506020612fb985828601612bfe565b9150509250929050565b6000612fcf8383613458565b60208301905092915050565b612fe481613a55565b82525050565b6000612ff5826138c9565b612fff81856138f7565b935061300a836138a4565b8060005b8381101561303b5781516130228882612fc3565b975061302d836138ea565b92505060018101905061300e565b5085935050505092915050565b61305181613a67565b82525050565b6000613062826138d4565b61306c8185613908565b935061307c818560208601613ad8565b61308581613ce7565b840191505092915050565b600061309b826138df565b6130a58185613924565b93506130b5818560208601613ad8565b6130be81613ce7565b840191505092915050565b60006130d4826138df565b6130de8185613935565b93506130ee818560208601613ad8565b80840191505092915050565b6000815461310781613b0b565b6131118186613935565b9450600182166000811461312c576001811461313d57613170565b60ff19831686528186019350613170565b613146856138b4565b60005b8381101561316857815481890152600182019150602081019050613149565b838801955050505b50505092915050565b6000613186603283613924565b915061319182613cf8565b604082019050919050565b60006131a9602683613924565b91506131b482613d47565b604082019050919050565b60006131cc601c83613924565b91506131d782613d96565b602082019050919050565b60006131ef601483613924565b91506131fa82613dbf565b602082019050919050565b6000613212602483613924565b915061321d82613de8565b604082019050919050565b6000613235601983613924565b915061324082613e37565b602082019050919050565b6000613258602c83613924565b915061326382613e60565b604082019050919050565b600061327b603883613924565b915061328682613eaf565b604082019050919050565b600061329e602a83613924565b91506132a982613efe565b604082019050919050565b60006132c1602983613924565b91506132cc82613f4d565b604082019050919050565b60006132e4602083613924565b91506132ef82613f9c565b602082019050919050565b6000613307602c83613924565b915061331282613fc5565b604082019050919050565b600061332a602083613924565b915061333582614014565b602082019050919050565b600061334d601783613924565b91506133588261403d565b602082019050919050565b6000613370602983613924565b915061337b82614066565b604082019050919050565b6000613393602f83613924565b915061339e826140b5565b604082019050919050565b60006133b6602183613924565b91506133c182614104565b604082019050919050565b60006133d9600083613919565b91506133e482614153565b600082019050919050565b60006133fc601483613924565b915061340782614156565b602082019050919050565b600061341f603183613924565b915061342a8261417f565b604082019050919050565b6000613442601383613924565b915061344d826141ce565b602082019050919050565b61346181613abf565b82525050565b61347081613abf565b82525050565b600061348282866130c9565b915061348e82856130c9565b915061349a82846130fa565b9150819050949350505050565b60006134b2826133cc565b9150819050919050565b60006020820190506134d16000830184612fdb565b92915050565b60006080820190506134ec6000830187612fdb565b6134f96020830186612fdb565b6135066040830185613467565b81810360608301526135188184613057565b905095945050505050565b6000602082019050818103600083015261353d8184612fea565b905092915050565b600060208201905061355a6000830184613048565b92915050565b6000602082019050818103600083015261357a8184613090565b905092915050565b6000602082019050818103600083015261359b81613179565b9050919050565b600060208201905081810360008301526135bb8161319c565b9050919050565b600060208201905081810360008301526135db816131bf565b9050919050565b600060208201905081810360008301526135fb816131e2565b9050919050565b6000602082019050818103600083015261361b81613205565b9050919050565b6000602082019050818103600083015261363b81613228565b9050919050565b6000602082019050818103600083015261365b8161324b565b9050919050565b6000602082019050818103600083015261367b8161326e565b9050919050565b6000602082019050818103600083015261369b81613291565b9050919050565b600060208201905081810360008301526136bb816132b4565b9050919050565b600060208201905081810360008301526136db816132d7565b9050919050565b600060208201905081810360008301526136fb816132fa565b9050919050565b6000602082019050818103600083015261371b8161331d565b9050919050565b6000602082019050818103600083015261373b81613340565b9050919050565b6000602082019050818103600083015261375b81613363565b9050919050565b6000602082019050818103600083015261377b81613386565b9050919050565b6000602082019050818103600083015261379b816133a9565b9050919050565b600060208201905081810360008301526137bb816133ef565b9050919050565b600060208201905081810360008301526137db81613412565b9050919050565b600060208201905081810360008301526137fb81613435565b9050919050565b60006020820190506138176000830184613467565b92915050565b6000613827613838565b90506138338282613b3d565b919050565b6000604051905090565b600067ffffffffffffffff82111561385d5761385c613ca4565b5b61386682613ce7565b9050602081019050919050565b600067ffffffffffffffff82111561388e5761388d613ca4565b5b61389782613ce7565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061394b82613abf565b915061395683613abf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561398b5761398a613be8565b5b828201905092915050565b60006139a182613abf565b91506139ac83613abf565b9250826139bc576139bb613c17565b5b828204905092915050565b60006139d282613abf565b91506139dd83613abf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a1657613a15613be8565b5b828202905092915050565b6000613a2c82613abf565b9150613a3783613abf565b925082821015613a4a57613a49613be8565b5b828203905092915050565b6000613a6082613a9f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613af6578082015181840152602081019050613adb565b83811115613b05576000848401525b50505050565b60006002820490506001821680613b2357607f821691505b60208210811415613b3757613b36613c46565b5b50919050565b613b4682613ce7565b810181811067ffffffffffffffff82111715613b6557613b64613ca4565b5b80604052505050565b6000613b7982613abf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bac57613bab613be8565b5b600182019050919050565b6000613bc282613abf565b9150613bcd83613abf565b925082613bdd57613bdc613c17565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61420081613a55565b811461420b57600080fd5b50565b61421781613a67565b811461422257600080fd5b50565b61422e81613a73565b811461423957600080fd5b50565b61424581613abf565b811461425057600080fd5b5056fea26469706673582212208e399e44a44265443f170410e2711353619bd1c12a938e91eca850163e5ff8e864736f6c63430008070033697066733a2f2f516d5a667a3836684376424e374b453547325377367043645967775436386e6831424473744657776b50673239532f68696464656e2e6a736f6e

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80635503a0e811610123578063a0712d68116100ab578063d5abeb011161006f578063d5abeb011461079c578063e0a80853146107c7578063e985e9c5146107f0578063efbd73f41461082d578063f2fde38b146108565761021a565b8063a0712d68146106c6578063a22cb465146106e2578063a45ba8e71461070b578063b88d4fde14610736578063c87b56dd1461075f5761021a565b806370a08231116100f257806370a08231146105f3578063715018a6146106305780637ec4a659146106475780638da5cb5b1461067057806395d89b411461069b5761021a565b80635503a0e8146105355780635c975abb1461056057806362b99ad41461058b5780636352211e146105b65761021a565b8063228025e8116101a657806342842e0e1161017557806342842e0e14610452578063438b63001461047b57806344a0d68a146104b85780634fdd43cb146104e1578063518302271461050a5761021a565b8063228025e8146103c057806323b872dd146103e957806327f5535f146104125780633ccfd60b1461043b5761021a565b80630f4a5307116101ed5780630f4a5307146102ed57806313faede61461031857806316ba10e01461034357806316c38b3c1461036c57806318160ddd146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612eb3565b61087f565b6040516102539190613545565b60405180910390f35b34801561026857600080fd5b50610271610961565b60405161027e9190613560565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612f56565b6109f3565b6040516102bb91906134bc565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612e46565b610a78565b005b3480156102f957600080fd5b50610302610b90565b60405161030f9190613802565b60405180910390f35b34801561032457600080fd5b5061032d610b96565b60405161033a9190613802565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190612f0d565b610b9c565b005b34801561037857600080fd5b50610393600480360381019061038e9190612e86565b610c32565b005b3480156103a157600080fd5b506103aa610ccb565b6040516103b79190613802565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612f56565b610cdc565b005b3480156103f557600080fd5b50610410600480360381019061040b9190612d30565b610d62565b005b34801561041e57600080fd5b5061043960048036038101906104349190612f56565b610dc2565b005b34801561044757600080fd5b50610450610e48565b005b34801561045e57600080fd5b5061047960048036038101906104749190612d30565b610f44565b005b34801561048757600080fd5b506104a2600480360381019061049d9190612cc3565b610f64565b6040516104af9190613523565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190612f56565b61106f565b005b3480156104ed57600080fd5b5061050860048036038101906105039190612f0d565b6110f5565b005b34801561051657600080fd5b5061051f61118b565b60405161052c9190613545565b60405180910390f35b34801561054157600080fd5b5061054a61119e565b6040516105579190613560565b60405180910390f35b34801561056c57600080fd5b5061057561122c565b6040516105829190613545565b60405180910390f35b34801561059757600080fd5b506105a061123f565b6040516105ad9190613560565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d89190612f56565b6112cd565b6040516105ea91906134bc565b60405180910390f35b3480156105ff57600080fd5b5061061a60048036038101906106159190612cc3565b61137f565b6040516106279190613802565b60405180910390f35b34801561063c57600080fd5b50610645611437565b005b34801561065357600080fd5b5061066e60048036038101906106699190612f0d565b6114bf565b005b34801561067c57600080fd5b50610685611555565b60405161069291906134bc565b60405180910390f35b3480156106a757600080fd5b506106b061157f565b6040516106bd9190613560565b60405180910390f35b6106e060048036038101906106db9190612f56565b611611565b005b3480156106ee57600080fd5b5061070960048036038101906107049190612e06565b61176a565b005b34801561071757600080fd5b50610720611780565b60405161072d9190613560565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190612d83565b61180e565b005b34801561076b57600080fd5b5061078660048036038101906107819190612f56565b611870565b6040516107939190613560565b60405180910390f35b3480156107a857600080fd5b506107b16119c9565b6040516107be9190613802565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190612e86565b6119cf565b005b3480156107fc57600080fd5b5061081760048036038101906108129190612cf0565b611a68565b6040516108249190613545565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f9190612f83565b611afc565b005b34801561086257600080fd5b5061087d60048036038101906108789190612cc3565b611c32565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095a575061095982611d2a565b5b9050919050565b60606000805461097090613b0b565b80601f016020809104026020016040519081016040528092919081815260200182805461099c90613b0b565b80156109e95780601f106109be576101008083540402835291602001916109e9565b820191906000526020600020905b8154815290600101906020018083116109cc57829003601f168201915b5050505050905090565b60006109fe82611d94565b610a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a34906136e2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a83826112cd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb90613782565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b13611e00565b73ffffffffffffffffffffffffffffffffffffffff161480610b425750610b4181610b3c611e00565b611a68565b5b610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890613662565b60405180910390fd5b610b8b8383611e08565b505050565b600d5481565b600b5481565b610ba4611e00565b73ffffffffffffffffffffffffffffffffffffffff16610bc2611555565b73ffffffffffffffffffffffffffffffffffffffff1614610c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0f90613702565b60405180910390fd5b8060099080519060200190610c2e929190612ad7565b5050565b610c3a611e00565b73ffffffffffffffffffffffffffffffffffffffff16610c58611555565b73ffffffffffffffffffffffffffffffffffffffff1614610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca590613702565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610cd76007611ec1565b905090565b610ce4611e00565b73ffffffffffffffffffffffffffffffffffffffff16610d02611555565b73ffffffffffffffffffffffffffffffffffffffff1614610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90613702565b60405180910390fd5b80600c8190555050565b610d73610d6d611e00565b82611ecf565b610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da9906137c2565b60405180910390fd5b610dbd838383611fad565b505050565b610dca611e00565b73ffffffffffffffffffffffffffffffffffffffff16610de8611555565b73ffffffffffffffffffffffffffffffffffffffff1614610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590613702565b60405180910390fd5b80600d8190555050565b610e50611e00565b73ffffffffffffffffffffffffffffffffffffffff16610e6e611555565b73ffffffffffffffffffffffffffffffffffffffff1614610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90613702565b60405180910390fd5b6000610ece611555565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ef1906134a7565b60006040518083038185875af1925050503d8060008114610f2e576040519150601f19603f3d011682016040523d82523d6000602084013e610f33565b606091505b5050905080610f4157600080fd5b50565b610f5f8383836040518060200160405280600081525061180e565b505050565b60606000610f718361137f565b905060008167ffffffffffffffff811115610f8f57610f8e613ca4565b5b604051908082528060200260200182016040528015610fbd5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610fda5750600c548211155b15611063576000610fea836112cd565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561104f578284838151811061103457611033613c75565b5b602002602001018181525050818061104b90613b6e565b9250505b828061105a90613b6e565b93505050610fc9565b82945050505050919050565b611077611e00565b73ffffffffffffffffffffffffffffffffffffffff16611095611555565b73ffffffffffffffffffffffffffffffffffffffff16146110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e290613702565b60405180910390fd5b80600b8190555050565b6110fd611e00565b73ffffffffffffffffffffffffffffffffffffffff1661111b611555565b73ffffffffffffffffffffffffffffffffffffffff1614611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890613702565b60405180910390fd5b80600a9080519060200190611187929190612ad7565b5050565b600e60019054906101000a900460ff1681565b600980546111ab90613b0b565b80601f01602080910402602001604051908101604052809291908181526020018280546111d790613b0b565b80156112245780601f106111f957610100808354040283529160200191611224565b820191906000526020600020905b81548152906001019060200180831161120757829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b6008805461124c90613b0b565b80601f016020809104026020016040519081016040528092919081815260200182805461127890613b0b565b80156112c55780601f1061129a576101008083540402835291602001916112c5565b820191906000526020600020905b8154815290600101906020018083116112a857829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d906136a2565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790613682565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61143f611e00565b73ffffffffffffffffffffffffffffffffffffffff1661145d611555565b73ffffffffffffffffffffffffffffffffffffffff16146114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90613702565b60405180910390fd5b6114bd6000612209565b565b6114c7611e00565b73ffffffffffffffffffffffffffffffffffffffff166114e5611555565b73ffffffffffffffffffffffffffffffffffffffff161461153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290613702565b60405180910390fd5b8060089080519060200190611551929190612ad7565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461158e90613b0b565b80601f01602080910402602001604051908101604052809291908181526020018280546115ba90613b0b565b80156116075780601f106115dc57610100808354040283529160200191611607565b820191906000526020600020905b8154815290600101906020018083116115ea57829003601f168201915b5050505050905090565b806000811180156116245750600d548111155b611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a906135e2565b60405180910390fd5b600c54816116716007611ec1565b61167b9190613940565b11156116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b3906137a2565b60405180910390fd5b600e60009054906101000a900460ff161561170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390613722565b60405180910390fd5b81600b5461171a91906139c7565b34101561175c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611753906137e2565b60405180910390fd5b61176633836122cf565b5050565b61177c611775611e00565b838361230f565b5050565b600a805461178d90613b0b565b80601f01602080910402602001604051908101604052809291908181526020018280546117b990613b0b565b80156118065780601f106117db57610100808354040283529160200191611806565b820191906000526020600020905b8154815290600101906020018083116117e957829003601f168201915b505050505081565b61181f611819611e00565b83611ecf565b61185e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611855906137c2565b60405180910390fd5b61186a8484848461247c565b50505050565b606061187b82611d94565b6118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b190613762565b60405180910390fd5b60001515600e60019054906101000a900460ff161515141561196857600a80546118e390613b0b565b80601f016020809104026020016040519081016040528092919081815260200182805461190f90613b0b565b801561195c5780601f106119315761010080835404028352916020019161195c565b820191906000526020600020905b81548152906001019060200180831161193f57829003601f168201915b505050505090506119c4565b60006119726124d8565b9050600081511161199257604051806020016040528060008152506119c0565b8061199c8461256a565b60096040516020016119b093929190613476565b6040516020818303038152906040525b9150505b919050565b600c5481565b6119d7611e00565b73ffffffffffffffffffffffffffffffffffffffff166119f5611555565b73ffffffffffffffffffffffffffffffffffffffff1614611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4290613702565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611b0f5750600d548111155b611b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b45906135e2565b60405180910390fd5b600c5481611b5c6007611ec1565b611b669190613940565b1115611ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9e906137a2565b60405180910390fd5b611baf611e00565b73ffffffffffffffffffffffffffffffffffffffff16611bcd611555565b73ffffffffffffffffffffffffffffffffffffffff1614611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a90613702565b60405180910390fd5b611c2d82846122cf565b505050565b611c3a611e00565b73ffffffffffffffffffffffffffffffffffffffff16611c58611555565b73ffffffffffffffffffffffffffffffffffffffff1614611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca590613702565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d15906135a2565b60405180910390fd5b611d2781612209565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e7b836112cd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611eda82611d94565b611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1090613642565b60405180910390fd5b6000611f24836112cd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f9357508373ffffffffffffffffffffffffffffffffffffffff16611f7b846109f3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa45750611fa38185611a68565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fcd826112cd565b73ffffffffffffffffffffffffffffffffffffffff1614612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90613742565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90613602565b60405180910390fd5b61209e8383836126cb565b6120a9600082611e08565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120f99190613a21565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121509190613940565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b8181101561230a576122e460076126d0565b6122f7836122f26007611ec1565b6126e6565b808061230290613b6e565b9150506122d2565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561237e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237590613622565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161246f9190613545565b60405180910390a3505050565b612487848484611fad565b61249384848484612704565b6124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c990613582565b60405180910390fd5b50505050565b6060600880546124e790613b0b565b80601f016020809104026020016040519081016040528092919081815260200182805461251390613b0b565b80156125605780601f1061253557610100808354040283529160200191612560565b820191906000526020600020905b81548152906001019060200180831161254357829003601f168201915b5050505050905090565b606060008214156125b2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126c6565b600082905060005b600082146125e45780806125cd90613b6e565b915050600a826125dd9190613996565b91506125ba565b60008167ffffffffffffffff811115612600576125ff613ca4565b5b6040519080825280601f01601f1916602001820160405280156126325781602001600182028036833780820191505090505b5090505b600085146126bf5760018261264b9190613a21565b9150600a8561265a9190613bb7565b60306126669190613940565b60f81b81838151811061267c5761267b613c75565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126b89190613996565b9450612636565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b61270082826040518060200160405280600081525061289b565b5050565b60006127258473ffffffffffffffffffffffffffffffffffffffff166128f6565b1561288e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261274e611e00565b8786866040518563ffffffff1660e01b815260040161277094939291906134d7565b602060405180830381600087803b15801561278a57600080fd5b505af19250505080156127bb57506040513d601f19601f820116820180604052508101906127b89190612ee0565b60015b61283e573d80600081146127eb576040519150601f19603f3d011682016040523d82523d6000602084013e6127f0565b606091505b50600081511415612836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282d90613582565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612893565b600190505b949350505050565b6128a58383612909565b6128b26000848484612704565b6128f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e890613582565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612970906136c2565b60405180910390fd5b61298281611d94565b156129c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b9906135c2565b60405180910390fd5b6129ce600083836126cb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a1e9190613940565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612ae390613b0b565b90600052602060002090601f016020900481019282612b055760008555612b4c565b82601f10612b1e57805160ff1916838001178555612b4c565b82800160010185558215612b4c579182015b82811115612b4b578251825591602001919060010190612b30565b5b509050612b599190612b5d565b5090565b5b80821115612b76576000816000905550600101612b5e565b5090565b6000612b8d612b8884613842565b61381d565b905082815260208101848484011115612ba957612ba8613cd8565b5b612bb4848285613ac9565b509392505050565b6000612bcf612bca84613873565b61381d565b905082815260208101848484011115612beb57612bea613cd8565b5b612bf6848285613ac9565b509392505050565b600081359050612c0d816141f7565b92915050565b600081359050612c228161420e565b92915050565b600081359050612c3781614225565b92915050565b600081519050612c4c81614225565b92915050565b600082601f830112612c6757612c66613cd3565b5b8135612c77848260208601612b7a565b91505092915050565b600082601f830112612c9557612c94613cd3565b5b8135612ca5848260208601612bbc565b91505092915050565b600081359050612cbd8161423c565b92915050565b600060208284031215612cd957612cd8613ce2565b5b6000612ce784828501612bfe565b91505092915050565b60008060408385031215612d0757612d06613ce2565b5b6000612d1585828601612bfe565b9250506020612d2685828601612bfe565b9150509250929050565b600080600060608486031215612d4957612d48613ce2565b5b6000612d5786828701612bfe565b9350506020612d6886828701612bfe565b9250506040612d7986828701612cae565b9150509250925092565b60008060008060808587031215612d9d57612d9c613ce2565b5b6000612dab87828801612bfe565b9450506020612dbc87828801612bfe565b9350506040612dcd87828801612cae565b925050606085013567ffffffffffffffff811115612dee57612ded613cdd565b5b612dfa87828801612c52565b91505092959194509250565b60008060408385031215612e1d57612e1c613ce2565b5b6000612e2b85828601612bfe565b9250506020612e3c85828601612c13565b9150509250929050565b60008060408385031215612e5d57612e5c613ce2565b5b6000612e6b85828601612bfe565b9250506020612e7c85828601612cae565b9150509250929050565b600060208284031215612e9c57612e9b613ce2565b5b6000612eaa84828501612c13565b91505092915050565b600060208284031215612ec957612ec8613ce2565b5b6000612ed784828501612c28565b91505092915050565b600060208284031215612ef657612ef5613ce2565b5b6000612f0484828501612c3d565b91505092915050565b600060208284031215612f2357612f22613ce2565b5b600082013567ffffffffffffffff811115612f4157612f40613cdd565b5b612f4d84828501612c80565b91505092915050565b600060208284031215612f6c57612f6b613ce2565b5b6000612f7a84828501612cae565b91505092915050565b60008060408385031215612f9a57612f99613ce2565b5b6000612fa885828601612cae565b9250506020612fb985828601612bfe565b9150509250929050565b6000612fcf8383613458565b60208301905092915050565b612fe481613a55565b82525050565b6000612ff5826138c9565b612fff81856138f7565b935061300a836138a4565b8060005b8381101561303b5781516130228882612fc3565b975061302d836138ea565b92505060018101905061300e565b5085935050505092915050565b61305181613a67565b82525050565b6000613062826138d4565b61306c8185613908565b935061307c818560208601613ad8565b61308581613ce7565b840191505092915050565b600061309b826138df565b6130a58185613924565b93506130b5818560208601613ad8565b6130be81613ce7565b840191505092915050565b60006130d4826138df565b6130de8185613935565b93506130ee818560208601613ad8565b80840191505092915050565b6000815461310781613b0b565b6131118186613935565b9450600182166000811461312c576001811461313d57613170565b60ff19831686528186019350613170565b613146856138b4565b60005b8381101561316857815481890152600182019150602081019050613149565b838801955050505b50505092915050565b6000613186603283613924565b915061319182613cf8565b604082019050919050565b60006131a9602683613924565b91506131b482613d47565b604082019050919050565b60006131cc601c83613924565b91506131d782613d96565b602082019050919050565b60006131ef601483613924565b91506131fa82613dbf565b602082019050919050565b6000613212602483613924565b915061321d82613de8565b604082019050919050565b6000613235601983613924565b915061324082613e37565b602082019050919050565b6000613258602c83613924565b915061326382613e60565b604082019050919050565b600061327b603883613924565b915061328682613eaf565b604082019050919050565b600061329e602a83613924565b91506132a982613efe565b604082019050919050565b60006132c1602983613924565b91506132cc82613f4d565b604082019050919050565b60006132e4602083613924565b91506132ef82613f9c565b602082019050919050565b6000613307602c83613924565b915061331282613fc5565b604082019050919050565b600061332a602083613924565b915061333582614014565b602082019050919050565b600061334d601783613924565b91506133588261403d565b602082019050919050565b6000613370602983613924565b915061337b82614066565b604082019050919050565b6000613393602f83613924565b915061339e826140b5565b604082019050919050565b60006133b6602183613924565b91506133c182614104565b604082019050919050565b60006133d9600083613919565b91506133e482614153565b600082019050919050565b60006133fc601483613924565b915061340782614156565b602082019050919050565b600061341f603183613924565b915061342a8261417f565b604082019050919050565b6000613442601383613924565b915061344d826141ce565b602082019050919050565b61346181613abf565b82525050565b61347081613abf565b82525050565b600061348282866130c9565b915061348e82856130c9565b915061349a82846130fa565b9150819050949350505050565b60006134b2826133cc565b9150819050919050565b60006020820190506134d16000830184612fdb565b92915050565b60006080820190506134ec6000830187612fdb565b6134f96020830186612fdb565b6135066040830185613467565b81810360608301526135188184613057565b905095945050505050565b6000602082019050818103600083015261353d8184612fea565b905092915050565b600060208201905061355a6000830184613048565b92915050565b6000602082019050818103600083015261357a8184613090565b905092915050565b6000602082019050818103600083015261359b81613179565b9050919050565b600060208201905081810360008301526135bb8161319c565b9050919050565b600060208201905081810360008301526135db816131bf565b9050919050565b600060208201905081810360008301526135fb816131e2565b9050919050565b6000602082019050818103600083015261361b81613205565b9050919050565b6000602082019050818103600083015261363b81613228565b9050919050565b6000602082019050818103600083015261365b8161324b565b9050919050565b6000602082019050818103600083015261367b8161326e565b9050919050565b6000602082019050818103600083015261369b81613291565b9050919050565b600060208201905081810360008301526136bb816132b4565b9050919050565b600060208201905081810360008301526136db816132d7565b9050919050565b600060208201905081810360008301526136fb816132fa565b9050919050565b6000602082019050818103600083015261371b8161331d565b9050919050565b6000602082019050818103600083015261373b81613340565b9050919050565b6000602082019050818103600083015261375b81613363565b9050919050565b6000602082019050818103600083015261377b81613386565b9050919050565b6000602082019050818103600083015261379b816133a9565b9050919050565b600060208201905081810360008301526137bb816133ef565b9050919050565b600060208201905081810360008301526137db81613412565b9050919050565b600060208201905081810360008301526137fb81613435565b9050919050565b60006020820190506138176000830184613467565b92915050565b6000613827613838565b90506138338282613b3d565b919050565b6000604051905090565b600067ffffffffffffffff82111561385d5761385c613ca4565b5b61386682613ce7565b9050602081019050919050565b600067ffffffffffffffff82111561388e5761388d613ca4565b5b61389782613ce7565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061394b82613abf565b915061395683613abf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561398b5761398a613be8565b5b828201905092915050565b60006139a182613abf565b91506139ac83613abf565b9250826139bc576139bb613c17565b5b828204905092915050565b60006139d282613abf565b91506139dd83613abf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a1657613a15613be8565b5b828202905092915050565b6000613a2c82613abf565b9150613a3783613abf565b925082821015613a4a57613a49613be8565b5b828203905092915050565b6000613a6082613a9f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613af6578082015181840152602081019050613adb565b83811115613b05576000848401525b50505050565b60006002820490506001821680613b2357607f821691505b60208210811415613b3757613b36613c46565b5b50919050565b613b4682613ce7565b810181811067ffffffffffffffff82111715613b6557613b64613ca4565b5b80604052505050565b6000613b7982613abf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bac57613bab613be8565b5b600182019050919050565b6000613bc282613abf565b9150613bcd83613abf565b925082613bdd57613bdc613c17565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61420081613a55565b811461420b57600080fd5b50565b61421781613a67565b811461422257600080fd5b50565b61422e81613a73565b811461423957600080fd5b50565b61424581613abf565b811461425057600080fd5b5056fea26469706673582212208e399e44a44265443f170410e2711353619bd1c12a938e91eca850163e5ff8e864736f6c63430008070033

Deployed Bytecode Sourcemap

39428:3764:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25240:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26185:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27744:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27267:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39763:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39690:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42543:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42649:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40256:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42075:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28494:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42175:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42732:137;;;;;;;;;;;;;:::i;:::-;;28904:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40767:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41995:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42299:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39835:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39612:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39805:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39579:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25879:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25609:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6228:103;;;;;;;;;;;;;:::i;:::-;;42437:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5577:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26354:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40351:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28037:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39650:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29160:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41408:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39727:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41908:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28263:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40606:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6486:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25240:305;25342:4;25394:25;25379:40;;;:11;:40;;;;:105;;;;25451:33;25436:48;;;:11;:48;;;;25379:105;:158;;;;25501:36;25525:11;25501:23;:36::i;:::-;25379:158;25359:178;;25240:305;;;:::o;26185:100::-;26239:13;26272:5;26265:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26185:100;:::o;27744:221::-;27820:7;27848:16;27856:7;27848;:16::i;:::-;27840:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27933:15;:24;27949:7;27933:24;;;;;;;;;;;;;;;;;;;;;27926:31;;27744:221;;;:::o;27267:411::-;27348:13;27364:23;27379:7;27364:14;:23::i;:::-;27348:39;;27412:5;27406:11;;:2;:11;;;;27398:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27506:5;27490:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27515:37;27532:5;27539:12;:10;:12::i;:::-;27515:16;:37::i;:::-;27490:62;27468:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27649:21;27658:2;27662:7;27649:8;:21::i;:::-;27337:341;27267:411;;:::o;39763:35::-;;;;:::o;39690:32::-;;;;:::o;42543:100::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42627:10:::1;42615:9;:22;;;;;;;;;;;;:::i;:::-;;42543:100:::0;:::o;42649:77::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42714:6:::1;42705;;:15;;;;;;;;;;;;;;;;;;42649:77:::0;:::o;40256:89::-;40300:7;40323:16;:6;:14;:16::i;:::-;40316:23;;40256:89;:::o;42075:94::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42153:10:::1;42141:9;:22;;;;42075:94:::0;:::o;28494:339::-;28689:41;28708:12;:10;:12::i;:::-;28722:7;28689:18;:41::i;:::-;28681:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28797:28;28807:4;28813:2;28817:7;28797:9;:28::i;:::-;28494:339;;;:::o;42175:118::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42271:16:::1;42253:15;:34;;;;42175:118:::0;:::o;42732:137::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42777:7:::1;42798;:5;:7::i;:::-;42790:21;;42819;42790:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42776:69;;;42860:2;42852:11;;;::::0;::::1;;42769:100;42732:137::o:0;28904:185::-;29042:39;29059:4;29065:2;29069:7;29042:39;;;;;;;;;;;;:16;:39::i;:::-;28904:185;;;:::o;40767:635::-;40842:16;40870:23;40896:17;40906:6;40896:9;:17::i;:::-;40870:43;;40920:30;40967:15;40953:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40920:63;;40990:22;41015:1;40990:26;;41023:23;41059:309;41084:15;41066;:33;:64;;;;;41121:9;;41103:14;:27;;41066:64;41059:309;;;41141:25;41169:23;41177:14;41169:7;:23::i;:::-;41141:51;;41228:6;41207:27;;:17;:27;;;41203:131;;;41280:14;41247:13;41261:15;41247:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;41307:17;;;;;:::i;:::-;;;;41203:131;41344:16;;;;;:::i;:::-;;;;41132:236;41059:309;;;41383:13;41376:20;;;;;;40767:635;;;:::o;41995:74::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42058:5:::1;42051:4;:12;;;;41995:74:::0;:::o;42299:132::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42407:18:::1;42387:17;:38;;;;;;;;;;;;:::i;:::-;;42299:132:::0;:::o;39835:28::-;;;;;;;;;;;;;:::o;39612:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39805:25::-;;;;;;;;;;;;;:::o;39579:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25879:239::-;25951:7;25971:13;25987:7;:16;25995:7;25987:16;;;;;;;;;;;;;;;;;;;;;25971:32;;26039:1;26022:19;;:5;:19;;;;26014:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26105:5;26098:12;;;25879:239;;;:::o;25609:208::-;25681:7;25726:1;25709:19;;:5;:19;;;;25701:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25793:9;:16;25803:5;25793:16;;;;;;;;;;;;;;;;25786:23;;25609:208;;;:::o;6228:103::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6293:30:::1;6320:1;6293:18;:30::i;:::-;6228:103::o:0;42437:100::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42521:10:::1;42509:9;:22;;;;;;;;;;;;:::i;:::-;;42437:100:::0;:::o;5577:87::-;5623:7;5650:6;;;;;;;;;;;5643:13;;5577:87;:::o;26354:104::-;26410:13;26443:7;26436:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26354:104;:::o;40351:247::-;40416:11;40093:1;40079:11;:15;:49;;;;;40113:15;;40098:11;:30;;40079:49;40071:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;40202:9;;40187:11;40168:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;40160:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;40445:6:::1;;;;;;;;;;;40444:7;40436:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;40514:11;40507:4;;:18;;;;:::i;:::-;40494:9;:31;;40486:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40558:34;40568:10;40580:11;40558:9;:34::i;:::-;40351:247:::0;;:::o;28037:155::-;28132:52;28151:12;:10;:12::i;:::-;28165:8;28175;28132:18;:52::i;:::-;28037:155;;:::o;39650:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29160:328::-;29335:41;29354:12;:10;:12::i;:::-;29368:7;29335:18;:41::i;:::-;29327:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29441:39;29455:4;29461:2;29465:7;29474:5;29441:13;:39::i;:::-;29160:328;;;;:::o;41408:494::-;41507:13;41548:17;41556:8;41548:7;:17::i;:::-;41532:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;41655:5;41643:17;;:8;;;;;;;;;;;:17;;;41639:64;;;41678:17;41671:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41639:64;41711:28;41742:10;:8;:10::i;:::-;41711:41;;41797:1;41772:14;41766:28;:32;:130;;;;;;;;;;;;;;;;;41834:14;41850:19;:8;:17;:19::i;:::-;41871:9;41817:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41766:130;41759:137;;;41408:494;;;;:::o;39727:31::-;;;;:::o;41908:81::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41977:6:::1;41966:8;;:17;;;;;;;;;;;;;;;;;;41908:81:::0;:::o;28263:164::-;28360:4;28384:18;:25;28403:5;28384:25;;;;;;;;;;;;;;;:35;28410:8;28384:35;;;;;;;;;;;;;;;;;;;;;;;;;28377:42;;28263:164;;;;:::o;40606:155::-;40692:11;40093:1;40079:11;:15;:49;;;;;40113:15;;40098:11;:30;;40079:49;40071:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;40202:9;;40187:11;40168:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;40160:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;5808:12:::1;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40722:33:::2;40732:9;40743:11;40722:9;:33::i;:::-;40606:155:::0;;;:::o;6486:201::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6595:1:::1;6575:22;;:8;:22;;;;6567:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6651:28;6670:8;6651:18;:28::i;:::-;6486:201:::0;:::o;18009:157::-;18094:4;18133:25;18118:40;;;:11;:40;;;;18111:47;;18009:157;;;:::o;30998:127::-;31063:4;31115:1;31087:30;;:7;:16;31095:7;31087:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31080:37;;30998:127;;;:::o;4301:98::-;4354:7;4381:10;4374:17;;4301:98;:::o;34980:174::-;35082:2;35055:15;:24;35071:7;35055:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35138:7;35134:2;35100:46;;35109:23;35124:7;35109:14;:23::i;:::-;35100:46;;;;;;;;;;;;34980:174;;:::o;905:114::-;970:7;997;:14;;;990:21;;905:114;;;:::o;31292:348::-;31385:4;31410:16;31418:7;31410;:16::i;:::-;31402:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31486:13;31502:23;31517:7;31502:14;:23::i;:::-;31486:39;;31555:5;31544:16;;:7;:16;;;:51;;;;31588:7;31564:31;;:20;31576:7;31564:11;:20::i;:::-;:31;;;31544:51;:87;;;;31599:32;31616:5;31623:7;31599:16;:32::i;:::-;31544:87;31536:96;;;31292:348;;;;:::o;34284:578::-;34443:4;34416:31;;:23;34431:7;34416:14;:23::i;:::-;:31;;;34408:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34526:1;34512:16;;:2;:16;;;;34504:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34582:39;34603:4;34609:2;34613:7;34582:20;:39::i;:::-;34686:29;34703:1;34707:7;34686:8;:29::i;:::-;34747:1;34728:9;:15;34738:4;34728:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34776:1;34759:9;:13;34769:2;34759:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34807:2;34788:7;:16;34796:7;34788:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34846:7;34842:2;34827:27;;34836:4;34827:27;;;;;;;;;;;;34284:578;;;:::o;6847:191::-;6921:16;6940:6;;;;;;;;;;;6921:25;;6966:8;6957:6;;:17;;;;;;;;;;;;;;;;;;7021:8;6990:40;;7011:8;6990:40;;;;;;;;;;;;6910:128;6847:191;:::o;42875:204::-;42955:9;42950:124;42974:11;42970:1;:15;42950:124;;;43001:18;:6;:16;:18::i;:::-;43028:38;43038:9;43049:16;:6;:14;:16::i;:::-;43028:9;:38::i;:::-;42987:3;;;;;:::i;:::-;;;;42950:124;;;;42875:204;;:::o;35296:315::-;35451:8;35442:17;;:5;:17;;;;35434:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35538:8;35500:18;:25;35519:5;35500:25;;;;;;;;;;;;;;;:35;35526:8;35500:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35584:8;35562:41;;35577:5;35562:41;;;35594:8;35562:41;;;;;;:::i;:::-;;;;;;;;35296:315;;;:::o;30370:::-;30527:28;30537:4;30543:2;30547:7;30527:9;:28::i;:::-;30574:48;30597:4;30603:2;30607:7;30616:5;30574:22;:48::i;:::-;30566:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30370:315;;;;:::o;43085:104::-;43145:13;43174:9;43167:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43085:104;:::o;1863:723::-;1919:13;2149:1;2140:5;:10;2136:53;;;2167:10;;;;;;;;;;;;;;;;;;;;;2136:53;2199:12;2214:5;2199:20;;2230:14;2255:78;2270:1;2262:4;:9;2255:78;;2288:8;;;;;:::i;:::-;;;;2319:2;2311:10;;;;;:::i;:::-;;;2255:78;;;2343:19;2375:6;2365:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2343:39;;2393:154;2409:1;2400:5;:10;2393:154;;2437:1;2427:11;;;;;:::i;:::-;;;2504:2;2496:5;:10;;;;:::i;:::-;2483:2;:24;;;;:::i;:::-;2470:39;;2453:6;2460;2453:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2533:2;2524:11;;;;;:::i;:::-;;;2393:154;;;2571:6;2557:21;;;;;1863:723;;;;:::o;37547:126::-;;;;:::o;1027:127::-;1134:1;1116:7;:14;;;:19;;;;;;;;;;;1027:127;:::o;31982:110::-;32058:26;32068:2;32072:7;32058:26;;;;;;;;;;;;:9;:26::i;:::-;31982:110;;:::o;36176:799::-;36331:4;36352:15;:2;:13;;;:15::i;:::-;36348:620;;;36404:2;36388:36;;;36425:12;:10;:12::i;:::-;36439:4;36445:7;36454:5;36388:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36384:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36647:1;36630:6;:13;:18;36626:272;;;36673:60;;;;;;;;;;:::i;:::-;;;;;;;;36626:272;36848:6;36842:13;36833:6;36829:2;36825:15;36818:38;36384:529;36521:41;;;36511:51;;;:6;:51;;;;36504:58;;;;;36348:620;36952:4;36945:11;;36176:799;;;;;;;:::o;32319:321::-;32449:18;32455:2;32459:7;32449:5;:18::i;:::-;32500:54;32531:1;32535:2;32539:7;32548:5;32500:22;:54::i;:::-;32478:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32319:321;;;:::o;7865:387::-;7925:4;8133:12;8200:7;8188:20;8180:28;;8243:1;8236:4;:8;8229:15;;;7865:387;;;:::o;32976:382::-;33070:1;33056:16;;:2;:16;;;;33048:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33129:16;33137:7;33129;:16::i;:::-;33128:17;33120:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33191:45;33220:1;33224:2;33228:7;33191:20;:45::i;:::-;33266:1;33249:9;:13;33259:2;33249:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33297:2;33278:7;:16;33286:7;33278:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33342:7;33338:2;33317:33;;33334:1;33317:33;;;;;;;;;;;;32976:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10302:845::-;10405:3;10442:5;10436:12;10471:36;10497:9;10471:36;:::i;:::-;10523:89;10605:6;10600:3;10523:89;:::i;:::-;10516:96;;10643:1;10632:9;10628:17;10659:1;10654:137;;;;10805:1;10800:341;;;;10621:520;;10654:137;10738:4;10734:9;10723;10719:25;10714:3;10707:38;10774:6;10769:3;10765:16;10758:23;;10654:137;;10800:341;10867:38;10899:5;10867:38;:::i;:::-;10927:1;10941:154;10955:6;10952:1;10949:13;10941:154;;;11029:7;11023:14;11019:1;11014:3;11010:11;11003:35;11079:1;11070:7;11066:15;11055:26;;10977:4;10974:1;10970:12;10965:17;;10941:154;;;11124:6;11119:3;11115:16;11108:23;;10807:334;;10621:520;;10409:738;;10302:845;;;;:::o;11153:366::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:::-;13527:3;13548:67;13612:2;13607:3;13548:67;:::i;:::-;13541:74;;13624:93;13713:3;13624:93;:::i;:::-;13742:2;13737:3;13733:12;13726:19;;13385:366;;;:::o;13757:::-;13899:3;13920:67;13984:2;13979:3;13920:67;:::i;:::-;13913:74;;13996:93;14085:3;13996:93;:::i;:::-;14114:2;14109:3;14105:12;14098:19;;13757:366;;;:::o;14129:::-;14271:3;14292:67;14356:2;14351:3;14292:67;:::i;:::-;14285:74;;14368:93;14457:3;14368:93;:::i;:::-;14486:2;14481:3;14477:12;14470:19;;14129:366;;;:::o;14501:::-;14643:3;14664:67;14728:2;14723:3;14664:67;:::i;:::-;14657:74;;14740:93;14829:3;14740:93;:::i;:::-;14858:2;14853:3;14849:12;14842:19;;14501:366;;;:::o;14873:::-;15015:3;15036:67;15100:2;15095:3;15036:67;:::i;:::-;15029:74;;15112:93;15201:3;15112:93;:::i;:::-;15230:2;15225:3;15221:12;15214:19;;14873:366;;;:::o;15245:::-;15387:3;15408:67;15472:2;15467:3;15408:67;:::i;:::-;15401:74;;15484:93;15573:3;15484:93;:::i;:::-;15602:2;15597:3;15593:12;15586:19;;15245:366;;;:::o;15617:::-;15759:3;15780:67;15844:2;15839:3;15780:67;:::i;:::-;15773:74;;15856:93;15945:3;15856:93;:::i;:::-;15974:2;15969:3;15965:12;15958:19;;15617:366;;;:::o;15989:::-;16131:3;16152:67;16216:2;16211:3;16152:67;:::i;:::-;16145:74;;16228:93;16317:3;16228:93;:::i;:::-;16346:2;16341:3;16337:12;16330:19;;15989:366;;;:::o;16361:::-;16503:3;16524:67;16588:2;16583:3;16524:67;:::i;:::-;16517:74;;16600:93;16689:3;16600:93;:::i;:::-;16718:2;16713:3;16709:12;16702:19;;16361:366;;;:::o;16733:::-;16875:3;16896:67;16960:2;16955:3;16896:67;:::i;:::-;16889:74;;16972:93;17061:3;16972:93;:::i;:::-;17090:2;17085:3;17081:12;17074:19;;16733:366;;;:::o;17105:::-;17247:3;17268:67;17332:2;17327:3;17268:67;:::i;:::-;17261:74;;17344:93;17433:3;17344:93;:::i;:::-;17462:2;17457:3;17453:12;17446:19;;17105:366;;;:::o;17477:398::-;17636:3;17657:83;17738:1;17733:3;17657:83;:::i;:::-;17650:90;;17749:93;17838:3;17749:93;:::i;:::-;17867:1;17862:3;17858:11;17851:18;;17477:398;;;:::o;17881:366::-;18023:3;18044:67;18108:2;18103:3;18044:67;:::i;:::-;18037:74;;18120:93;18209:3;18120:93;:::i;:::-;18238:2;18233:3;18229:12;18222:19;;17881:366;;;:::o;18253:::-;18395:3;18416:67;18480:2;18475:3;18416:67;:::i;:::-;18409:74;;18492:93;18581:3;18492:93;:::i;:::-;18610:2;18605:3;18601:12;18594:19;;18253:366;;;:::o;18625:::-;18767:3;18788:67;18852:2;18847:3;18788:67;:::i;:::-;18781:74;;18864:93;18953:3;18864:93;:::i;:::-;18982:2;18977:3;18973:12;18966:19;;18625:366;;;:::o;18997:108::-;19074:24;19092:5;19074:24;:::i;:::-;19069:3;19062:37;18997:108;;:::o;19111:118::-;19198:24;19216:5;19198:24;:::i;:::-;19193:3;19186:37;19111:118;;:::o;19235:589::-;19460:3;19482:95;19573:3;19564:6;19482:95;:::i;:::-;19475:102;;19594:95;19685:3;19676:6;19594:95;:::i;:::-;19587:102;;19706:92;19794:3;19785:6;19706:92;:::i;:::-;19699:99;;19815:3;19808:10;;19235:589;;;;;;:::o;19830:379::-;20014:3;20036:147;20179:3;20036:147;:::i;:::-;20029:154;;20200:3;20193:10;;19830:379;;;:::o;20215:222::-;20308:4;20346:2;20335:9;20331:18;20323:26;;20359:71;20427:1;20416:9;20412:17;20403:6;20359:71;:::i;:::-;20215:222;;;;:::o;20443:640::-;20638:4;20676:3;20665:9;20661:19;20653:27;;20690:71;20758:1;20747:9;20743:17;20734:6;20690:71;:::i;:::-;20771:72;20839:2;20828:9;20824:18;20815:6;20771:72;:::i;:::-;20853;20921:2;20910:9;20906:18;20897:6;20853:72;:::i;:::-;20972:9;20966:4;20962:20;20957:2;20946:9;20942:18;20935:48;21000:76;21071:4;21062:6;21000:76;:::i;:::-;20992:84;;20443:640;;;;;;;:::o;21089:373::-;21232:4;21270:2;21259:9;21255:18;21247:26;;21319:9;21313:4;21309:20;21305:1;21294:9;21290:17;21283:47;21347:108;21450:4;21441:6;21347:108;:::i;:::-;21339:116;;21089:373;;;;:::o;21468:210::-;21555:4;21593:2;21582:9;21578:18;21570:26;;21606:65;21668:1;21657:9;21653:17;21644:6;21606:65;:::i;:::-;21468:210;;;;:::o;21684:313::-;21797:4;21835:2;21824:9;21820:18;21812:26;;21884:9;21878:4;21874:20;21870:1;21859:9;21855:17;21848:47;21912:78;21985:4;21976:6;21912:78;:::i;:::-;21904:86;;21684:313;;;;:::o;22003:419::-;22169:4;22207:2;22196:9;22192:18;22184:26;;22256:9;22250:4;22246:20;22242:1;22231:9;22227:17;22220:47;22284:131;22410:4;22284:131;:::i;:::-;22276:139;;22003:419;;;:::o;22428:::-;22594:4;22632:2;22621:9;22617:18;22609:26;;22681:9;22675:4;22671:20;22667:1;22656:9;22652:17;22645:47;22709:131;22835:4;22709:131;:::i;:::-;22701:139;;22428:419;;;:::o;22853:::-;23019:4;23057:2;23046:9;23042:18;23034:26;;23106:9;23100:4;23096:20;23092:1;23081:9;23077:17;23070:47;23134:131;23260:4;23134:131;:::i;:::-;23126:139;;22853:419;;;:::o;23278:::-;23444:4;23482:2;23471:9;23467:18;23459:26;;23531:9;23525:4;23521:20;23517:1;23506:9;23502:17;23495:47;23559:131;23685:4;23559:131;:::i;:::-;23551:139;;23278:419;;;:::o;23703:::-;23869:4;23907:2;23896:9;23892:18;23884:26;;23956:9;23950:4;23946:20;23942:1;23931:9;23927:17;23920:47;23984:131;24110:4;23984:131;:::i;:::-;23976:139;;23703:419;;;:::o;24128:::-;24294:4;24332:2;24321:9;24317:18;24309:26;;24381:9;24375:4;24371:20;24367:1;24356:9;24352:17;24345:47;24409:131;24535:4;24409:131;:::i;:::-;24401:139;;24128:419;;;:::o;24553:::-;24719:4;24757:2;24746:9;24742:18;24734:26;;24806:9;24800:4;24796:20;24792:1;24781:9;24777:17;24770:47;24834:131;24960:4;24834:131;:::i;:::-;24826:139;;24553:419;;;:::o;24978:::-;25144:4;25182:2;25171:9;25167:18;25159:26;;25231:9;25225:4;25221:20;25217:1;25206:9;25202:17;25195:47;25259:131;25385:4;25259:131;:::i;:::-;25251:139;;24978:419;;;:::o;25403:::-;25569:4;25607:2;25596:9;25592:18;25584:26;;25656:9;25650:4;25646:20;25642:1;25631:9;25627:17;25620:47;25684:131;25810:4;25684:131;:::i;:::-;25676:139;;25403:419;;;:::o;25828:::-;25994:4;26032:2;26021:9;26017:18;26009:26;;26081:9;26075:4;26071:20;26067:1;26056:9;26052:17;26045:47;26109:131;26235:4;26109:131;:::i;:::-;26101:139;;25828:419;;;:::o;26253:::-;26419:4;26457:2;26446:9;26442:18;26434:26;;26506:9;26500:4;26496:20;26492:1;26481:9;26477:17;26470:47;26534:131;26660:4;26534:131;:::i;:::-;26526:139;;26253:419;;;:::o;26678:::-;26844:4;26882:2;26871:9;26867:18;26859:26;;26931:9;26925:4;26921:20;26917:1;26906:9;26902:17;26895:47;26959:131;27085:4;26959:131;:::i;:::-;26951:139;;26678:419;;;:::o;27103:::-;27269:4;27307:2;27296:9;27292:18;27284:26;;27356:9;27350:4;27346:20;27342:1;27331:9;27327:17;27320:47;27384:131;27510:4;27384:131;:::i;:::-;27376:139;;27103:419;;;:::o;27528:::-;27694:4;27732:2;27721:9;27717:18;27709:26;;27781:9;27775:4;27771:20;27767:1;27756:9;27752:17;27745:47;27809:131;27935:4;27809:131;:::i;:::-;27801:139;;27528:419;;;:::o;27953:::-;28119:4;28157:2;28146:9;28142:18;28134:26;;28206:9;28200:4;28196:20;28192:1;28181:9;28177:17;28170:47;28234:131;28360:4;28234:131;:::i;:::-;28226:139;;27953:419;;;:::o;28378:::-;28544:4;28582:2;28571:9;28567:18;28559:26;;28631:9;28625:4;28621:20;28617:1;28606:9;28602:17;28595:47;28659:131;28785:4;28659:131;:::i;:::-;28651:139;;28378:419;;;:::o;28803:::-;28969:4;29007:2;28996:9;28992:18;28984:26;;29056:9;29050:4;29046:20;29042:1;29031:9;29027:17;29020:47;29084:131;29210:4;29084:131;:::i;:::-;29076:139;;28803:419;;;:::o;29228:::-;29394:4;29432:2;29421:9;29417:18;29409:26;;29481:9;29475:4;29471:20;29467:1;29456:9;29452:17;29445:47;29509:131;29635:4;29509:131;:::i;:::-;29501:139;;29228:419;;;:::o;29653:::-;29819:4;29857:2;29846:9;29842:18;29834:26;;29906:9;29900:4;29896:20;29892:1;29881:9;29877:17;29870:47;29934:131;30060:4;29934:131;:::i;:::-;29926:139;;29653:419;;;:::o;30078:::-;30244:4;30282:2;30271:9;30267:18;30259:26;;30331:9;30325:4;30321:20;30317:1;30306:9;30302:17;30295:47;30359:131;30485:4;30359:131;:::i;:::-;30351:139;;30078:419;;;:::o;30503:222::-;30596:4;30634:2;30623:9;30619:18;30611:26;;30647:71;30715:1;30704:9;30700:17;30691:6;30647:71;:::i;:::-;30503:222;;;;:::o;30731:129::-;30765:6;30792:20;;:::i;:::-;30782:30;;30821:33;30849:4;30841:6;30821:33;:::i;:::-;30731:129;;;:::o;30866:75::-;30899:6;30932:2;30926:9;30916:19;;30866:75;:::o;30947:307::-;31008:4;31098:18;31090:6;31087:30;31084:56;;;31120:18;;:::i;:::-;31084:56;31158:29;31180:6;31158:29;:::i;:::-;31150:37;;31242:4;31236;31232:15;31224:23;;30947:307;;;:::o;31260:308::-;31322:4;31412:18;31404:6;31401:30;31398:56;;;31434:18;;:::i;:::-;31398:56;31472:29;31494:6;31472:29;:::i;:::-;31464:37;;31556:4;31550;31546:15;31538:23;;31260:308;;;:::o;31574:132::-;31641:4;31664:3;31656:11;;31694:4;31689:3;31685:14;31677:22;;31574:132;;;:::o;31712:141::-;31761:4;31784:3;31776:11;;31807:3;31804:1;31797:14;31841:4;31838:1;31828:18;31820:26;;31712:141;;;:::o;31859:114::-;31926:6;31960:5;31954:12;31944:22;;31859:114;;;:::o;31979:98::-;32030:6;32064:5;32058:12;32048:22;;31979:98;;;:::o;32083:99::-;32135:6;32169:5;32163:12;32153:22;;32083:99;;;:::o;32188:113::-;32258:4;32290;32285:3;32281:14;32273:22;;32188:113;;;:::o;32307:184::-;32406:11;32440:6;32435:3;32428:19;32480:4;32475:3;32471:14;32456:29;;32307:184;;;;:::o;32497:168::-;32580:11;32614:6;32609:3;32602:19;32654:4;32649:3;32645:14;32630:29;;32497:168;;;;:::o;32671:147::-;32772:11;32809:3;32794:18;;32671:147;;;;:::o;32824:169::-;32908:11;32942:6;32937:3;32930:19;32982:4;32977:3;32973:14;32958:29;;32824:169;;;;:::o;32999:148::-;33101:11;33138:3;33123:18;;32999:148;;;;:::o;33153:305::-;33193:3;33212:20;33230:1;33212:20;:::i;:::-;33207:25;;33246:20;33264:1;33246:20;:::i;:::-;33241:25;;33400:1;33332:66;33328:74;33325:1;33322:81;33319:107;;;33406:18;;:::i;:::-;33319:107;33450:1;33447;33443:9;33436:16;;33153:305;;;;:::o;33464:185::-;33504:1;33521:20;33539:1;33521:20;:::i;:::-;33516:25;;33555:20;33573:1;33555:20;:::i;:::-;33550:25;;33594:1;33584:35;;33599:18;;:::i;:::-;33584:35;33641:1;33638;33634:9;33629:14;;33464:185;;;;:::o;33655:348::-;33695:7;33718:20;33736:1;33718:20;:::i;:::-;33713:25;;33752:20;33770:1;33752:20;:::i;:::-;33747:25;;33940:1;33872:66;33868:74;33865:1;33862:81;33857:1;33850:9;33843:17;33839:105;33836:131;;;33947:18;;:::i;:::-;33836:131;33995:1;33992;33988:9;33977:20;;33655:348;;;;:::o;34009:191::-;34049:4;34069:20;34087:1;34069:20;:::i;:::-;34064:25;;34103:20;34121:1;34103:20;:::i;:::-;34098:25;;34142:1;34139;34136:8;34133:34;;;34147:18;;:::i;:::-;34133:34;34192:1;34189;34185:9;34177:17;;34009:191;;;;:::o;34206:96::-;34243:7;34272:24;34290:5;34272:24;:::i;:::-;34261:35;;34206:96;;;:::o;34308:90::-;34342:7;34385:5;34378:13;34371:21;34360:32;;34308:90;;;:::o;34404:149::-;34440:7;34480:66;34473:5;34469:78;34458:89;;34404:149;;;:::o;34559:126::-;34596:7;34636:42;34629:5;34625:54;34614:65;;34559:126;;;:::o;34691:77::-;34728:7;34757:5;34746:16;;34691:77;;;:::o;34774:154::-;34858:6;34853:3;34848;34835:30;34920:1;34911:6;34906:3;34902:16;34895:27;34774:154;;;:::o;34934:307::-;35002:1;35012:113;35026:6;35023:1;35020:13;35012:113;;;35111:1;35106:3;35102:11;35096:18;35092:1;35087:3;35083:11;35076:39;35048:2;35045:1;35041:10;35036:15;;35012:113;;;35143:6;35140:1;35137:13;35134:101;;;35223:1;35214:6;35209:3;35205:16;35198:27;35134:101;34983:258;34934:307;;;:::o;35247:320::-;35291:6;35328:1;35322:4;35318:12;35308:22;;35375:1;35369:4;35365:12;35396:18;35386:81;;35452:4;35444:6;35440:17;35430:27;;35386:81;35514:2;35506:6;35503:14;35483:18;35480:38;35477:84;;;35533:18;;:::i;:::-;35477:84;35298:269;35247:320;;;:::o;35573:281::-;35656:27;35678:4;35656:27;:::i;:::-;35648:6;35644:40;35786:6;35774:10;35771:22;35750:18;35738:10;35735:34;35732:62;35729:88;;;35797:18;;:::i;:::-;35729:88;35837:10;35833:2;35826:22;35616:238;35573:281;;:::o;35860:233::-;35899:3;35922:24;35940:5;35922:24;:::i;:::-;35913:33;;35968:66;35961:5;35958:77;35955:103;;;36038:18;;:::i;:::-;35955:103;36085:1;36078:5;36074:13;36067:20;;35860:233;;;:::o;36099:176::-;36131:1;36148:20;36166:1;36148:20;:::i;:::-;36143:25;;36182:20;36200:1;36182:20;:::i;:::-;36177:25;;36221:1;36211:35;;36226:18;;:::i;:::-;36211:35;36267:1;36264;36260:9;36255:14;;36099:176;;;;:::o;36281:180::-;36329:77;36326:1;36319:88;36426:4;36423:1;36416:15;36450:4;36447:1;36440:15;36467:180;36515:77;36512:1;36505:88;36612:4;36609:1;36602:15;36636:4;36633:1;36626:15;36653:180;36701:77;36698:1;36691:88;36798:4;36795:1;36788:15;36822:4;36819:1;36812:15;36839:180;36887:77;36884:1;36877:88;36984:4;36981:1;36974:15;37008:4;37005:1;36998:15;37025:180;37073:77;37070:1;37063:88;37170:4;37167:1;37160:15;37194:4;37191:1;37184:15;37211:117;37320:1;37317;37310:12;37334:117;37443:1;37440;37433:12;37457:117;37566:1;37563;37556:12;37580:117;37689:1;37686;37679:12;37703:102;37744:6;37795:2;37791:7;37786:2;37779:5;37775:14;37771:28;37761:38;;37703:102;;;:::o;37811:237::-;37951:34;37947:1;37939:6;37935:14;37928:58;38020:20;38015:2;38007:6;38003:15;37996:45;37811:237;:::o;38054:225::-;38194:34;38190:1;38182:6;38178:14;38171:58;38263:8;38258:2;38250:6;38246:15;38239:33;38054:225;:::o;38285:178::-;38425:30;38421:1;38413:6;38409:14;38402:54;38285:178;:::o;38469:170::-;38609:22;38605:1;38597:6;38593:14;38586:46;38469:170;:::o;38645:223::-;38785:34;38781:1;38773:6;38769:14;38762:58;38854:6;38849:2;38841:6;38837:15;38830:31;38645:223;:::o;38874:175::-;39014:27;39010:1;39002:6;38998:14;38991:51;38874:175;:::o;39055:231::-;39195:34;39191:1;39183:6;39179:14;39172:58;39264:14;39259:2;39251:6;39247:15;39240:39;39055:231;:::o;39292:243::-;39432:34;39428:1;39420:6;39416:14;39409:58;39501:26;39496:2;39488:6;39484:15;39477:51;39292:243;:::o;39541:229::-;39681:34;39677:1;39669:6;39665:14;39658:58;39750:12;39745:2;39737:6;39733:15;39726:37;39541:229;:::o;39776:228::-;39916:34;39912:1;39904:6;39900:14;39893:58;39985:11;39980:2;39972:6;39968:15;39961:36;39776:228;:::o;40010:182::-;40150:34;40146:1;40138:6;40134:14;40127:58;40010:182;:::o;40198:231::-;40338:34;40334:1;40326:6;40322:14;40315:58;40407:14;40402:2;40394:6;40390:15;40383:39;40198:231;:::o;40435:182::-;40575:34;40571:1;40563:6;40559:14;40552:58;40435:182;:::o;40623:173::-;40763:25;40759:1;40751:6;40747:14;40740:49;40623:173;:::o;40802:228::-;40942:34;40938:1;40930:6;40926:14;40919:58;41011:11;41006:2;40998:6;40994:15;40987:36;40802:228;:::o;41036:234::-;41176:34;41172:1;41164:6;41160:14;41153:58;41245:17;41240:2;41232:6;41228:15;41221:42;41036:234;:::o;41276:220::-;41416:34;41412:1;41404:6;41400:14;41393:58;41485:3;41480:2;41472:6;41468:15;41461:28;41276:220;:::o;41502:114::-;;:::o;41622:170::-;41762:22;41758:1;41750:6;41746:14;41739:46;41622:170;:::o;41798:236::-;41938:34;41934:1;41926:6;41922:14;41915:58;42007:19;42002:2;41994:6;41990:15;41983:44;41798:236;:::o;42040:169::-;42180:21;42176:1;42168:6;42164:14;42157:45;42040:169;:::o;42215:122::-;42288:24;42306:5;42288:24;:::i;:::-;42281:5;42278:35;42268:63;;42327:1;42324;42317:12;42268:63;42215:122;:::o;42343:116::-;42413:21;42428:5;42413:21;:::i;:::-;42406:5;42403:32;42393:60;;42449:1;42446;42439:12;42393:60;42343:116;:::o;42465:120::-;42537:23;42554:5;42537:23;:::i;:::-;42530:5;42527:34;42517:62;;42575:1;42572;42565:12;42517:62;42465:120;:::o;42591:122::-;42664:24;42682:5;42664:24;:::i;:::-;42657:5;42654:35;42644:63;;42703:1;42700;42693:12;42644:63;42591:122;:::o

Swarm Source

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