ETH Price: $2,391.90 (-3.77%)
Gas: 3.76 Gwei

Token

ChildrenofUkiyo (CoU)
 

Overview

Max Total Supply

147 CoU

Holders

40

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 CoU
0x2316742b6e17509e07d1d732fcfe5ea55fa1a61a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ChildrenofUkiyo

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-18
*/

// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
// SPDX-License-Identifier: Unlicense

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;


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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 1;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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



// 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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

//newerc.sol
pragma solidity ^0.8.0;


contract ChildrenofUkiyo is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;
    string public baseURI;
    uint256 public cost = 0.003 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxFree = 2000;
    uint256 public maxperAddressFreeLimit = 2;
    uint256 public maxperAddressPublicMint = 5;
    bool public paused = true;

    mapping(address => uint256) public addressFreeMintedBalance;

    constructor() ERC721A("ChildrenofUkiyo", "CoU") {
        setBaseURI("https://cdn.ChildrenofUkiyo.com/metadata/");
    }

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

    function freemint() public nonReentrant{
        uint256 _mintAmount = 2;
		uint256 s = totalSupply();
        uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender];
        require(!paused, "Paused");
        require(addressFreeMintedCount + _mintAmount <= maxperAddressFreeLimit, "Max ChildrenofUkiyo per address exceeded");
		require(s + _mintAmount <= maxFree, "Cannot exceed ChildrenofUkiyo supply" );
		for (uint256 i = 0; i < _mintAmount; ++i) {
            addressFreeMintedBalance[msg.sender]++;
		}
        _safeMint(msg.sender, _mintAmount);
		delete s;
        delete addressFreeMintedCount;
	}


    function mint(uint256 _mintAmount) public payable nonReentrant {
        uint256 s = totalSupply();
        require(!paused, "Paused");
        require(_mintAmount > 0, "Cant mint 0 ChildrenofUkiyo");
        require(_mintAmount <= maxperAddressPublicMint, "Cant mint more ChildrenofUkiyo" );
        require(s + _mintAmount <= maxSupply, "Cant exceed ChildrenofUkiyo supply");
        require(msg.value >= cost * _mintAmount);
        _safeMint(msg.sender, _mintAmount);
        delete s;
    }

    function airdrop(uint256[] calldata quantity, address[] calldata recipient)
        external
        onlyOwner
    {
        require(
            quantity.length == recipient.length,
            "Provide quantities and recipients"
        );
        uint256 totalQuantity = 0;
        uint256 s = totalSupply();
        for (uint256 i = 0; i < quantity.length; ++i) {
            totalQuantity += quantity[i];
        }
        require(s + totalQuantity <= maxSupply, "Too many ChildrenofUkiyo");
        delete totalQuantity;
        for (uint256 i = 0; i < recipient.length; ++i) {
            _safeMint(recipient[i], quantity[i]);
        }
        delete s;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ""))
                : "";
    }

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

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

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

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

}

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":"","type":"address"}],"name":"addressFreeMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressFreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260016000819055660aa87bee538000600a55612710600b556107d0600c556002600d556005600e55600f805460ff191690911790553480156200004657600080fd5b50604080518082018252600f81526e4368696c6472656e6f66556b69796f60881b602080830191825283518085019094526003845262436f5560e81b9084015281519192916200009991600191620001cc565b508051620000af906002906020840190620001cc565b505050620000cc620000c6620000fe60201b60201c565b62000102565b6001600881905550620000f8604051806060016040528060298152602001620026d06029913962000154565b620002af565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001b35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001c8906009906020840190620001cc565b5050565b828054620001da9062000272565b90600052602060002090601f016020900481019282620001fe576000855562000249565b82601f106200021957805160ff191683800117855562000249565b8280016001018555821562000249579182015b82811115620002495782518255916020019190600101906200022c565b50620002579291506200025b565b5090565b5b808211156200025757600081556001016200025c565b600181811c908216806200028757607f821691505b60208210811415620002a957634e487b7160e01b600052602260045260246000fd5b50919050565b61241180620002bf6000396000f3fe6080604052600436106101f95760003560e01c80635c975abb1161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd14610569578063d5abeb0114610589578063e985e9c51461059f578063f2fde38b146105e8578063f9cb63ac1461060857600080fd5b806395d89b4114610501578063a0712d6814610516578063a22cb46514610529578063b88d4fde1461054957600080fd5b806370a08231116100dc57806370a0823114610481578063715018a6146104a15780637c6b172d146104b65780638da5cb5b146104e357600080fd5b80635c975abb146104125780636352211e1461042c5780636673c4c21461044c5780636c0360eb1461046c57600080fd5b80632f745c591161019057806344a0d68a1161015f57806344a0d68a14610386578063485a68a3146103a65780634f6ccce7146103bc57806355f804b3146103dc57806356569a1d146103fc57600080fd5b80632f745c591461032857806334c8fd75146103485780633ccfd60b1461035e57806342842e0e1461036657600080fd5b8063095ea7b3116101cc578063095ea7b3146102af57806313faede6146102cf57806318160ddd146102f357806323b872dd1461030857600080fd5b806301ffc9a7146101fe57806302329a291461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e6102193660046120a6565b61061d565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e36600461208b565b61068a565b005b34801561026157600080fd5b5061026a6106d0565b60405161022a91906121da565b34801561028357600080fd5b50610297610292366004612129565b610762565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca366004611ff5565b6107ed565b3480156102db57600080fd5b506102e5600a5481565b60405190815260200161022a565b3480156102ff57600080fd5b506000546102e5565b34801561031457600080fd5b50610253610323366004611f13565b610905565b34801561033457600080fd5b506102e5610343366004611ff5565b610910565b34801561035457600080fd5b506102e5600e5481565b610253610a6d565b34801561037257600080fd5b50610253610381366004611f13565b610aef565b34801561039257600080fd5b506102536103a1366004612129565b610b0a565b3480156103b257600080fd5b506102e5600c5481565b3480156103c857600080fd5b506102e56103d7366004612129565b610b39565b3480156103e857600080fd5b506102536103f73660046120e0565b610b9b565b34801561040857600080fd5b506102e5600d5481565b34801561041e57600080fd5b50600f5461021e9060ff1681565b34801561043857600080fd5b50610297610447366004612129565b610bdc565b34801561045857600080fd5b5061025361046736600461201f565b610bee565b34801561047857600080fd5b5061026a610d8c565b34801561048d57600080fd5b506102e561049c366004611ec5565b610e1a565b3480156104ad57600080fd5b50610253610eab565b3480156104c257600080fd5b506102e56104d1366004611ec5565b60106020526000908152604090205481565b3480156104ef57600080fd5b506007546001600160a01b0316610297565b34801561050d57600080fd5b5061026a610ee1565b610253610524366004612129565b610ef0565b34801561053557600080fd5b50610253610544366004611fcb565b6110bc565b34801561055557600080fd5b50610253610564366004611f4f565b611181565b34801561057557600080fd5b5061026a610584366004612129565b6111ba565b34801561059557600080fd5b506102e5600b5481565b3480156105ab57600080fd5b5061021e6105ba366004611ee0565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105f457600080fd5b50610253610603366004611ec5565b611279565b34801561061457600080fd5b50610253611311565b60006001600160e01b031982166380ac58cd60e01b148061064e57506001600160e01b03198216635b5e139f60e01b145b8061066957506001600160e01b0319821663780e9d6360e01b145b8061068457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146106bd5760405162461bcd60e51b81526004016106b4906121ed565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600180546106df90612303565b80601f016020809104026020016040519081016040528092919081815260200182805461070b90612303565b80156107585780601f1061072d57610100808354040283529160200191610758565b820191906000526020600020905b81548152906001019060200180831161073b57829003601f168201915b5050505050905090565b600061076f826000541190565b6107d15760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016106b4565b506000908152600560205260409020546001600160a01b031690565b60006107f882610bdc565b9050806001600160a01b0316836001600160a01b031614156108675760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106b4565b336001600160a01b0382161480610883575061088381336105ba565b6108f55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106b4565b6109008383836114dd565b505050565b610900838383611539565b600061091b83610e1a565b82106109745760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106b4565b600080549080805b83811015610a0d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109cf57805192505b876001600160a01b0316836001600160a01b03161415610a0457868414156109fd5750935061068492505050565b6001909301925b5060010161097c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106b4565b6007546001600160a01b03163314610a975760405162461bcd60e51b81526004016106b4906121ed565b604051600090339047908381818185875af1925050503d8060008114610ad9576040519150601f19603f3d011682016040523d82523d6000602084013e610ade565b606091505b5050905080610aec57600080fd5b50565b61090083838360405180602001604052806000815250611181565b6007546001600160a01b03163314610b345760405162461bcd60e51b81526004016106b4906121ed565b600a55565b600080548210610b975760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106b4565b5090565b6007546001600160a01b03163314610bc55760405162461bcd60e51b81526004016106b4906121ed565b8051610bd8906009906020840190611d47565b5050565b6000610be78261181e565b5192915050565b6007546001600160a01b03163314610c185760405162461bcd60e51b81526004016106b4906121ed565b828114610c715760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b60648201526084016106b4565b600080610c7d60005490565b905060005b85811015610cc057868682818110610c9c57610c9c612399565b9050602002013583610cae9190612275565b9250610cb98161233e565b9050610c82565b50600b54610cce8383612275565b1115610d1c5760405162461bcd60e51b815260206004820152601860248201527f546f6f206d616e79204368696c6472656e6f66556b69796f000000000000000060448201526064016106b4565b6000915060005b83811015610d8357610d73858583818110610d4057610d40612399565b9050602002016020810190610d559190611ec5565b888884818110610d6757610d67612399565b905060200201356118f5565b610d7c8161233e565b9050610d23565b50505050505050565b60098054610d9990612303565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc590612303565b8015610e125780601f10610de757610100808354040283529160200191610e12565b820191906000526020600020905b815481529060010190602001808311610df557829003601f168201915b505050505081565b60006001600160a01b038216610e865760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106b4565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610ed55760405162461bcd60e51b81526004016106b4906121ed565b610edf600061190f565b565b6060600280546106df90612303565b60026008541415610f435760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b4565b6002600855600054600f5460ff1615610f875760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064016106b4565b60008211610fd75760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e742030204368696c6472656e6f66556b69796f000000000060448201526064016106b4565b600e548211156110295760405162461bcd60e51b815260206004820152601e60248201527f43616e74206d696e74206d6f7265204368696c6472656e6f66556b69796f000060448201526064016106b4565b600b546110368383612275565b111561108f5760405162461bcd60e51b815260206004820152602260248201527f43616e7420657863656564204368696c6472656e6f66556b69796f20737570706044820152616c7960f01b60648201526084016106b4565b81600a5461109d91906122a1565b3410156110a957600080fd5b6110b333836118f5565b50506001600855565b6001600160a01b0382163314156111155760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106b4565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61118c848484611539565b61119884848484611961565b6111b45760405162461bcd60e51b81526004016106b490612222565b50505050565b60606111c7826000541190565b61121d5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b60648201526084016106b4565b6000611227611a6f565b905060008151116112475760405180602001604052806000815250611272565b8061125184611a7e565b60405160200161126292919061216e565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146112a35760405162461bcd60e51b81526004016106b4906121ed565b6001600160a01b0381166113085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b4565b610aec8161190f565b600260085414156113645760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b4565b60026008819055600080543382526010602052604090912054600f5460ff16156113b95760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064016106b4565b600d546113c68483612275565b11156114255760405162461bcd60e51b815260206004820152602860248201527f4d6178204368696c6472656e6f66556b69796f20706572206164647265737320604482015267195e18d95959195960c21b60648201526084016106b4565b600c546114328484612275565b111561148c5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420657863656564204368696c6472656e6f66556b69796f20737560448201526370706c7960e01b60648201526084016106b4565b60005b838110156114c8573360009081526010602052604081208054916114b28361233e565b9190505550806114c19061233e565b905061148f565b506114d333846118f5565b5050600160085550565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115448261181e565b80519091506000906001600160a01b0316336001600160a01b0316148061157b57503361157084610762565b6001600160a01b0316145b8061158d5750815161158d90336105ba565b9050806115f75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106b4565b846001600160a01b031682600001516001600160a01b03161461166b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106b4565b6001600160a01b0384166116cf5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106b4565b6116df60008484600001516114dd565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166117d457611787816000541190565b156117d4578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261183d826000541190565b61189c5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106b4565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118eb579392505050565b506000190161189e565b610bd8828260405180602001604052806000815250611b7c565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611a6357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119a590339089908890889060040161219d565b602060405180830381600087803b1580156119bf57600080fd5b505af19250505080156119ef575060408051601f3d908101601f191682019092526119ec918101906120c3565b60015b611a49573d808015611a1d576040519150601f19603f3d011682016040523d82523d6000602084013e611a22565b606091505b508051611a415760405162461bcd60e51b81526004016106b490612222565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a67565b5060015b949350505050565b6060600980546106df90612303565b606081611aa25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611acc5780611ab68161233e565b9150611ac59050600a8361228d565b9150611aa6565b60008167ffffffffffffffff811115611ae757611ae76123af565b6040519080825280601f01601f191660200182016040528015611b11576020820181803683370190505b5090505b8415611a6757611b266001836122c0565b9150611b33600a86612359565b611b3e906030612275565b60f81b818381518110611b5357611b53612399565b60200101906001600160f81b031916908160001a905350611b75600a8661228d565b9450611b15565b61090083838360016000546001600160a01b038516611be75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106b4565b83611c455760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016106b4565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611d3e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611d3257611d166000888488611961565b611d325760405162461bcd60e51b81526004016106b490612222565b60019182019101611cc3565b50600055611817565b828054611d5390612303565b90600052602060002090601f016020900481019282611d755760008555611dbb565b82601f10611d8e57805160ff1916838001178555611dbb565b82800160010185558215611dbb579182015b82811115611dbb578251825591602001919060010190611da0565b50610b979291505b80821115610b975760008155600101611dc3565b600067ffffffffffffffff80841115611df257611df26123af565b604051601f8501601f19908116603f01168101908282118183101715611e1a57611e1a6123af565b81604052809350858152868686011115611e3357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e6457600080fd5b919050565b60008083601f840112611e7b57600080fd5b50813567ffffffffffffffff811115611e9357600080fd5b6020830191508360208260051b8501011115611eae57600080fd5b9250929050565b80358015158114611e6457600080fd5b600060208284031215611ed757600080fd5b61127282611e4d565b60008060408385031215611ef357600080fd5b611efc83611e4d565b9150611f0a60208401611e4d565b90509250929050565b600080600060608486031215611f2857600080fd5b611f3184611e4d565b9250611f3f60208501611e4d565b9150604084013590509250925092565b60008060008060808587031215611f6557600080fd5b611f6e85611e4d565b9350611f7c60208601611e4d565b925060408501359150606085013567ffffffffffffffff811115611f9f57600080fd5b8501601f81018713611fb057600080fd5b611fbf87823560208401611dd7565b91505092959194509250565b60008060408385031215611fde57600080fd5b611fe783611e4d565b9150611f0a60208401611eb5565b6000806040838503121561200857600080fd5b61201183611e4d565b946020939093013593505050565b6000806000806040858703121561203557600080fd5b843567ffffffffffffffff8082111561204d57600080fd5b61205988838901611e69565b9096509450602087013591508082111561207257600080fd5b5061207f87828801611e69565b95989497509550505050565b60006020828403121561209d57600080fd5b61127282611eb5565b6000602082840312156120b857600080fd5b8135611272816123c5565b6000602082840312156120d557600080fd5b8151611272816123c5565b6000602082840312156120f257600080fd5b813567ffffffffffffffff81111561210957600080fd5b8201601f8101841361211a57600080fd5b611a6784823560208401611dd7565b60006020828403121561213b57600080fd5b5035919050565b6000815180845261215a8160208601602086016122d7565b601f01601f19169290920160200192915050565b600083516121808184602088016122d7565b8351908301906121948183602088016122d7565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121d090830184612142565b9695505050505050565b6020815260006112726020830184612142565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082198211156122885761228861236d565b500190565b60008261229c5761229c612383565b500490565b60008160001904831182151516156122bb576122bb61236d565b500290565b6000828210156122d2576122d261236d565b500390565b60005b838110156122f25781810151838201526020016122da565b838111156111b45750506000910152565b600181811c9082168061231757607f821691505b6020821081141561233857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123525761235261236d565b5060010190565b60008261236857612368612383565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610aec57600080fdfea2646970667358221220292d1ad0a67289ab674e135ebf752dcd168d8afe80e505cab1c8415f6800db4364736f6c6343000807003368747470733a2f2f63646e2e4368696c6472656e6f66556b69796f2e636f6d2f6d657461646174612f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80635c975abb1161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd14610569578063d5abeb0114610589578063e985e9c51461059f578063f2fde38b146105e8578063f9cb63ac1461060857600080fd5b806395d89b4114610501578063a0712d6814610516578063a22cb46514610529578063b88d4fde1461054957600080fd5b806370a08231116100dc57806370a0823114610481578063715018a6146104a15780637c6b172d146104b65780638da5cb5b146104e357600080fd5b80635c975abb146104125780636352211e1461042c5780636673c4c21461044c5780636c0360eb1461046c57600080fd5b80632f745c591161019057806344a0d68a1161015f57806344a0d68a14610386578063485a68a3146103a65780634f6ccce7146103bc57806355f804b3146103dc57806356569a1d146103fc57600080fd5b80632f745c591461032857806334c8fd75146103485780633ccfd60b1461035e57806342842e0e1461036657600080fd5b8063095ea7b3116101cc578063095ea7b3146102af57806313faede6146102cf57806318160ddd146102f357806323b872dd1461030857600080fd5b806301ffc9a7146101fe57806302329a291461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e6102193660046120a6565b61061d565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e36600461208b565b61068a565b005b34801561026157600080fd5b5061026a6106d0565b60405161022a91906121da565b34801561028357600080fd5b50610297610292366004612129565b610762565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca366004611ff5565b6107ed565b3480156102db57600080fd5b506102e5600a5481565b60405190815260200161022a565b3480156102ff57600080fd5b506000546102e5565b34801561031457600080fd5b50610253610323366004611f13565b610905565b34801561033457600080fd5b506102e5610343366004611ff5565b610910565b34801561035457600080fd5b506102e5600e5481565b610253610a6d565b34801561037257600080fd5b50610253610381366004611f13565b610aef565b34801561039257600080fd5b506102536103a1366004612129565b610b0a565b3480156103b257600080fd5b506102e5600c5481565b3480156103c857600080fd5b506102e56103d7366004612129565b610b39565b3480156103e857600080fd5b506102536103f73660046120e0565b610b9b565b34801561040857600080fd5b506102e5600d5481565b34801561041e57600080fd5b50600f5461021e9060ff1681565b34801561043857600080fd5b50610297610447366004612129565b610bdc565b34801561045857600080fd5b5061025361046736600461201f565b610bee565b34801561047857600080fd5b5061026a610d8c565b34801561048d57600080fd5b506102e561049c366004611ec5565b610e1a565b3480156104ad57600080fd5b50610253610eab565b3480156104c257600080fd5b506102e56104d1366004611ec5565b60106020526000908152604090205481565b3480156104ef57600080fd5b506007546001600160a01b0316610297565b34801561050d57600080fd5b5061026a610ee1565b610253610524366004612129565b610ef0565b34801561053557600080fd5b50610253610544366004611fcb565b6110bc565b34801561055557600080fd5b50610253610564366004611f4f565b611181565b34801561057557600080fd5b5061026a610584366004612129565b6111ba565b34801561059557600080fd5b506102e5600b5481565b3480156105ab57600080fd5b5061021e6105ba366004611ee0565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105f457600080fd5b50610253610603366004611ec5565b611279565b34801561061457600080fd5b50610253611311565b60006001600160e01b031982166380ac58cd60e01b148061064e57506001600160e01b03198216635b5e139f60e01b145b8061066957506001600160e01b0319821663780e9d6360e01b145b8061068457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146106bd5760405162461bcd60e51b81526004016106b4906121ed565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600180546106df90612303565b80601f016020809104026020016040519081016040528092919081815260200182805461070b90612303565b80156107585780601f1061072d57610100808354040283529160200191610758565b820191906000526020600020905b81548152906001019060200180831161073b57829003601f168201915b5050505050905090565b600061076f826000541190565b6107d15760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016106b4565b506000908152600560205260409020546001600160a01b031690565b60006107f882610bdc565b9050806001600160a01b0316836001600160a01b031614156108675760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106b4565b336001600160a01b0382161480610883575061088381336105ba565b6108f55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106b4565b6109008383836114dd565b505050565b610900838383611539565b600061091b83610e1a565b82106109745760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106b4565b600080549080805b83811015610a0d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109cf57805192505b876001600160a01b0316836001600160a01b03161415610a0457868414156109fd5750935061068492505050565b6001909301925b5060010161097c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106b4565b6007546001600160a01b03163314610a975760405162461bcd60e51b81526004016106b4906121ed565b604051600090339047908381818185875af1925050503d8060008114610ad9576040519150601f19603f3d011682016040523d82523d6000602084013e610ade565b606091505b5050905080610aec57600080fd5b50565b61090083838360405180602001604052806000815250611181565b6007546001600160a01b03163314610b345760405162461bcd60e51b81526004016106b4906121ed565b600a55565b600080548210610b975760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106b4565b5090565b6007546001600160a01b03163314610bc55760405162461bcd60e51b81526004016106b4906121ed565b8051610bd8906009906020840190611d47565b5050565b6000610be78261181e565b5192915050565b6007546001600160a01b03163314610c185760405162461bcd60e51b81526004016106b4906121ed565b828114610c715760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b60648201526084016106b4565b600080610c7d60005490565b905060005b85811015610cc057868682818110610c9c57610c9c612399565b9050602002013583610cae9190612275565b9250610cb98161233e565b9050610c82565b50600b54610cce8383612275565b1115610d1c5760405162461bcd60e51b815260206004820152601860248201527f546f6f206d616e79204368696c6472656e6f66556b69796f000000000000000060448201526064016106b4565b6000915060005b83811015610d8357610d73858583818110610d4057610d40612399565b9050602002016020810190610d559190611ec5565b888884818110610d6757610d67612399565b905060200201356118f5565b610d7c8161233e565b9050610d23565b50505050505050565b60098054610d9990612303565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc590612303565b8015610e125780601f10610de757610100808354040283529160200191610e12565b820191906000526020600020905b815481529060010190602001808311610df557829003601f168201915b505050505081565b60006001600160a01b038216610e865760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106b4565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610ed55760405162461bcd60e51b81526004016106b4906121ed565b610edf600061190f565b565b6060600280546106df90612303565b60026008541415610f435760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b4565b6002600855600054600f5460ff1615610f875760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064016106b4565b60008211610fd75760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e742030204368696c6472656e6f66556b69796f000000000060448201526064016106b4565b600e548211156110295760405162461bcd60e51b815260206004820152601e60248201527f43616e74206d696e74206d6f7265204368696c6472656e6f66556b69796f000060448201526064016106b4565b600b546110368383612275565b111561108f5760405162461bcd60e51b815260206004820152602260248201527f43616e7420657863656564204368696c6472656e6f66556b69796f20737570706044820152616c7960f01b60648201526084016106b4565b81600a5461109d91906122a1565b3410156110a957600080fd5b6110b333836118f5565b50506001600855565b6001600160a01b0382163314156111155760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106b4565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61118c848484611539565b61119884848484611961565b6111b45760405162461bcd60e51b81526004016106b490612222565b50505050565b60606111c7826000541190565b61121d5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b60648201526084016106b4565b6000611227611a6f565b905060008151116112475760405180602001604052806000815250611272565b8061125184611a7e565b60405160200161126292919061216e565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146112a35760405162461bcd60e51b81526004016106b4906121ed565b6001600160a01b0381166113085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b4565b610aec8161190f565b600260085414156113645760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b4565b60026008819055600080543382526010602052604090912054600f5460ff16156113b95760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064016106b4565b600d546113c68483612275565b11156114255760405162461bcd60e51b815260206004820152602860248201527f4d6178204368696c6472656e6f66556b69796f20706572206164647265737320604482015267195e18d95959195960c21b60648201526084016106b4565b600c546114328484612275565b111561148c5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420657863656564204368696c6472656e6f66556b69796f20737560448201526370706c7960e01b60648201526084016106b4565b60005b838110156114c8573360009081526010602052604081208054916114b28361233e565b9190505550806114c19061233e565b905061148f565b506114d333846118f5565b5050600160085550565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115448261181e565b80519091506000906001600160a01b0316336001600160a01b0316148061157b57503361157084610762565b6001600160a01b0316145b8061158d5750815161158d90336105ba565b9050806115f75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106b4565b846001600160a01b031682600001516001600160a01b03161461166b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106b4565b6001600160a01b0384166116cf5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106b4565b6116df60008484600001516114dd565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166117d457611787816000541190565b156117d4578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261183d826000541190565b61189c5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106b4565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118eb579392505050565b506000190161189e565b610bd8828260405180602001604052806000815250611b7c565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611a6357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119a590339089908890889060040161219d565b602060405180830381600087803b1580156119bf57600080fd5b505af19250505080156119ef575060408051601f3d908101601f191682019092526119ec918101906120c3565b60015b611a49573d808015611a1d576040519150601f19603f3d011682016040523d82523d6000602084013e611a22565b606091505b508051611a415760405162461bcd60e51b81526004016106b490612222565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a67565b5060015b949350505050565b6060600980546106df90612303565b606081611aa25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611acc5780611ab68161233e565b9150611ac59050600a8361228d565b9150611aa6565b60008167ffffffffffffffff811115611ae757611ae76123af565b6040519080825280601f01601f191660200182016040528015611b11576020820181803683370190505b5090505b8415611a6757611b266001836122c0565b9150611b33600a86612359565b611b3e906030612275565b60f81b818381518110611b5357611b53612399565b60200101906001600160f81b031916908160001a905350611b75600a8661228d565b9450611b15565b61090083838360016000546001600160a01b038516611be75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106b4565b83611c455760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016106b4565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611d3e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611d3257611d166000888488611961565b611d325760405162461bcd60e51b81526004016106b490612222565b60019182019101611cc3565b50600055611817565b828054611d5390612303565b90600052602060002090601f016020900481019282611d755760008555611dbb565b82601f10611d8e57805160ff1916838001178555611dbb565b82800160010185558215611dbb579182015b82811115611dbb578251825591602001919060010190611da0565b50610b979291505b80821115610b975760008155600101611dc3565b600067ffffffffffffffff80841115611df257611df26123af565b604051601f8501601f19908116603f01168101908282118183101715611e1a57611e1a6123af565b81604052809350858152868686011115611e3357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e6457600080fd5b919050565b60008083601f840112611e7b57600080fd5b50813567ffffffffffffffff811115611e9357600080fd5b6020830191508360208260051b8501011115611eae57600080fd5b9250929050565b80358015158114611e6457600080fd5b600060208284031215611ed757600080fd5b61127282611e4d565b60008060408385031215611ef357600080fd5b611efc83611e4d565b9150611f0a60208401611e4d565b90509250929050565b600080600060608486031215611f2857600080fd5b611f3184611e4d565b9250611f3f60208501611e4d565b9150604084013590509250925092565b60008060008060808587031215611f6557600080fd5b611f6e85611e4d565b9350611f7c60208601611e4d565b925060408501359150606085013567ffffffffffffffff811115611f9f57600080fd5b8501601f81018713611fb057600080fd5b611fbf87823560208401611dd7565b91505092959194509250565b60008060408385031215611fde57600080fd5b611fe783611e4d565b9150611f0a60208401611eb5565b6000806040838503121561200857600080fd5b61201183611e4d565b946020939093013593505050565b6000806000806040858703121561203557600080fd5b843567ffffffffffffffff8082111561204d57600080fd5b61205988838901611e69565b9096509450602087013591508082111561207257600080fd5b5061207f87828801611e69565b95989497509550505050565b60006020828403121561209d57600080fd5b61127282611eb5565b6000602082840312156120b857600080fd5b8135611272816123c5565b6000602082840312156120d557600080fd5b8151611272816123c5565b6000602082840312156120f257600080fd5b813567ffffffffffffffff81111561210957600080fd5b8201601f8101841361211a57600080fd5b611a6784823560208401611dd7565b60006020828403121561213b57600080fd5b5035919050565b6000815180845261215a8160208601602086016122d7565b601f01601f19169290920160200192915050565b600083516121808184602088016122d7565b8351908301906121948183602088016122d7565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121d090830184612142565b9695505050505050565b6020815260006112726020830184612142565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082198211156122885761228861236d565b500190565b60008261229c5761229c612383565b500490565b60008160001904831182151516156122bb576122bb61236d565b500290565b6000828210156122d2576122d261236d565b500390565b60005b838110156122f25781810151838201526020016122da565b838111156111b45750506000910152565b600181811c9082168061231757607f821691505b6020821081141561233857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123525761235261236d565b5060010190565b60008261236857612368612383565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610aec57600080fdfea2646970667358221220292d1ad0a67289ab674e135ebf752dcd168d8afe80e505cab1c8415f6800db4364736f6c63430008070033

Deployed Bytecode Sourcemap

42988:3480:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24861:372;;;;;;;;;;-1:-1:-1;24861:372:0;;;;;:::i;:::-;;:::i;:::-;;;7364:14:1;;7357:22;7339:41;;7327:2;7312:18;24861:372:0;;;;;;;;46070:81;;;;;;;;;;-1:-1:-1;46070:81:0;;;;;:::i;:::-;;:::i;:::-;;26747:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28309:214::-;;;;;;;;;;-1:-1:-1;28309:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6662:32:1;;;6644:51;;6632:2;6617:18;28309:214:0;6498:203:1;27830:413:0;;;;;;;;;;-1:-1:-1;27830:413:0;;;;;:::i;:::-;;:::i;43117:33::-;;;;;;;;;;;;;;;;;;;18834:25:1;;;18822:2;18807:18;43117:33:0;18688:177:1;23118:100:0;;;;;;;;;;-1:-1:-1;23171:7:0;23198:12;23118:100;;29185:162;;;;;;;;;;-1:-1:-1;29185:162:0;;;;;:::i;:::-;;:::i;23782:1007::-;;;;;;;;;;-1:-1:-1;23782:1007:0;;;;;:::i;:::-;;:::i;43280:42::-;;;;;;;;;;;;;;;;46271:192;;;:::i;29418:177::-;;;;;;;;;;-1:-1:-1;29418:177:0;;;;;:::i;:::-;;:::i;45976:86::-;;;;;;;;;;-1:-1:-1;45976:86:0;;;;;:::i;:::-;;:::i;43196:29::-;;;;;;;;;;;;;;;;23295:187;;;;;;;;;;-1:-1:-1;23295:187:0;;;;;:::i;:::-;;:::i;46159:104::-;;;;;;;;;;-1:-1:-1;46159:104:0;;;;;:::i;:::-;;:::i;43232:41::-;;;;;;;;;;;;;;;;43329:25;;;;;;;;;;-1:-1:-1;43329:25:0;;;;;;;;26556:124;;;;;;;;;;-1:-1:-1;26556:124:0;;;;;:::i;:::-;;:::i;44834:686::-;;;;;;;;;;-1:-1:-1;44834:686:0;;;;;:::i;:::-;;:::i;43089:21::-;;;;;;;;;;;;;:::i;25297:221::-;;;;;;;;;;-1:-1:-1;25297:221:0;;;;;:::i;:::-;;:::i;39656:94::-;;;;;;;;;;;;;:::i;43363:59::-;;;;;;;;;;-1:-1:-1;43363:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;39005:87;;;;;;;;;;-1:-1:-1;39078:6:0;;-1:-1:-1;;;;;39078:6:0;39005:87;;26916:104;;;;;;;;;;;;;:::i;44322:504::-;;;;;;:::i;:::-;;:::i;28595:288::-;;;;;;;;;;-1:-1:-1;28595:288:0;;;;;:::i;:::-;;:::i;29666:355::-;;;;;;;;;;-1:-1:-1;29666:355:0;;;;;:::i;:::-;;:::i;45528:440::-;;;;;;;;;;-1:-1:-1;45528:440:0;;;;;:::i;:::-;;:::i;43157:32::-;;;;;;;;;;;;;;;;28954:164;;;;;;;;;;-1:-1:-1;28954:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29075:25:0;;;29051:4;29075:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28954:164;39905:229;;;;;;;;;;-1:-1:-1;39905:229:0;;;;;:::i;:::-;;:::i;43677:635::-;;;;;;;;;;;;;:::i;24861:372::-;24963:4;-1:-1:-1;;;;;;25000:40:0;;-1:-1:-1;;;25000:40:0;;:105;;-1:-1:-1;;;;;;;25057:48:0;;-1:-1:-1;;;25057:48:0;25000:105;:172;;;-1:-1:-1;;;;;;;25122:50:0;;-1:-1:-1;;;25122:50:0;25000:172;:225;;;-1:-1:-1;;;;;;;;;;14500:40:0;;;25189:36;24980:245;24861:372;-1:-1:-1;;24861:372:0:o;46070:81::-;39078:6;;-1:-1:-1;;;;;39078:6:0;2918:10;39225:23;39217:68;;;;-1:-1:-1;;;39217:68:0;;;;;;;:::i;:::-;;;;;;;;;46128:6:::1;:15:::0;;-1:-1:-1;;46128:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46070:81::o;26747:100::-;26801:13;26834:5;26827:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26747:100;:::o;28309:214::-;28377:7;28405:16;28413:7;30333:4;30367:12;-1:-1:-1;30357:22:0;30276:111;28405:16;28397:74;;;;-1:-1:-1;;;28397:74:0;;18476:2:1;28397:74:0;;;18458:21:1;18515:2;18495:18;;;18488:30;18554:34;18534:18;;;18527:62;-1:-1:-1;;;18605:18:1;;;18598:43;18658:19;;28397:74:0;18274:409:1;28397:74:0;-1:-1:-1;28491:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28491:24:0;;28309:214::o;27830:413::-;27903:13;27919:24;27935:7;27919:15;:24::i;:::-;27903:40;;27968:5;-1:-1:-1;;;;;27962:11:0;:2;-1:-1:-1;;;;;27962:11:0;;;27954:58;;;;-1:-1:-1;;;27954:58:0;;14889:2:1;27954:58:0;;;14871:21:1;14928:2;14908:18;;;14901:30;14967:34;14947:18;;;14940:62;-1:-1:-1;;;15018:18:1;;;15011:32;15060:19;;27954:58:0;14687:398:1;27954:58:0;2918:10;-1:-1:-1;;;;;28047:21:0;;;;:62;;-1:-1:-1;28072:37:0;28089:5;2918:10;28954:164;:::i;28072:37::-;28025:169;;;;-1:-1:-1;;;28025:169:0;;12509:2:1;28025:169:0;;;12491:21:1;12548:2;12528:18;;;12521:30;12587:34;12567:18;;;12560:62;12658:27;12638:18;;;12631:55;12703:19;;28025:169:0;12307:421:1;28025:169:0;28207:28;28216:2;28220:7;28229:5;28207:8;:28::i;:::-;27892:351;27830:413;;:::o;29185:162::-;29311:28;29321:4;29327:2;29331:7;29311:9;:28::i;23782:1007::-;23871:7;23907:16;23917:5;23907:9;:16::i;:::-;23899:5;:24;23891:71;;;;-1:-1:-1;;;23891:71:0;;7817:2:1;23891:71:0;;;7799:21:1;7856:2;7836:18;;;7829:30;7895:34;7875:18;;;7868:62;-1:-1:-1;;;7946:18:1;;;7939:32;7988:19;;23891:71:0;7615:398:1;23891:71:0;23973:22;23198:12;;;23973:22;;24236:466;24256:14;24252:1;:18;24236:466;;;24296:31;24330:14;;;:11;:14;;;;;;;;;24296:48;;;;;;;;;-1:-1:-1;;;;;24296:48:0;;;;;-1:-1:-1;;;24296:48:0;;;;;;;;;;;;24367:28;24363:111;;24440:14;;;-1:-1:-1;24363:111:0;24517:5;-1:-1:-1;;;;;24496:26:0;:17;-1:-1:-1;;;;;24496:26:0;;24492:195;;;24566:5;24551:11;:20;24547:85;;;-1:-1:-1;24607:1:0;-1:-1:-1;24600:8:0;;-1:-1:-1;;;24600:8:0;24547:85;24654:13;;;;;24492:195;-1:-1:-1;24272:3:0;;24236:466;;;-1:-1:-1;24725:56:0;;-1:-1:-1;;;24725:56:0;;17285:2:1;24725:56:0;;;17267:21:1;17324:2;17304:18;;;17297:30;17363:34;17343:18;;;17336:62;-1:-1:-1;;;17414:18:1;;;17407:44;17468:19;;24725:56:0;17083:410:1;46271:192:0;39078:6;;-1:-1:-1;;;;;39078:6:0;2918:10;39225:23;39217:68;;;;-1:-1:-1;;;39217:68:0;;;;;;;:::i;:::-;46346:82:::1;::::0;46328:12:::1;::::0;46354:10:::1;::::0;46392:21:::1;::::0;46328:12;46346:82;46328:12;46346:82;46392:21;46354:10;46346:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46327:101;;;46447:7;46439:16;;;::::0;::::1;;46316:147;46271:192::o:0;29418:177::-;29548:39;29565:4;29571:2;29575:7;29548:39;;;;;;;;;;;;:16;:39::i;45976:86::-;39078:6;;-1:-1:-1;;;;;39078:6:0;2918:10;39225:23;39217:68;;;;-1:-1:-1;;;39217:68:0;;;;;;;:::i;:::-;46039:4:::1;:15:::0;45976:86::o;23295:187::-;23362:7;23198:12;;23390:5;:21;23382:69;;;;-1:-1:-1;;;23382:69:0;;11297:2:1;23382:69:0;;;11279:21:1;11336:2;11316:18;;;11309:30;11375:34;11355:18;;;11348:62;-1:-1:-1;;;11426:18:1;;;11419:33;11469:19;;23382:69:0;11095:399:1;23382:69:0;-1:-1:-1;23469:5:0;23295:187::o;46159:104::-;39078:6;;-1:-1:-1;;;;;39078:6:0;2918:10;39225:23;39217:68;;;;-1:-1:-1;;;39217:68:0;;;;;;;:::i;:::-;46234:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46159:104:::0;:::o;26556:124::-;26620:7;26647:20;26659:7;26647:11;:20::i;:::-;:25;;26556:124;-1:-1:-1;;26556:124:0:o;44834:686::-;39078:6;;-1:-1:-1;;;;;39078:6:0;2918:10;39225:23;39217:68;;;;-1:-1:-1;;;39217:68:0;;;;;;;:::i;:::-;44985:35;;::::1;44963:118;;;::::0;-1:-1:-1;;;44963:118:0;;12107:2:1;44963:118:0::1;::::0;::::1;12089:21:1::0;12146:2;12126:18;;;12119:30;12185:34;12165:18;;;12158:62;-1:-1:-1;;;12236:18:1;;;12229:31;12277:19;;44963:118:0::1;11905:397:1::0;44963:118:0::1;45092:21;45128:9:::0;45140:13:::1;23171:7:::0;23198:12;;23118:100;45140:13:::1;45128:25;;45169:9;45164:101;45184:19:::0;;::::1;45164:101;;;45242:8;;45251:1;45242:11;;;;;;;:::i;:::-;;;;;;;45225:28;;;;;:::i;:::-;::::0;-1:-1:-1;45205:3:0::1;::::0;::::1;:::i;:::-;;;45164:101;;;-1:-1:-1::0;45304:9:0::1;::::0;45283:17:::1;45287:13:::0;45283:1;:17:::1;:::i;:::-;:30;;45275:67;;;::::0;-1:-1:-1;;;45275:67:0;;15712:2:1;45275:67:0::1;::::0;::::1;15694:21:1::0;15751:2;15731:18;;;15724:30;15790:26;15770:18;;;15763:54;15834:18;;45275:67:0::1;15510:348:1::0;45275:67:0::1;45353:20;;;45389:9;45384:110;45404:20:::0;;::::1;45384:110;;;45446:36;45456:9;;45466:1;45456:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;45470:8;;45479:1;45470:11;;;;;;;:::i;:::-;;;;;;;45446:9;:36::i;:::-;45426:3;::::0;::::1;:::i;:::-;;;45384:110;;;-1:-1:-1::0;;;;;;;44834:686:0:o;43089:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25297:221::-;25361:7;-1:-1:-1;;;;;25389:19:0;;25381:75;;;;-1:-1:-1;;;25381:75:0;;12935:2:1;25381:75:0;;;12917:21:1;12974:2;12954:18;;;12947:30;13013:34;12993:18;;;12986:62;-1:-1:-1;;;13064:18:1;;;13057:41;13115:19;;25381:75:0;12733:407:1;25381:75:0;-1:-1:-1;;;;;;25482:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25482:27:0;;25297:221::o;39656:94::-;39078:6;;-1:-1:-1;;;;;39078:6:0;2918:10;39225:23;39217:68;;;;-1:-1:-1;;;39217:68:0;;;;;;;:::i;:::-;39721:21:::1;39739:1;39721:9;:21::i;:::-;39656:94::o:0;26916:104::-;26972:13;27005:7;26998:14;;;;;:::i;44322:504::-;42000:1;42596:7;;:19;;42588:63;;;;-1:-1:-1;;;42588:63:0;;17700:2:1;42588:63:0;;;17682:21:1;17739:2;17719:18;;;17712:30;17778:33;17758:18;;;17751:61;17829:18;;42588:63:0;17498:355:1;42588:63:0;42000:1;42729:7;:18;44396:9:::1;23198:12:::0;44441:6:::1;::::0;::::1;;44440:7;44432:26;;;::::0;-1:-1:-1;;;44432:26:0;;8220:2:1;44432:26:0::1;::::0;::::1;8202:21:1::0;8259:1;8239:18;;;8232:29;-1:-1:-1;;;8277:18:1;;;8270:36;8323:18;;44432:26:0::1;8018:329:1::0;44432:26:0::1;44491:1;44477:11;:15;44469:55;;;::::0;-1:-1:-1;;;44469:55:0;;10941:2:1;44469:55:0::1;::::0;::::1;10923:21:1::0;10980:2;10960:18;;;10953:30;11019:29;10999:18;;;10992:57;11066:18;;44469:55:0::1;10739:351:1::0;44469:55:0::1;44558:23;;44543:11;:38;;44535:82;;;::::0;-1:-1:-1;;;44535:82:0;;10179:2:1;44535:82:0::1;::::0;::::1;10161:21:1::0;10218:2;10198:18;;;10191:30;10257:32;10237:18;;;10230:60;10307:18;;44535:82:0::1;9977:354:1::0;44535:82:0::1;44655:9;::::0;44636:15:::1;44640:11:::0;44636:1;:15:::1;:::i;:::-;:28;;44628:75;;;::::0;-1:-1:-1;;;44628:75:0;;10538:2:1;44628:75:0::1;::::0;::::1;10520:21:1::0;10577:2;10557:18;;;10550:30;10616:34;10596:18;;;10589:62;-1:-1:-1;;;10667:18:1;;;10660:32;10709:19;;44628:75:0::1;10336:398:1::0;44628:75:0::1;44742:11;44735:4;;:18;;;;:::i;:::-;44722:9;:31;;44714:40;;;::::0;::::1;;44765:34;44775:10;44787:11;44765:9;:34::i;:::-;-1:-1:-1::0;;41956:1:0;42908:7;:22;44322:504::o;28595:288::-;-1:-1:-1;;;;;28690:24:0;;2918:10;28690:24;;28682:63;;;;-1:-1:-1;;;28682:63:0;;14115:2:1;28682:63:0;;;14097:21:1;14154:2;14134:18;;;14127:30;14193:28;14173:18;;;14166:56;14239:18;;28682:63:0;13913:350:1;28682:63:0;2918:10;28758:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28758:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28758:53:0;;;;;;;;;;28827:48;;7339:41:1;;;28758:42:0;;2918:10;28827:48;;7312:18:1;28827:48:0;;;;;;;28595:288;;:::o;29666:355::-;29825:28;29835:4;29841:2;29845:7;29825:9;:28::i;:::-;29886:48;29909:4;29915:2;29919:7;29928:5;29886:22;:48::i;:::-;29864:149;;;;-1:-1:-1;;;29864:149:0;;;;;;;:::i;:::-;29666:355;;;;:::o;45528:440::-;45646:13;45685:16;45693:7;30333:4;30367:12;-1:-1:-1;30357:22:0;30276:111;45685:16;45677:62;;;;-1:-1:-1;;;45677:62:0;;8554:2:1;45677:62:0;;;8536:21:1;8593:2;8573:18;;;8566:30;8632:34;8612:18;;;8605:62;-1:-1:-1;;;8683:18:1;;;8676:31;8724:19;;45677:62:0;8352:397:1;45677:62:0;45750:28;45781:10;:8;:10::i;:::-;45750:41;;45853:1;45828:14;45822:28;:32;:138;;;;;;;;;;;;;;;;;45898:14;45914:18;:7;:16;:18::i;:::-;45881:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45822:138;45802:158;45528:440;-1:-1:-1;;;45528:440:0:o;39905:229::-;39078:6;;-1:-1:-1;;;;;39078:6:0;2918:10;39225:23;39217:68;;;;-1:-1:-1;;;39217:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40008:22:0;::::1;39986:110;;;::::0;-1:-1:-1;;;39986:110:0;;9361:2:1;39986:110:0::1;::::0;::::1;9343:21:1::0;9400:2;9380:18;;;9373:30;9439:34;9419:18;;;9412:62;-1:-1:-1;;;9490:18:1;;;9483:36;9536:19;;39986:110:0::1;9159:402:1::0;39986:110:0::1;40107:19;40117:8;40107:9;:19::i;43677:635::-:0;42000:1;42596:7;;:19;;42588:63;;;;-1:-1:-1;;;42588:63:0;;17700:2:1;42588:63:0;;;17682:21:1;17739:2;17719:18;;;17712:30;17778:33;17758:18;;;17751:61;17829:18;;42588:63:0;17498:355:1;42588:63:0;42000:1;42729:7;:18;;;43727:19:::1;23198:12:::0;;43849:10:::1;43824:36:::0;;:24:::1;:36;::::0;;;;;;43880:6:::1;::::0;::::1;;43879:7;43871:26;;;::::0;-1:-1:-1;;;43871:26:0;;8220:2:1;43871:26:0::1;::::0;::::1;8202:21:1::0;8259:1;8239:18;;;8232:29;-1:-1:-1;;;8277:18:1;;;8270:36;8323:18;;43871:26:0::1;8018:329:1::0;43871:26:0::1;43956:22;::::0;43916:36:::1;43941:11:::0;43916:22;:36:::1;:::i;:::-;:62;;43908:115;;;::::0;-1:-1:-1;;;43908:115:0;;16876:2:1;43908:115:0::1;::::0;::::1;16858:21:1::0;16915:2;16895:18;;;16888:30;16954:34;16934:18;;;16927:62;-1:-1:-1;;;17005:18:1;;;16998:38;17053:19;;43908:115:0::1;16674:404:1::0;43908:115:0::1;44055:7;::::0;44036:15:::1;44040:11:::0;44036:1;:15:::1;:::i;:::-;:26;;44028:76;;;::::0;-1:-1:-1;;;44028:76:0;;8956:2:1;44028:76:0::1;::::0;::::1;8938:21:1::0;8995:2;8975:18;;;8968:30;9034:34;9014:18;;;9007:62;-1:-1:-1;;;9085:18:1;;;9078:34;9129:19;;44028:76:0::1;8754:400:1::0;44028:76:0::1;44114:9;44109:101;44133:11;44129:1;:15;44109:101;;;44191:10;44166:36;::::0;;;:24:::1;:36;::::0;;;;:38;;;::::1;::::0;::::1;:::i;:::-;;;;;;44146:3;;;;:::i;:::-;;;44109:101;;;;44220:34;44230:10;44242:11;44220:9;:34::i;:::-;-1:-1:-1::0;;41956:1:0;42908:7;:22;-1:-1:-1;43677:635:0:o;35196:196::-;35311:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35311:29:0;-1:-1:-1;;;;;35311:29:0;;;;;;;;;35356:28;;35311:24;;35356:28;;;;;;;35196:196;;;:::o;33076:2002::-;33191:35;33229:20;33241:7;33229:11;:20::i;:::-;33304:18;;33191:58;;-1:-1:-1;33262:22:0;;-1:-1:-1;;;;;33288:34:0;2918:10;-1:-1:-1;;;;;33288:34:0;;:87;;;-1:-1:-1;2918:10:0;33339:20;33351:7;33339:11;:20::i;:::-;-1:-1:-1;;;;;33339:36:0;;33288:87;:154;;;-1:-1:-1;33409:18:0;;33392:50;;2918:10;28954:164;:::i;33392:50::-;33262:181;;33464:17;33456:80;;;;-1:-1:-1;;;33456:80:0;;14470:2:1;33456:80:0;;;14452:21:1;14509:2;14489:18;;;14482:30;14548:34;14528:18;;;14521:62;-1:-1:-1;;;14599:18:1;;;14592:48;14657:19;;33456:80:0;14268:414:1;33456:80:0;33579:4;-1:-1:-1;;;;;33557:26:0;:13;:18;;;-1:-1:-1;;;;;33557:26:0;;33549:77;;;;-1:-1:-1;;;33549:77:0;;13347:2:1;33549:77:0;;;13329:21:1;13386:2;13366:18;;;13359:30;13425:34;13405:18;;;13398:62;-1:-1:-1;;;13476:18:1;;;13469:36;13522:19;;33549:77:0;13145:402:1;33549:77:0;-1:-1:-1;;;;;33645:16:0;;33637:66;;;;-1:-1:-1;;;33637:66:0;;11701:2:1;33637:66:0;;;11683:21:1;11740:2;11720:18;;;11713:30;11779:34;11759:18;;;11752:62;-1:-1:-1;;;11830:18:1;;;11823:35;11875:19;;33637:66:0;11499:401:1;33637:66:0;33824:49;33841:1;33845:7;33854:13;:18;;;33824:8;:49::i;:::-;-1:-1:-1;;;;;34169:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;34169:31:0;;;-1:-1:-1;;;;;34169:31:0;;;-1:-1:-1;;34169:31:0;;;;;;;34215:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34215:29:0;;;;;;;;;;;;;34261:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;34306:61:0;;;;-1:-1:-1;;;34351:15:0;34306:61;;;;;;34641:11;;;34671:24;;;;;:29;34641:11;;34671:29;34667:295;;34739:20;34747:11;30333:4;30367:12;-1:-1:-1;30357:22:0;30276:111;34739:20;34735:212;;;34816:18;;;34784:24;;;:11;:24;;;;;;;;:50;;34899:28;;;;34857:70;;-1:-1:-1;;;34857:70:0;-1:-1:-1;;;;;;34857:70:0;;;-1:-1:-1;;;;;34784:50:0;;;34857:70;;;;;;;34735:212;34144:829;35009:7;35005:2;-1:-1:-1;;;;;34990:27:0;34999:4;-1:-1:-1;;;;;34990:27:0;;;;;;;;;;;35028:42;33180:1898;;33076:2002;;;:::o;25957:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;26060:16:0;26068:7;30333:4;30367:12;-1:-1:-1;30357:22:0;30276:111;26060:16;26052:71;;;;-1:-1:-1;;;26052:71:0;;9768:2:1;26052:71:0;;;9750:21:1;9807:2;9787:18;;;9780:30;9846:34;9826:18;;;9819:62;-1:-1:-1;;;9897:18:1;;;9890:40;9947:19;;26052:71:0;9566:406:1;26052:71:0;26181:7;26161:245;26228:31;26262:17;;;:11;:17;;;;;;;;;26228:51;;;;;;;;;-1:-1:-1;;;;;26228:51:0;;;;;-1:-1:-1;;;26228:51:0;;;;;;;;;;;;26302:28;26298:93;;26362:9;25957:537;-1:-1:-1;;;25957:537:0:o;26298:93::-;-1:-1:-1;;;26201:6:0;26161:245;;30395:104;30464:27;30474:2;30478:8;30464:27;;;;;;;;;;;;:9;:27::i;40142:173::-;40217:6;;;-1:-1:-1;;;;;40234:17:0;;;-1:-1:-1;;;;;;40234:17:0;;;;;;;40267:40;;40217:6;;;40234:17;40217:6;;40267:40;;40198:16;;40267:40;40187:128;40142:173;:::o;35957:804::-;36112:4;-1:-1:-1;;;;;36133:13:0;;4580:19;:23;36129:625;;36169:72;;-1:-1:-1;;;36169:72:0;;-1:-1:-1;;;;;36169:36:0;;;;;:72;;2918:10;;36220:4;;36226:7;;36235:5;;36169:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36169:72:0;;;;;;;;-1:-1:-1;;36169:72:0;;;;;;;;;;;;:::i;:::-;;;36165:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36415:13:0;;36411:273;;36458:61;;-1:-1:-1;;;36458:61:0;;;;;;;:::i;36411:273::-;36634:6;36628:13;36619:6;36615:2;36611:15;36604:38;36165:534;-1:-1:-1;;;;;;36292:55:0;-1:-1:-1;;;36292:55:0;;-1:-1:-1;36285:62:0;;36129:625;-1:-1:-1;36738:4:0;36129:625;35957:804;;;;;;:::o;43561:108::-;43621:13;43654:7;43647:14;;;;;:::i;400:723::-;456:13;677:10;673:53;;-1:-1:-1;;704:10:0;;;;;;;;;;;;-1:-1:-1;;;704:10:0;;;;;400:723::o;673:53::-;751:5;736:12;792:78;799:9;;792:78;;825:8;;;;:::i;:::-;;-1:-1:-1;848:10:0;;-1:-1:-1;856:2:0;848:10;;:::i;:::-;;;792:78;;;880:19;912:6;902:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;902:17:0;;880:39;;930:154;937:10;;930:154;;964:11;974:1;964:11;;:::i;:::-;;-1:-1:-1;1033:10:0;1041:2;1033:5;:10;:::i;:::-;1020:24;;:2;:24;:::i;:::-;1007:39;;990:6;997;990:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;990:56:0;;;;;;;;-1:-1:-1;1061:11:0;1070:2;1061:11;;:::i;:::-;;;930:154;;30862:163;30985:32;30991:2;30995:8;31005:5;31012:4;31423:20;31446:12;-1:-1:-1;;;;;31477:16:0;;31469:62;;;;-1:-1:-1;;;31469:62:0;;16065:2:1;31469:62:0;;;16047:21:1;16104:2;16084:18;;;16077:30;16143:34;16123:18;;;16116:62;-1:-1:-1;;;16194:18:1;;;16187:31;16235:19;;31469:62:0;15863:397:1;31469:62:0;31550:13;31542:66;;;;-1:-1:-1;;;31542:66:0;;16467:2:1;31542:66:0;;;16449:21:1;16506:2;16486:18;;;16479:30;16545:34;16525:18;;;16518:62;-1:-1:-1;;;16596:18:1;;;16589:38;16644:19;;31542:66:0;16265:404:1;31542:66:0;-1:-1:-1;;;;;31960:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;31960:45:0;;-1:-1:-1;;;;;31960:45:0;;;;;;;;;;32020:50;;;;;;;;;;;;;;32087:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;32137:66:0;;;;-1:-1:-1;;;32187:15:0;32137:66;;;;;;;32087:25;;32272:415;32292:8;32288:1;:12;32272:415;;;32331:38;;32356:12;;-1:-1:-1;;;;;32331:38:0;;;32348:1;;32331:38;;32348:1;;32331:38;32392:4;32388:249;;;32455:59;32486:1;32490:2;32494:12;32508:5;32455:22;:59::i;:::-;32421:196;;;;-1:-1:-1;;;32421:196:0;;;;;;;:::i;:::-;32657:14;;;;;32302:3;32272:415;;;-1:-1:-1;32703:12:0;:27;32754:60;29666:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;1039:18;1028:30;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:160::-;1265:20;;1321:13;;1314:21;1304:32;;1294:60;;1350:1;1347;1340:12;1365:186;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;1516:29;1535:9;1516:29;:::i;1556:260::-;1624:6;1632;1685:2;1673:9;1664:7;1660:23;1656:32;1653:52;;;1701:1;1698;1691:12;1653:52;1724:29;1743:9;1724:29;:::i;:::-;1714:39;;1772:38;1806:2;1795:9;1791:18;1772:38;:::i;:::-;1762:48;;1556:260;;;;;:::o;1821:328::-;1898:6;1906;1914;1967:2;1955:9;1946:7;1942:23;1938:32;1935:52;;;1983:1;1980;1973:12;1935:52;2006:29;2025:9;2006:29;:::i;:::-;1996:39;;2054:38;2088:2;2077:9;2073:18;2054:38;:::i;:::-;2044:48;;2139:2;2128:9;2124:18;2111:32;2101:42;;1821:328;;;;;:::o;2154:666::-;2249:6;2257;2265;2273;2326:3;2314:9;2305:7;2301:23;2297:33;2294:53;;;2343:1;2340;2333:12;2294:53;2366:29;2385:9;2366:29;:::i;:::-;2356:39;;2414:38;2448:2;2437:9;2433:18;2414:38;:::i;:::-;2404:48;;2499:2;2488:9;2484:18;2471:32;2461:42;;2554:2;2543:9;2539:18;2526:32;2581:18;2573:6;2570:30;2567:50;;;2613:1;2610;2603:12;2567:50;2636:22;;2689:4;2681:13;;2677:27;-1:-1:-1;2667:55:1;;2718:1;2715;2708:12;2667:55;2741:73;2806:7;2801:2;2788:16;2783:2;2779;2775:11;2741:73;:::i;:::-;2731:83;;;2154:666;;;;;;;:::o;2825:254::-;2890:6;2898;2951:2;2939:9;2930:7;2926:23;2922:32;2919:52;;;2967:1;2964;2957:12;2919:52;2990:29;3009:9;2990:29;:::i;:::-;2980:39;;3038:35;3069:2;3058:9;3054:18;3038:35;:::i;3084:254::-;3152:6;3160;3213:2;3201:9;3192:7;3188:23;3184:32;3181:52;;;3229:1;3226;3219:12;3181:52;3252:29;3271:9;3252:29;:::i;:::-;3242:39;3328:2;3313:18;;;;3300:32;;-1:-1:-1;;;3084:254:1:o;3343:773::-;3465:6;3473;3481;3489;3542:2;3530:9;3521:7;3517:23;3513:32;3510:52;;;3558:1;3555;3548:12;3510:52;3598:9;3585:23;3627:18;3668:2;3660:6;3657:14;3654:34;;;3684:1;3681;3674:12;3654:34;3723:70;3785:7;3776:6;3765:9;3761:22;3723:70;:::i;:::-;3812:8;;-1:-1:-1;3697:96:1;-1:-1:-1;3900:2:1;3885:18;;3872:32;;-1:-1:-1;3916:16:1;;;3913:36;;;3945:1;3942;3935:12;3913:36;;3984:72;4048:7;4037:8;4026:9;4022:24;3984:72;:::i;:::-;3343:773;;;;-1:-1:-1;4075:8:1;-1:-1:-1;;;;3343:773:1:o;4121:180::-;4177:6;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:26;4285:9;4269:26;:::i;4306:245::-;4364:6;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4472:9;4459:23;4491:30;4515:5;4491:30;:::i;4556:249::-;4625:6;4678:2;4666:9;4657:7;4653:23;4649:32;4646:52;;;4694:1;4691;4684:12;4646:52;4726:9;4720:16;4745:30;4769:5;4745:30;:::i;4810:450::-;4879:6;4932:2;4920:9;4911:7;4907:23;4903:32;4900:52;;;4948:1;4945;4938:12;4900:52;4988:9;4975:23;5021:18;5013:6;5010:30;5007:50;;;5053:1;5050;5043:12;5007:50;5076:22;;5129:4;5121:13;;5117:27;-1:-1:-1;5107:55:1;;5158:1;5155;5148:12;5107:55;5181:73;5246:7;5241:2;5228:16;5223:2;5219;5215:11;5181:73;:::i;5265:180::-;5324:6;5377:2;5365:9;5356:7;5352:23;5348:32;5345:52;;;5393:1;5390;5383:12;5345:52;-1:-1:-1;5416:23:1;;5265:180;-1:-1:-1;5265:180:1:o;5450:257::-;5491:3;5529:5;5523:12;5556:6;5551:3;5544:19;5572:63;5628:6;5621:4;5616:3;5612:14;5605:4;5598:5;5594:16;5572:63;:::i;:::-;5689:2;5668:15;-1:-1:-1;;5664:29:1;5655:39;;;;5696:4;5651:50;;5450:257;-1:-1:-1;;5450:257:1:o;5712:571::-;5992:3;6030:6;6024:13;6046:53;6092:6;6087:3;6080:4;6072:6;6068:17;6046:53;:::i;:::-;6162:13;;6121:16;;;;6184:57;6162:13;6121:16;6218:4;6206:17;;6184:57;:::i;:::-;6257:20;;5712:571;-1:-1:-1;;;;5712:571:1:o;6706:488::-;-1:-1:-1;;;;;6975:15:1;;;6957:34;;7027:15;;7022:2;7007:18;;7000:43;7074:2;7059:18;;7052:34;;;7122:3;7117:2;7102:18;;7095:31;;;6900:4;;7143:45;;7168:19;;7160:6;7143:45;:::i;:::-;7135:53;6706:488;-1:-1:-1;;;;;;6706:488:1:o;7391:219::-;7540:2;7529:9;7522:21;7503:4;7560:44;7600:2;7589:9;7585:18;7577:6;7560:44;:::i;13552:356::-;13754:2;13736:21;;;13773:18;;;13766:30;13832:34;13827:2;13812:18;;13805:62;13899:2;13884:18;;13552:356::o;15090:415::-;15292:2;15274:21;;;15331:2;15311:18;;;15304:30;15370:34;15365:2;15350:18;;15343:62;-1:-1:-1;;;15436:2:1;15421:18;;15414:49;15495:3;15480:19;;15090:415::o;18870:128::-;18910:3;18941:1;18937:6;18934:1;18931:13;18928:39;;;18947:18;;:::i;:::-;-1:-1:-1;18983:9:1;;18870:128::o;19003:120::-;19043:1;19069;19059:35;;19074:18;;:::i;:::-;-1:-1:-1;19108:9:1;;19003:120::o;19128:168::-;19168:7;19234:1;19230;19226:6;19222:14;19219:1;19216:21;19211:1;19204:9;19197:17;19193:45;19190:71;;;19241:18;;:::i;:::-;-1:-1:-1;19281:9:1;;19128:168::o;19301:125::-;19341:4;19369:1;19366;19363:8;19360:34;;;19374:18;;:::i;:::-;-1:-1:-1;19411:9:1;;19301:125::o;19431:258::-;19503:1;19513:113;19527:6;19524:1;19521:13;19513:113;;;19603:11;;;19597:18;19584:11;;;19577:39;19549:2;19542:10;19513:113;;;19644:6;19641:1;19638:13;19635:48;;;-1:-1:-1;;19679:1:1;19661:16;;19654:27;19431:258::o;19694:380::-;19773:1;19769:12;;;;19816;;;19837:61;;19891:4;19883:6;19879:17;19869:27;;19837:61;19944:2;19936:6;19933:14;19913:18;19910:38;19907:161;;;19990:10;19985:3;19981:20;19978:1;19971:31;20025:4;20022:1;20015:15;20053:4;20050:1;20043:15;19907:161;;19694:380;;;:::o;20079:135::-;20118:3;-1:-1:-1;;20139:17:1;;20136:43;;;20159:18;;:::i;:::-;-1:-1:-1;20206:1:1;20195:13;;20079:135::o;20219:112::-;20251:1;20277;20267:35;;20282:18;;:::i;:::-;-1:-1:-1;20316:9:1;;20219:112::o;20336:127::-;20397:10;20392:3;20388:20;20385:1;20378:31;20428:4;20425:1;20418:15;20452:4;20449:1;20442:15;20468:127;20529:10;20524:3;20520:20;20517:1;20510:31;20560:4;20557:1;20550:15;20584:4;20581:1;20574:15;20600:127;20661:10;20656:3;20652:20;20649:1;20642:31;20692:4;20689:1;20682:15;20716:4;20713:1;20706:15;20732:127;20793:10;20788:3;20784:20;20781:1;20774:31;20824:4;20821:1;20814:15;20848:4;20845:1;20838:15;20864:131;-1:-1:-1;;;;;;20938:32:1;;20928:43;;20918:71;;20985:1;20982;20975:12

Swarm Source

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