ETH Price: $3,066.44 (+1.40%)
Gas: 4 Gwei

Token

mor goblinz (morgoblinz)
 

Overview

Max Total Supply

3,333 morgoblinz

Holders

546

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
wortel.eth
Balance
5 morgoblinz
0x1ad1d1023b660033ee6f1730e68efd6a9bd3ec9b
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:
morgoblinz

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-05-23
*/

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]


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



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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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



/**
 * @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/introspection/[email protected]


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



/**
 * @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/token/ERC721/[email protected]


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



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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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



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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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

    /**
     * @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/utils/[email protected]


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



/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



/**
 * @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 contracts/ERC721A.sol


// Creator: Chiru Labs


/**
 * @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 (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 = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; 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);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; 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 Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            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.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership(prevOwnership.addr, 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 contracts/morgoblinz.sol


contract morgoblinz is ERC721A, Ownable {

    string public baseURI = "ipfs://QmRLsC7caDU2bNBJDgqYQ9tt2ovQSZq8xdHYuzeJTcJUyU/";
    string public contractURI = "";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX = 5;
    uint256 public constant MAX_SUPPLY = 3333;
    uint256 public constant MAX_PER_WALLET = 10;

    bool public paused = true;

    constructor() ERC721A("mor goblinz", "morgoblinz") {}

    function freemint(uint256 _amount) external payable {
        address _caller = _msgSender();
        uint256 ownerTokenCount = balanceOf(_caller);
        require(!paused, "not right now");
        require(MAX_SUPPLY >= totalSupply() + _amount, "no mor goblinz lefft");
        require(_amount > 0, "why");
        require(tx.origin == _caller, "no robotz");
        require(ownerTokenCount < MAX_PER_WALLET, "you have many goblin");
        require(MAX_PER_TX >= _amount , "toooo manay goblinz in this");

        _safeMint(_caller, _amount);
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function take() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "idk");
    }

    function startdamachine() external onlyOwner {
        _safeMint(_msgSender(), 1);
    }

    function grrrrr(uint256 _amount) external onlyOwner {
        address _caller = _msgSender();
        require(MAX_SUPPLY >= totalSupply() + _amount, "no mor goblinz lefft");
        require(_amount > 0, "why");
        require(tx.origin == _caller, "no robotz");
        _safeMint(_caller, _amount);
    }

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

    function setdaodertings(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setdating(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

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":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"auuuuuuu","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"grrrrr","outputs":[],"stateMutability":"nonpayable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setdaodertings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setdating","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startdamachine","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"take","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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"}]

600160005560e06040526036608081815290620026e360a03980516200002e916008916020909101906200014f565b506040805160208101918290526000908190526200004f916009916200014f565b50600a805460ff191660011790553480156200006a57600080fd5b50604080518082018252600b81526a36b7b91033b7b13634b73d60a91b60208083019182528351808501909452600a84526936b7b933b7b13634b73d60b11b908401528151919291620000c0916001916200014f565b508051620000d69060029060208401906200014f565b505050620000f3620000ed620000f960201b60201c565b620000fd565b62000232565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015d90620001f5565b90600052602060002090601f016020900481019282620001815760008555620001cc565b82601f106200019c57805160ff1916838001178555620001cc565b82800160010185558215620001cc579182015b82811115620001cc578251825591602001919060010190620001af565b50620001da929150620001de565b5090565b5b80821115620001da5760008155600101620001df565b600181811c908216806200020a57607f821691505b602082108114156200022c57634e487b7160e01b600052602260045260246000fd5b50919050565b6124a180620002426000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063c6682862116100a0578063e985e9c51161006f578063e985e9c51461057f578063f2fde38b1461059f578063f43a22dc146105bf578063fb1531d0146105d4578063fc9a5487146105f457600080fd5b8063c6682862146104f1578063c87b56dd14610522578063cd7c032614610542578063e8a3d4851461056a57600080fd5b8063a22cb465116100dc578063a22cb46514610471578063b2a3f02b14610491578063b88d4fde146104b1578063bb3dd11f146104d157600080fd5b806370a0823114610409578063715018a6146104295780638da5cb5b1461043e57806395d89b411461045c57600080fd5b806318160ddd1161019057806342842e0e1161015f57806342842e0e1461037a5780634f6ccce71461039a5780635c975abb146103ba5780636352211e146103d45780636c0360eb146103f457600080fd5b806318160ddd1461030f57806323b872dd146103245780632f745c591461034457806332cb6b0c1461036457600080fd5b80630f2cdd6c116101cc5780630f2cdd6c146102af5780630fbe4fe2146102d257806312436ea5146102e5578063159090bd146102fa57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e61021936600461204d565b610614565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610681565b60405161022a9190612232565b34801561026157600080fd5b506102756102703660046120ed565b610713565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004612006565b6107a3565b005b3480156102bb57600080fd5b506102c4600a81565b60405190815260200161022a565b6102ad6102e03660046120ed565b6108bb565b3480156102f157600080fd5b506102ad610a85565b34801561030657600080fd5b506102ad610abc565b34801561031b57600080fd5b506000546102c4565b34801561033057600080fd5b506102ad61033f366004611f10565b610b6a565b34801561035057600080fd5b506102c461035f366004612006565b610b75565b34801561037057600080fd5b506102c4610d0581565b34801561038657600080fd5b506102ad610395366004611f10565b610ce3565b3480156103a657600080fd5b506102c46103b53660046120ed565b610cfe565b3480156103c657600080fd5b50600a5461021e9060ff1681565b3480156103e057600080fd5b506102756103ef3660046120ed565b610d60565b34801561040057600080fd5b50610248610d72565b34801561041557600080fd5b506102c4610424366004611eb3565b610e00565b34801561043557600080fd5b506102ad610e91565b34801561044a57600080fd5b506007546001600160a01b0316610275565b34801561046857600080fd5b50610248610ec5565b34801561047d57600080fd5b506102ad61048c366004611fd1565b610ed4565b34801561049d57600080fd5b506102ad6104ac3660046120a4565b610f99565b3480156104bd57600080fd5b506102ad6104cc366004611f51565b610fd6565b3480156104dd57600080fd5b506102ad6104ec3660046120ed565b61100f565b3480156104fd57600080fd5b5061024860405180604001604052806005815260200164173539b7b760d91b81525081565b34801561052e57600080fd5b5061024861053d3660046120ed565b611115565b34801561054e57600080fd5b5061027573a5409ec958c83c3f309868babaca7c86dcb077c181565b34801561057657600080fd5b506102486111e1565b34801561058b57600080fd5b5061021e61059a366004611ed7565b6111ee565b3480156105ab57600080fd5b506102ad6105ba366004611eb3565b6112cd565b3480156105cb57600080fd5b506102c4600581565b3480156105e057600080fd5b506102ad6105ef3660046120a4565b611368565b34801561060057600080fd5b506102ad61060f366004612032565b6113a5565b60006001600160e01b031982166380ac58cd60e01b148061064557506001600160e01b03198216635b5e139f60e01b145b8061066057506001600160e01b0319821663780e9d6360e01b145b8061067b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106909061237e565b80601f01602080910402602001604051908101604052809291908181526020018280546106bc9061237e565b80156107095780601f106106de57610100808354040283529160200191610709565b820191906000526020600020905b8154815290600101906020018083116106ec57829003601f168201915b5050505050905090565b6000610720826000541190565b6107875760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107ae82610d60565b9050806001600160a01b0316836001600160a01b0316141561081d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161077e565b336001600160a01b0382161480610839575061083981336111ee565b6108ab5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161077e565b6108b68383836113e2565b505050565b3360006108c782610e00565b600a5490915060ff161561090d5760405162461bcd60e51b815260206004820152600d60248201526c6e6f74207269676874206e6f7760981b604482015260640161077e565b8261091760005490565b61092191906122f8565b610d0510156109695760405162461bcd60e51b81526020600482015260146024820152731b9bc81b5bdc8819dbd89b1a5b9e881b1959999d60621b604482015260640161077e565b6000831161099f5760405162461bcd60e51b815260206004820152600360248201526277687960e81b604482015260640161077e565b326001600160a01b038316146109e35760405162461bcd60e51b81526020600482015260096024820152683737903937b137ba3d60b91b604482015260640161077e565b600a8110610a2a5760405162461bcd60e51b81526020600482015260146024820152733cb7ba903430bb329036b0b73c9033b7b13634b760611b604482015260640161077e565b8260051015610a7b5760405162461bcd60e51b815260206004820152601b60248201527f746f6f6f6f206d616e617920676f626c696e7a20696e20746869730000000000604482015260640161077e565b6108b6828461143e565b6007546001600160a01b03163314610aaf5760405162461bcd60e51b815260040161077e90612245565b610aba33600161143e565b565b6007546001600160a01b03163314610ae65760405162461bcd60e51b815260040161077e90612245565b6040514790600090339083908381818185875af1925050503d8060008114610b2a576040519150601f19603f3d011682016040523d82523d6000602084013e610b2f565b606091505b5050905080610b665760405162461bcd60e51b815260206004820152600360248201526269646b60e81b604482015260640161077e565b5050565b6108b6838383611458565b6000610b8083610e00565b8210610bd95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161077e565b600080549080805b83811015610c83576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c3457805192505b876001600160a01b0316836001600160a01b03161415610c705786841415610c625750935061067b92505050565b83610c6c816123b9565b9450505b5080610c7b816123b9565b915050610be1565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161077e565b6108b683838360405180602001604052806000815250610fd6565b600080548210610d5c5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161077e565b5090565b6000610d6b8261179f565b5192915050565b60088054610d7f9061237e565b80601f0160208091040260200160405190810160405280929190818152602001828054610dab9061237e565b8015610df85780601f10610dcd57610100808354040283529160200191610df8565b820191906000526020600020905b815481529060010190602001808311610ddb57829003601f168201915b505050505081565b60006001600160a01b038216610e6c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161077e565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610ebb5760405162461bcd60e51b815260040161077e90612245565b610aba600061187f565b6060600280546106909061237e565b6001600160a01b038216331415610f2d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161077e565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b03163314610fc35760405162461bcd60e51b815260040161077e90612245565b8051610b66906009906020840190611d98565b610fe1848484611458565b610fed848484846118d1565b6110095760405162461bcd60e51b815260040161077e9061227a565b50505050565b6007546001600160a01b031633146110395760405162461bcd60e51b815260040161077e90612245565b60005433906110499083906122f8565b610d0510156110915760405162461bcd60e51b81526020600482015260146024820152731b9bc81b5bdc8819dbd89b1a5b9e881b1959999d60621b604482015260640161077e565b600082116110c75760405162461bcd60e51b815260206004820152600360248201526277687960e81b604482015260640161077e565b326001600160a01b0382161461110b5760405162461bcd60e51b81526020600482015260096024820152683737903937b137ba3d60b91b604482015260640161077e565b610b66818361143e565b6060611122826000541190565b6111665760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604482015260640161077e565b6000600880546111759061237e565b905011611191576040518060200160405280600081525061067b565b600861119c836119de565b60405180604001604052806005815260200164173539b7b760d91b8152506040516020016111cc9392919061214e565b60405160208183030381529060405292915050565b60098054610d7f9061237e565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b15801561124a57600080fd5b505afa15801561125e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112829190612087565b6001600160a01b0316141561129b57600191505061067b565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6007546001600160a01b031633146112f75760405162461bcd60e51b815260040161077e90612245565b6001600160a01b03811661135c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077e565b6113658161187f565b50565b6007546001600160a01b031633146113925760405162461bcd60e51b815260040161077e90612245565b8051610b66906008906020840190611d98565b6007546001600160a01b031633146113cf5760405162461bcd60e51b815260040161077e90612245565b600a805460ff1916911515919091179055565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b66828260405180602001604052806000815250611adc565b60006114638261179f565b80519091506000906001600160a01b0316336001600160a01b0316148061149a57503361148f84610713565b6001600160a01b0316145b806114ac575081516114ac90336111ee565b9050806115165760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161077e565b846001600160a01b031682600001516001600160a01b03161461158a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161077e565b6001600160a01b0384166115ee5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161077e565b6115fe60008484600001516113e2565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906116c39085906122f8565b6000818152600360205260409020549091506001600160a01b0316611755576116ed816000541190565b156117555760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526117be826000541190565b61181d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161077e565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561186c579392505050565b508061187781612367565b91505061181f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156119d357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119159033908990889088906004016121ff565b602060405180830381600087803b15801561192f57600080fd5b505af192505050801561195f575060408051601f3d908101601f1916820190925261195c9181019061206a565b60015b6119b9573d80801561198d576040519150601f19603f3d011682016040523d82523d6000602084013e611992565b606091505b5080516119b15760405162461bcd60e51b815260040161077e9061227a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112c5565b506001949350505050565b606081611a025750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a2c5780611a16816123b9565b9150611a259050600a83612310565b9150611a06565b60008167ffffffffffffffff811115611a4757611a4761242a565b6040519080825280601f01601f191660200182016040528015611a71576020820181803683370190505b5090505b84156112c557611a86600183612324565b9150611a93600a866123d4565b611a9e9060306122f8565b60f81b818381518110611ab357611ab3612414565b60200101906001600160f81b031916908160001a905350611ad5600a86612310565b9450611a75565b6000546001600160a01b038416611b3f5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161077e565b611b4a816000541190565b15611b975760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161077e565b60008311611bf35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b606482015260840161077e565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611c4f9087906122cd565b6001600160801b03168152602001858360200151611c6d91906122cd565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611d8d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d5160008884886118d1565b611d6d5760405162461bcd60e51b815260040161077e9061227a565b81611d77816123b9565b9250508080611d85906123b9565b915050611d04565b506000819055611797565b828054611da49061237e565b90600052602060002090601f016020900481019282611dc65760008555611e0c565b82601f10611ddf57805160ff1916838001178555611e0c565b82800160010185558215611e0c579182015b82811115611e0c578251825591602001919060010190611df1565b50610d5c9291505b80821115610d5c5760008155600101611e14565b600067ffffffffffffffff80841115611e4357611e4361242a565b604051601f8501601f19908116603f01168101908282118183101715611e6b57611e6b61242a565b81604052809350858152868686011115611e8457600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611eae57600080fd5b919050565b600060208284031215611ec557600080fd5b8135611ed081612440565b9392505050565b60008060408385031215611eea57600080fd5b8235611ef581612440565b91506020830135611f0581612440565b809150509250929050565b600080600060608486031215611f2557600080fd5b8335611f3081612440565b92506020840135611f4081612440565b929592945050506040919091013590565b60008060008060808587031215611f6757600080fd5b8435611f7281612440565b93506020850135611f8281612440565b925060408501359150606085013567ffffffffffffffff811115611fa557600080fd5b8501601f81018713611fb657600080fd5b611fc587823560208401611e28565b91505092959194509250565b60008060408385031215611fe457600080fd5b8235611fef81612440565b9150611ffd60208401611e9e565b90509250929050565b6000806040838503121561201957600080fd5b823561202481612440565b946020939093013593505050565b60006020828403121561204457600080fd5b611ed082611e9e565b60006020828403121561205f57600080fd5b8135611ed081612455565b60006020828403121561207c57600080fd5b8151611ed081612455565b60006020828403121561209957600080fd5b8151611ed081612440565b6000602082840312156120b657600080fd5b813567ffffffffffffffff8111156120cd57600080fd5b8201601f810184136120de57600080fd5b6112c584823560208401611e28565b6000602082840312156120ff57600080fd5b5035919050565b6000815180845261211e81602086016020860161233b565b601f01601f19169290920160200192915050565b6000815161214481856020860161233b565b9290920192915050565b600080855481600182811c91508083168061216a57607f831692505b602080841082141561218a57634e487b7160e01b86526022600452602486fd5b81801561219e57600181146121af576121dc565b60ff198616895284890196506121dc565b60008c81526020902060005b868110156121d45781548b8201529085019083016121bb565b505084890196505b5050505050506121f56121ef8287612132565b85612132565b9695505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121f590830184612106565b602081526000611ed06020830184612106565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156122ef576122ef6123e8565b01949350505050565b6000821982111561230b5761230b6123e8565b500190565b60008261231f5761231f6123fe565b500490565b600082821015612336576123366123e8565b500390565b60005b8381101561235657818101518382015260200161233e565b838111156110095750506000910152565b600081612376576123766123e8565b506000190190565b600181811c9082168061239257607f821691505b602082108114156123b357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123cd576123cd6123e8565b5060010190565b6000826123e3576123e36123fe565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461136557600080fd5b6001600160e01b03198116811461136557600080fdfea26469706673582212203f4f72671f5d2435f423ca50aa01fe8e4a161c78a6c3db6324f2cc40e3b6af1964736f6c63430008070033697066733a2f2f516d524c7343376361445532624e424a4467715951397474326f7651535a713878644859757a654a54634a5579552f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063c6682862116100a0578063e985e9c51161006f578063e985e9c51461057f578063f2fde38b1461059f578063f43a22dc146105bf578063fb1531d0146105d4578063fc9a5487146105f457600080fd5b8063c6682862146104f1578063c87b56dd14610522578063cd7c032614610542578063e8a3d4851461056a57600080fd5b8063a22cb465116100dc578063a22cb46514610471578063b2a3f02b14610491578063b88d4fde146104b1578063bb3dd11f146104d157600080fd5b806370a0823114610409578063715018a6146104295780638da5cb5b1461043e57806395d89b411461045c57600080fd5b806318160ddd1161019057806342842e0e1161015f57806342842e0e1461037a5780634f6ccce71461039a5780635c975abb146103ba5780636352211e146103d45780636c0360eb146103f457600080fd5b806318160ddd1461030f57806323b872dd146103245780632f745c591461034457806332cb6b0c1461036457600080fd5b80630f2cdd6c116101cc5780630f2cdd6c146102af5780630fbe4fe2146102d257806312436ea5146102e5578063159090bd146102fa57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e61021936600461204d565b610614565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610681565b60405161022a9190612232565b34801561026157600080fd5b506102756102703660046120ed565b610713565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004612006565b6107a3565b005b3480156102bb57600080fd5b506102c4600a81565b60405190815260200161022a565b6102ad6102e03660046120ed565b6108bb565b3480156102f157600080fd5b506102ad610a85565b34801561030657600080fd5b506102ad610abc565b34801561031b57600080fd5b506000546102c4565b34801561033057600080fd5b506102ad61033f366004611f10565b610b6a565b34801561035057600080fd5b506102c461035f366004612006565b610b75565b34801561037057600080fd5b506102c4610d0581565b34801561038657600080fd5b506102ad610395366004611f10565b610ce3565b3480156103a657600080fd5b506102c46103b53660046120ed565b610cfe565b3480156103c657600080fd5b50600a5461021e9060ff1681565b3480156103e057600080fd5b506102756103ef3660046120ed565b610d60565b34801561040057600080fd5b50610248610d72565b34801561041557600080fd5b506102c4610424366004611eb3565b610e00565b34801561043557600080fd5b506102ad610e91565b34801561044a57600080fd5b506007546001600160a01b0316610275565b34801561046857600080fd5b50610248610ec5565b34801561047d57600080fd5b506102ad61048c366004611fd1565b610ed4565b34801561049d57600080fd5b506102ad6104ac3660046120a4565b610f99565b3480156104bd57600080fd5b506102ad6104cc366004611f51565b610fd6565b3480156104dd57600080fd5b506102ad6104ec3660046120ed565b61100f565b3480156104fd57600080fd5b5061024860405180604001604052806005815260200164173539b7b760d91b81525081565b34801561052e57600080fd5b5061024861053d3660046120ed565b611115565b34801561054e57600080fd5b5061027573a5409ec958c83c3f309868babaca7c86dcb077c181565b34801561057657600080fd5b506102486111e1565b34801561058b57600080fd5b5061021e61059a366004611ed7565b6111ee565b3480156105ab57600080fd5b506102ad6105ba366004611eb3565b6112cd565b3480156105cb57600080fd5b506102c4600581565b3480156105e057600080fd5b506102ad6105ef3660046120a4565b611368565b34801561060057600080fd5b506102ad61060f366004612032565b6113a5565b60006001600160e01b031982166380ac58cd60e01b148061064557506001600160e01b03198216635b5e139f60e01b145b8061066057506001600160e01b0319821663780e9d6360e01b145b8061067b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106909061237e565b80601f01602080910402602001604051908101604052809291908181526020018280546106bc9061237e565b80156107095780601f106106de57610100808354040283529160200191610709565b820191906000526020600020905b8154815290600101906020018083116106ec57829003601f168201915b5050505050905090565b6000610720826000541190565b6107875760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107ae82610d60565b9050806001600160a01b0316836001600160a01b0316141561081d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161077e565b336001600160a01b0382161480610839575061083981336111ee565b6108ab5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161077e565b6108b68383836113e2565b505050565b3360006108c782610e00565b600a5490915060ff161561090d5760405162461bcd60e51b815260206004820152600d60248201526c6e6f74207269676874206e6f7760981b604482015260640161077e565b8261091760005490565b61092191906122f8565b610d0510156109695760405162461bcd60e51b81526020600482015260146024820152731b9bc81b5bdc8819dbd89b1a5b9e881b1959999d60621b604482015260640161077e565b6000831161099f5760405162461bcd60e51b815260206004820152600360248201526277687960e81b604482015260640161077e565b326001600160a01b038316146109e35760405162461bcd60e51b81526020600482015260096024820152683737903937b137ba3d60b91b604482015260640161077e565b600a8110610a2a5760405162461bcd60e51b81526020600482015260146024820152733cb7ba903430bb329036b0b73c9033b7b13634b760611b604482015260640161077e565b8260051015610a7b5760405162461bcd60e51b815260206004820152601b60248201527f746f6f6f6f206d616e617920676f626c696e7a20696e20746869730000000000604482015260640161077e565b6108b6828461143e565b6007546001600160a01b03163314610aaf5760405162461bcd60e51b815260040161077e90612245565b610aba33600161143e565b565b6007546001600160a01b03163314610ae65760405162461bcd60e51b815260040161077e90612245565b6040514790600090339083908381818185875af1925050503d8060008114610b2a576040519150601f19603f3d011682016040523d82523d6000602084013e610b2f565b606091505b5050905080610b665760405162461bcd60e51b815260206004820152600360248201526269646b60e81b604482015260640161077e565b5050565b6108b6838383611458565b6000610b8083610e00565b8210610bd95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161077e565b600080549080805b83811015610c83576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c3457805192505b876001600160a01b0316836001600160a01b03161415610c705786841415610c625750935061067b92505050565b83610c6c816123b9565b9450505b5080610c7b816123b9565b915050610be1565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161077e565b6108b683838360405180602001604052806000815250610fd6565b600080548210610d5c5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161077e565b5090565b6000610d6b8261179f565b5192915050565b60088054610d7f9061237e565b80601f0160208091040260200160405190810160405280929190818152602001828054610dab9061237e565b8015610df85780601f10610dcd57610100808354040283529160200191610df8565b820191906000526020600020905b815481529060010190602001808311610ddb57829003601f168201915b505050505081565b60006001600160a01b038216610e6c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161077e565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610ebb5760405162461bcd60e51b815260040161077e90612245565b610aba600061187f565b6060600280546106909061237e565b6001600160a01b038216331415610f2d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161077e565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b03163314610fc35760405162461bcd60e51b815260040161077e90612245565b8051610b66906009906020840190611d98565b610fe1848484611458565b610fed848484846118d1565b6110095760405162461bcd60e51b815260040161077e9061227a565b50505050565b6007546001600160a01b031633146110395760405162461bcd60e51b815260040161077e90612245565b60005433906110499083906122f8565b610d0510156110915760405162461bcd60e51b81526020600482015260146024820152731b9bc81b5bdc8819dbd89b1a5b9e881b1959999d60621b604482015260640161077e565b600082116110c75760405162461bcd60e51b815260206004820152600360248201526277687960e81b604482015260640161077e565b326001600160a01b0382161461110b5760405162461bcd60e51b81526020600482015260096024820152683737903937b137ba3d60b91b604482015260640161077e565b610b66818361143e565b6060611122826000541190565b6111665760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604482015260640161077e565b6000600880546111759061237e565b905011611191576040518060200160405280600081525061067b565b600861119c836119de565b60405180604001604052806005815260200164173539b7b760d91b8152506040516020016111cc9392919061214e565b60405160208183030381529060405292915050565b60098054610d7f9061237e565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b15801561124a57600080fd5b505afa15801561125e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112829190612087565b6001600160a01b0316141561129b57600191505061067b565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6007546001600160a01b031633146112f75760405162461bcd60e51b815260040161077e90612245565b6001600160a01b03811661135c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077e565b6113658161187f565b50565b6007546001600160a01b031633146113925760405162461bcd60e51b815260040161077e90612245565b8051610b66906008906020840190611d98565b6007546001600160a01b031633146113cf5760405162461bcd60e51b815260040161077e90612245565b600a805460ff1916911515919091179055565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b66828260405180602001604052806000815250611adc565b60006114638261179f565b80519091506000906001600160a01b0316336001600160a01b0316148061149a57503361148f84610713565b6001600160a01b0316145b806114ac575081516114ac90336111ee565b9050806115165760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161077e565b846001600160a01b031682600001516001600160a01b03161461158a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161077e565b6001600160a01b0384166115ee5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161077e565b6115fe60008484600001516113e2565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906116c39085906122f8565b6000818152600360205260409020549091506001600160a01b0316611755576116ed816000541190565b156117555760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526117be826000541190565b61181d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161077e565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561186c579392505050565b508061187781612367565b91505061181f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156119d357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119159033908990889088906004016121ff565b602060405180830381600087803b15801561192f57600080fd5b505af192505050801561195f575060408051601f3d908101601f1916820190925261195c9181019061206a565b60015b6119b9573d80801561198d576040519150601f19603f3d011682016040523d82523d6000602084013e611992565b606091505b5080516119b15760405162461bcd60e51b815260040161077e9061227a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112c5565b506001949350505050565b606081611a025750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a2c5780611a16816123b9565b9150611a259050600a83612310565b9150611a06565b60008167ffffffffffffffff811115611a4757611a4761242a565b6040519080825280601f01601f191660200182016040528015611a71576020820181803683370190505b5090505b84156112c557611a86600183612324565b9150611a93600a866123d4565b611a9e9060306122f8565b60f81b818381518110611ab357611ab3612414565b60200101906001600160f81b031916908160001a905350611ad5600a86612310565b9450611a75565b6000546001600160a01b038416611b3f5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161077e565b611b4a816000541190565b15611b975760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161077e565b60008311611bf35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b606482015260840161077e565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611c4f9087906122cd565b6001600160801b03168152602001858360200151611c6d91906122cd565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611d8d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d5160008884886118d1565b611d6d5760405162461bcd60e51b815260040161077e9061227a565b81611d77816123b9565b9250508080611d85906123b9565b915050611d04565b506000819055611797565b828054611da49061237e565b90600052602060002090601f016020900481019282611dc65760008555611e0c565b82601f10611ddf57805160ff1916838001178555611e0c565b82800160010185558215611e0c579182015b82811115611e0c578251825591602001919060010190611df1565b50610d5c9291505b80821115610d5c5760008155600101611e14565b600067ffffffffffffffff80841115611e4357611e4361242a565b604051601f8501601f19908116603f01168101908282118183101715611e6b57611e6b61242a565b81604052809350858152868686011115611e8457600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611eae57600080fd5b919050565b600060208284031215611ec557600080fd5b8135611ed081612440565b9392505050565b60008060408385031215611eea57600080fd5b8235611ef581612440565b91506020830135611f0581612440565b809150509250929050565b600080600060608486031215611f2557600080fd5b8335611f3081612440565b92506020840135611f4081612440565b929592945050506040919091013590565b60008060008060808587031215611f6757600080fd5b8435611f7281612440565b93506020850135611f8281612440565b925060408501359150606085013567ffffffffffffffff811115611fa557600080fd5b8501601f81018713611fb657600080fd5b611fc587823560208401611e28565b91505092959194509250565b60008060408385031215611fe457600080fd5b8235611fef81612440565b9150611ffd60208401611e9e565b90509250929050565b6000806040838503121561201957600080fd5b823561202481612440565b946020939093013593505050565b60006020828403121561204457600080fd5b611ed082611e9e565b60006020828403121561205f57600080fd5b8135611ed081612455565b60006020828403121561207c57600080fd5b8151611ed081612455565b60006020828403121561209957600080fd5b8151611ed081612440565b6000602082840312156120b657600080fd5b813567ffffffffffffffff8111156120cd57600080fd5b8201601f810184136120de57600080fd5b6112c584823560208401611e28565b6000602082840312156120ff57600080fd5b5035919050565b6000815180845261211e81602086016020860161233b565b601f01601f19169290920160200192915050565b6000815161214481856020860161233b565b9290920192915050565b600080855481600182811c91508083168061216a57607f831692505b602080841082141561218a57634e487b7160e01b86526022600452602486fd5b81801561219e57600181146121af576121dc565b60ff198616895284890196506121dc565b60008c81526020902060005b868110156121d45781548b8201529085019083016121bb565b505084890196505b5050505050506121f56121ef8287612132565b85612132565b9695505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121f590830184612106565b602081526000611ed06020830184612106565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156122ef576122ef6123e8565b01949350505050565b6000821982111561230b5761230b6123e8565b500190565b60008261231f5761231f6123fe565b500490565b600082821015612336576123366123e8565b500390565b60005b8381101561235657818101518382015260200161233e565b838111156110095750506000910152565b600081612376576123766123e8565b506000190190565b600181811c9082168061239257607f821691505b602082108114156123b357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123cd576123cd6123e8565b5060010190565b6000826123e3576123e36123fe565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461136557600080fd5b6001600160e01b03198116811461136557600080fdfea26469706673582212203f4f72671f5d2435f423ca50aa01fe8e4a161c78a6c3db6324f2cc40e3b6af1964736f6c63430008070033

Deployed Bytecode Sourcemap

38675:2893:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26647:372;;;;;;;;;;-1:-1:-1;26647:372:0;;;;;:::i;:::-;;:::i;:::-;;;7756:14:1;;7749:22;7731:41;;7719:2;7704:18;26647:372:0;;;;;;;;28274:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29835:214::-;;;;;;;;;;-1:-1:-1;29835:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7054:32:1;;;7036:51;;7024:2;7009:18;29835:214:0;6890:203:1;29356:413:0;;;;;;;;;;-1:-1:-1;29356:413:0;;;;;:::i;:::-;;:::i;:::-;;39092:43;;;;;;;;;;;;39133:2;39092:43;;;;;18541:25:1;;;18529:2;18514:18;39092:43:0;18395:177:1;39239:561:0;;;;;;:::i;:::-;;:::i;40463:90::-;;;;;;;;;;;;;:::i;40261:194::-;;;;;;;;;;;;;:::i;25088:100::-;;;;;;;;;;-1:-1:-1;25141:7:0;25168:12;25088:100;;30711:162;;;;;;;;;;-1:-1:-1;30711:162:0;;;;;:::i;:::-;;:::i;25752:823::-;;;;;;;;;;-1:-1:-1;25752:823:0;;;;;:::i;:::-;;:::i;39044:41::-;;;;;;;;;;;;39081:4;39044:41;;30944:177;;;;;;;;;;-1:-1:-1;30944:177:0;;;;;:::i;:::-;;:::i;25265:187::-;;;;;;;;;;-1:-1:-1;25265:187:0;;;;;:::i;:::-;;:::i;39144:25::-;;;;;;;;;;-1:-1:-1;39144:25:0;;;;;;;;28083:124;;;;;;;;;;-1:-1:-1;28083:124:0;;;;;:::i;:::-;;:::i;38724:80::-;;;;;;;;;;;;;:::i;27083:221::-;;;;;;;;;;-1:-1:-1;27083:221:0;;;;;:::i;:::-;;:::i;2626:103::-;;;;;;;;;;;;;:::i;1975:87::-;;;;;;;;;;-1:-1:-1;2048:6:0;;-1:-1:-1;;;;;2048:6:0;1975:87;;28443:104;;;;;;;;;;;;;:::i;30121:288::-;;;;;;;;;;-1:-1:-1;30121:288:0;;;;;:::i;:::-;;:::i;41084:111::-;;;;;;;;;;-1:-1:-1;41084:111:0;;;;;:::i;:::-;;:::i;31192:355::-;;;;;;;;;;-1:-1:-1;31192:355:0;;;;;:::i;:::-;;:::i;40561:311::-;;;;;;;;;;-1:-1:-1;40561:311:0;;;;;:::i;:::-;;:::i;38848:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;38848:46:0;;;;;41203:362;;;;;;;;;;-1:-1:-1;41203:362:0;;;;;:::i;:::-;;:::i;38901:89::-;;;;;;;;;;;;38948:42;38901:89;;38811:30;;;;;;;;;;;;;:::i;39808:445::-;;;;;;;;;;-1:-1:-1;39808:445:0;;;;;:::i;:::-;;:::i;2884:201::-;;;;;;;;;;-1:-1:-1;2884:201:0;;;;;:::i;:::-;;:::i;38999:38::-;;;;;;;;;;;;39036:1;38999:38;;40972:104;;;;;;;;;;-1:-1:-1;40972:104:0;;;;;:::i;:::-;;:::i;40880:84::-;;;;;;;;;;-1:-1:-1;40880:84:0;;;;;:::i;:::-;;:::i;26647:372::-;26749:4;-1:-1:-1;;;;;;26786:40:0;;-1:-1:-1;;;26786:40:0;;:105;;-1:-1:-1;;;;;;;26843:48:0;;-1:-1:-1;;;26843:48:0;26786:105;:172;;;-1:-1:-1;;;;;;;26908:50:0;;-1:-1:-1;;;26908:50:0;26786:172;:225;;;-1:-1:-1;;;;;;;;;;23260:40:0;;;26975:36;26766:245;26647:372;-1:-1:-1;;26647:372:0:o;28274:100::-;28328:13;28361:5;28354:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28274:100;:::o;29835:214::-;29903:7;29931:16;29939:7;31859:4;31893:12;-1:-1:-1;31883:22:0;31802:111;29931:16;29923:74;;;;-1:-1:-1;;;29923:74:0;;18183:2:1;29923:74:0;;;18165:21:1;18222:2;18202:18;;;18195:30;18261:34;18241:18;;;18234:62;-1:-1:-1;;;18312:18:1;;;18305:43;18365:19;;29923:74:0;;;;;;;;;-1:-1:-1;30017:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30017:24:0;;29835:214::o;29356:413::-;29429:13;29445:24;29461:7;29445:15;:24::i;:::-;29429:40;;29494:5;-1:-1:-1;;;;;29488:11:0;:2;-1:-1:-1;;;;;29488:11:0;;;29480:58;;;;-1:-1:-1;;;29480:58:0;;15009:2:1;29480:58:0;;;14991:21:1;15048:2;15028:18;;;15021:30;15087:34;15067:18;;;15060:62;-1:-1:-1;;;15138:18:1;;;15131:32;15180:19;;29480:58:0;14807:398:1;29480:58:0;796:10;-1:-1:-1;;;;;29573:21:0;;;;:62;;-1:-1:-1;29598:37:0;29615:5;796:10;39808:445;:::i;29598:37::-;29551:169;;;;-1:-1:-1;;;29551:169:0;;11942:2:1;29551:169:0;;;11924:21:1;11981:2;11961:18;;;11954:30;12020:34;12000:18;;;11993:62;12091:27;12071:18;;;12064:55;12136:19;;29551:169:0;11740:421:1;29551:169:0;29733:28;29742:2;29746:7;29755:5;29733:8;:28::i;:::-;29418:351;29356:413;;:::o;39239:561::-;796:10;39302:15;39369:18;796:10;39369:9;:18::i;:::-;39407:6;;39343:44;;-1:-1:-1;39407:6:0;;39406:7;39398:33;;;;-1:-1:-1;;;39398:33:0;;10938:2:1;39398:33:0;;;10920:21:1;10977:2;10957:18;;;10950:30;-1:-1:-1;;;10996:18:1;;;10989:43;11049:18;;39398:33:0;10736:337:1;39398:33:0;39480:7;39464:13;25141:7;25168:12;;25088:100;39464:13;:23;;;;:::i;:::-;39081:4;39450:37;;39442:70;;;;-1:-1:-1;;;39442:70:0;;10589:2:1;39442:70:0;;;10571:21:1;10628:2;10608:18;;;10601:30;-1:-1:-1;;;10647:18:1;;;10640:50;10707:18;;39442:70:0;10387:344:1;39442:70:0;39541:1;39531:7;:11;39523:27;;;;-1:-1:-1;;;39523:27:0;;11280:2:1;39523:27:0;;;11262:21:1;11319:1;11299:18;;;11292:29;-1:-1:-1;;;11337:18:1;;;11330:33;11380:18;;39523:27:0;11078:326:1;39523:27:0;39569:9;-1:-1:-1;;;;;39569:20:0;;;39561:42;;;;-1:-1:-1;;;39561:42:0;;13130:2:1;39561:42:0;;;13112:21:1;13169:1;13149:18;;;13142:29;-1:-1:-1;;;13187:18:1;;;13180:39;13236:18;;39561:42:0;12928:332:1;39561:42:0;39133:2;39622:15;:32;39614:65;;;;-1:-1:-1;;;39614:65:0;;8612:2:1;39614:65:0;;;8594:21:1;8651:2;8631:18;;;8624:30;-1:-1:-1;;;8670:18:1;;;8663:50;8730:18;;39614:65:0;8410:344:1;39614:65:0;39712:7;39036:1;39698:21;;39690:62;;;;-1:-1:-1;;;39690:62:0;;17411:2:1;39690:62:0;;;17393:21:1;17450:2;17430:18;;;17423:30;17489:29;17469:18;;;17462:57;17536:18;;39690:62:0;17209:351:1;39690:62:0;39765:27;39775:7;39784;39765:9;:27::i;40463:90::-;2048:6;;-1:-1:-1;;;;;2048:6:0;796:10;2195:23;2187:68;;;;-1:-1:-1;;;2187:68:0;;;;;;;:::i;:::-;40519:26:::1;796:10:::0;40543:1:::1;40519:9;:26::i;:::-;40463:90::o:0;40261:194::-;2048:6;;-1:-1:-1;;;;;2048:6:0;796:10;2195:23;2187:68;;;;-1:-1:-1;;;2187:68:0;;;;;;;:::i;:::-;40376:37:::1;::::0;40325:21:::1;::::0;40307:15:::1;::::0;796:10;;40325:21;;40307:15;40376:37;40307:15;40376:37;40325:21;796:10;40376:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40357:56;;;40432:7;40424:23;;;::::0;-1:-1:-1;;;40424:23:0;;11611:2:1;40424:23:0::1;::::0;::::1;11593:21:1::0;11650:1;11630:18;;;11623:29;-1:-1:-1;;;11668:18:1;;;11661:33;11711:18;;40424:23:0::1;11409:326:1::0;40424:23:0::1;40296:159;;40261:194::o:0;30711:162::-;30837:28;30847:4;30853:2;30857:7;30837:9;:28::i;25752:823::-;25841:7;25877:16;25887:5;25877:9;:16::i;:::-;25869:5;:24;25861:71;;;;-1:-1:-1;;;25861:71:0;;8209:2:1;25861:71:0;;;8191:21:1;8248:2;8228:18;;;8221:30;8287:34;8267:18;;;8260:62;-1:-1:-1;;;8338:18:1;;;8331:32;8380:19;;25861:71:0;8007:398:1;25861:71:0;25943:22;25168:12;;;25943:22;;26075:426;26099:14;26095:1;:18;26075:426;;;26135:31;26169:14;;;:11;:14;;;;;;;;;26135:48;;;;;;;;;-1:-1:-1;;;;;26135:48:0;;;;;-1:-1:-1;;;26135:48:0;;;;;;;;;;;;26202:28;26198:103;;26271:14;;;-1:-1:-1;26198:103:0;26340:5;-1:-1:-1;;;;;26319:26:0;:17;-1:-1:-1;;;;;26319:26:0;;26315:175;;;26385:5;26370:11;:20;26366:77;;;-1:-1:-1;26422:1:0;-1:-1:-1;26415:8:0;;-1:-1:-1;;;26415:8:0;26366:77;26461:13;;;;:::i;:::-;;;;26315:175;-1:-1:-1;26115:3:0;;;;:::i;:::-;;;;26075:426;;;-1:-1:-1;26511:56:0;;-1:-1:-1;;;26511:56:0;;16996:2:1;26511:56:0;;;16978:21:1;17035:2;17015:18;;;17008:30;17074:34;17054:18;;;17047:62;-1:-1:-1;;;17125:18:1;;;17118:44;17179:19;;26511:56:0;16794:410:1;30944:177:0;31074:39;31091:4;31097:2;31101:7;31074:39;;;;;;;;;;;;:16;:39::i;25265:187::-;25332:7;25168:12;;25360:5;:21;25352:69;;;;-1:-1:-1;;;25352:69:0;;9779:2:1;25352:69:0;;;9761:21:1;9818:2;9798:18;;;9791:30;9857:34;9837:18;;;9830:62;-1:-1:-1;;;9908:18:1;;;9901:33;9951:19;;25352:69:0;9577:399:1;25352:69:0;-1:-1:-1;25439:5:0;25265:187::o;28083:124::-;28147:7;28174:20;28186:7;28174:11;:20::i;:::-;:25;;28083:124;-1:-1:-1;;28083:124:0:o;38724:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27083:221::-;27147:7;-1:-1:-1;;;;;27175:19:0;;27167:75;;;;-1:-1:-1;;;27167:75:0;;12368:2:1;27167:75:0;;;12350:21:1;12407:2;12387:18;;;12380:30;12446:34;12426:18;;;12419:62;-1:-1:-1;;;12497:18:1;;;12490:41;12548:19;;27167:75:0;12166:407:1;27167:75:0;-1:-1:-1;;;;;;27268:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27268:27:0;;27083:221::o;2626:103::-;2048:6;;-1:-1:-1;;;;;2048:6:0;796:10;2195:23;2187:68;;;;-1:-1:-1;;;2187:68:0;;;;;;;:::i;:::-;2691:30:::1;2718:1;2691:18;:30::i;28443:104::-:0;28499:13;28532:7;28525:14;;;;;:::i;30121:288::-;-1:-1:-1;;;;;30216:24:0;;796:10;30216:24;;30208:63;;;;-1:-1:-1;;;30208:63:0;;14235:2:1;30208:63:0;;;14217:21:1;14274:2;14254:18;;;14247:30;14313:28;14293:18;;;14286:56;14359:18;;30208:63:0;14033:350:1;30208:63:0;796:10;30284:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30284:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30284:53:0;;;;;;;;;;30353:48;;7731:41:1;;;30284:42:0;;796:10;30353:48;;7704:18:1;30353:48:0;;;;;;;30121:288;;:::o;41084:111::-;2048:6;;-1:-1:-1;;;;;2048:6:0;796:10;2195:23;2187:68;;;;-1:-1:-1;;;2187:68:0;;;;;;;:::i;:::-;41161:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;31192:355::-:0;31351:28;31361:4;31367:2;31371:7;31351:9;:28::i;:::-;31412:48;31435:4;31441:2;31445:7;31454:5;31412:22;:48::i;:::-;31390:149;;;;-1:-1:-1;;;31390:149:0;;;;;;;:::i;:::-;31192:355;;;;:::o;40561:311::-;2048:6;;-1:-1:-1;;;;;2048:6:0;796:10;2195:23;2187:68;;;;-1:-1:-1;;;2187:68:0;;;;;;;:::i;:::-;40624:15:::1;25168:12:::0;796:10;;40687:23:::1;::::0;40703:7;;40687:23:::1;:::i;:::-;39081:4;40673:37;;40665:70;;;::::0;-1:-1:-1;;;40665:70:0;;10589:2:1;40665:70:0::1;::::0;::::1;10571:21:1::0;10628:2;10608:18;;;10601:30;-1:-1:-1;;;10647:18:1;;;10640:50;10707:18;;40665:70:0::1;10387:344:1::0;40665:70:0::1;40764:1;40754:7;:11;40746:27;;;::::0;-1:-1:-1;;;40746:27:0;;11280:2:1;40746:27:0::1;::::0;::::1;11262:21:1::0;11319:1;11299:18;;;11292:29;-1:-1:-1;;;11337:18:1;;;11330:33;11380:18;;40746:27:0::1;11078:326:1::0;40746:27:0::1;40792:9;-1:-1:-1::0;;;;;40792:20:0;::::1;;40784:42;;;::::0;-1:-1:-1;;;40784:42:0;;13130:2:1;40784:42:0::1;::::0;::::1;13112:21:1::0;13169:1;13149:18;;;13142:29;-1:-1:-1;;;13187:18:1;;;13180:39;13236:18;;40784:42:0::1;12928:332:1::0;40784:42:0::1;40837:27;40847:7;40856;40837:9;:27::i;41203:362::-:0;41269:13;41303:17;41311:8;31859:4;31893:12;-1:-1:-1;31883:22:0;31802:111;41303:17;41295:51;;;;-1:-1:-1;;;41295:51:0;;12780:2:1;41295:51:0;;;12762:21:1;12819:2;12799:18;;;12792:30;-1:-1:-1;;;12838:18:1;;;12831:51;12899:18;;41295:51:0;12578:345:1;41295:51:0;41388:1;41370:7;41364:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;41446:7;41470:26;41487:8;41470:16;:26::i;:::-;41513:13;;;;;;;;;;;;;-1:-1:-1;;;41513:13:0;;;41413:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41357:200;41203:362;-1:-1:-1;;41203:362:0:o;38811:30::-;;;;;;;:::i;39808:445::-;40106:28;;-1:-1:-1;;;40106:28:0;;-1:-1:-1;;;;;7054:32:1;;;40106:28:0;;;7036:51:1;39933:4:0;;38948:42;;40098:49;;;38948:42;;40106:21;;7009:18:1;;40106:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;40098:49:0;;40094:93;;;40171:4;40164:11;;;;;40094:93;-1:-1:-1;;;;;30601:25:0;;;30577:4;30601:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40206:39;40199:46;39808:445;-1:-1:-1;;;;39808:445:0:o;2884:201::-;2048:6;;-1:-1:-1;;;;;2048:6:0;796:10;2195:23;2187:68;;;;-1:-1:-1;;;2187:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2973:22:0;::::1;2965:73;;;::::0;-1:-1:-1;;;2965:73:0;;8961:2:1;2965:73:0::1;::::0;::::1;8943:21:1::0;9000:2;8980:18;;;8973:30;9039:34;9019:18;;;9012:62;-1:-1:-1;;;9090:18:1;;;9083:36;9136:19;;2965:73:0::1;8759:402:1::0;2965:73:0::1;3049:28;3068:8;3049:18;:28::i;:::-;2884:201:::0;:::o;40972:104::-;2048:6;;-1:-1:-1;;;;;2048:6:0;796:10;2195:23;2187:68;;;;-1:-1:-1;;;2187:68:0;;;;;;;:::i;:::-;41050:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;40880:84::-:0;2048:6;;-1:-1:-1;;;;;2048:6:0;796:10;2195:23;2187:68;;;;-1:-1:-1;;;2187:68:0;;;;;;;:::i;:::-;40941:6:::1;:15:::0;;-1:-1:-1;;40941:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40880:84::o;35846:196::-;35961:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35961:29:0;-1:-1:-1;;;;;35961:29:0;;;;;;;;;36006:28;;35961:24;;36006:28;;;;;;;35846:196;;;:::o;31921:104::-;31990:27;32000:2;32004:8;31990:27;;;;;;;;;;;;:9;:27::i;33945:1783::-;34060:35;34098:20;34110:7;34098:11;:20::i;:::-;34173:18;;34060:58;;-1:-1:-1;34131:22:0;;-1:-1:-1;;;;;34157:34:0;796:10;-1:-1:-1;;;;;34157:34:0;;:87;;;-1:-1:-1;796:10:0;34208:20;34220:7;34208:11;:20::i;:::-;-1:-1:-1;;;;;34208:36:0;;34157:87;:154;;;-1:-1:-1;34278:18:0;;34261:50;;796:10;39808:445;:::i;34261:50::-;34131:181;;34333:17;34325:80;;;;-1:-1:-1;;;34325:80:0;;14590:2:1;34325:80:0;;;14572:21:1;14629:2;14609:18;;;14602:30;14668:34;14648:18;;;14641:62;-1:-1:-1;;;14719:18:1;;;14712:48;14777:19;;34325:80:0;14388:414:1;34325:80:0;34448:4;-1:-1:-1;;;;;34426:26:0;:13;:18;;;-1:-1:-1;;;;;34426:26:0;;34418:77;;;;-1:-1:-1;;;34418:77:0;;13467:2:1;34418:77:0;;;13449:21:1;13506:2;13486:18;;;13479:30;13545:34;13525:18;;;13518:62;-1:-1:-1;;;13596:18:1;;;13589:36;13642:19;;34418:77:0;13265:402:1;34418:77:0;-1:-1:-1;;;;;34514:16:0;;34506:66;;;;-1:-1:-1;;;34506:66:0;;10183:2:1;34506:66:0;;;10165:21:1;10222:2;10202:18;;;10195:30;10261:34;10241:18;;;10234:62;-1:-1:-1;;;10312:18:1;;;10305:35;10357:19;;34506:66:0;9981:401:1;34506:66:0;34693:49;34710:1;34714:7;34723:13;:18;;;34693:8;:49::i;:::-;-1:-1:-1;;;;;34947:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;34947:31:0;;;-1:-1:-1;;;;;34947:31:0;;;-1:-1:-1;;34947:31:0;;;;;;;34993:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34993:29:0;;;;;;;;;;;;;35069:43;;;;;;;;;;35095:15;35069:43;;;;;;;;;;35046:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;35046:66:0;;;;;;;-1:-1:-1;;;35046:66:0;;;;;;;;;;;;34947:18;35374:11;;35046:20;;35374:11;:::i;:::-;35441:1;35400:24;;;:11;:24;;;;;:29;35352:33;;-1:-1:-1;;;;;;35400:29:0;35396:227;;35464:20;35472:11;31859:4;31893:12;-1:-1:-1;31883:22:0;31802:111;35464:20;35460:152;;;35532:64;;;;;;;;35547:18;;-1:-1:-1;;;;;35532:64:0;;;;;;35567:28;;;;35532:64;;;;;;;;;;-1:-1:-1;35505:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;35505:91:0;-1:-1:-1;;;;;;35505:91:0;;;;;;;;;;;;35460:152;35659:7;35655:2;-1:-1:-1;;;;;35640:27:0;35649:4;-1:-1:-1;;;;;35640:27:0;;;;;;;;;;;35678:42;34049:1679;;;33945:1783;;;:::o;27549:472::-;-1:-1:-1;;;;;;;;;;;;;;;;;27652:16:0;27660:7;31859:4;31893:12;-1:-1:-1;31883:22:0;31802:111;27652:16;27644:71;;;;-1:-1:-1;;;27644:71:0;;9368:2:1;27644:71:0;;;9350:21:1;9407:2;9387:18;;;9380:30;9446:34;9426:18;;;9419:62;-1:-1:-1;;;9497:18:1;;;9490:40;9547:19;;27644:71:0;9166:406:1;27644:71:0;27748:7;27728:216;27782:31;27816:17;;;:11;:17;;;;;;;;;27782:51;;;;;;;;;-1:-1:-1;;;;;27782:51:0;;;;;-1:-1:-1;;;27782:51:0;;;;;;;;;;;;27852:28;27848:85;;27908:9;27549:472;-1:-1:-1;;;27549:472:0:o;27848:85::-;-1:-1:-1;27759:6:0;;;;:::i;:::-;;;;27728:216;;3245:191;3338:6;;;-1:-1:-1;;;;;3355:17:0;;;-1:-1:-1;;;;;;3355:17:0;;;;;;;3388:40;;3338:6;;;3355:17;3338:6;;3388:40;;3319:16;;3388:40;3308:128;3245:191;:::o;36607:804::-;36762:4;-1:-1:-1;;;;;36783:13:0;;15295:20;15343:8;36779:625;;36819:72;;-1:-1:-1;;;36819:72:0;;-1:-1:-1;;;;;36819:36:0;;;;;:72;;796:10;;36870:4;;36876:7;;36885:5;;36819:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36819:72:0;;;;;;;;-1:-1:-1;;36819:72:0;;;;;;;;;;;;:::i;:::-;;;36815:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37065:13:0;;37061:273;;37108:61;;-1:-1:-1;;;37108:61:0;;;;;;;:::i;37061:273::-;37284:6;37278:13;37269:6;37265:2;37261:15;37254:38;36815:534;-1:-1:-1;;;;;;36942:55:0;-1:-1:-1;;;36942:55:0;;-1:-1:-1;36935:62:0;;36779:625;-1:-1:-1;37388:4:0;36607:804;;;;;;:::o;3793:723::-;3849:13;4070:10;4066:53;;-1:-1:-1;;4097:10:0;;;;;;;;;;;;-1:-1:-1;;;4097:10:0;;;;;3793:723::o;4066:53::-;4144:5;4129:12;4185:78;4192:9;;4185:78;;4218:8;;;;:::i;:::-;;-1:-1:-1;4241:10:0;;-1:-1:-1;4249:2:0;4241:10;;:::i;:::-;;;4185:78;;;4273:19;4305:6;4295:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4295:17:0;;4273:39;;4323:154;4330:10;;4323:154;;4357:11;4367:1;4357:11;;:::i;:::-;;-1:-1:-1;4426:10:0;4434:2;4426:5;:10;:::i;:::-;4413:24;;:2;:24;:::i;:::-;4400:39;;4383:6;4390;4383:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4383:56:0;;;;;;;;-1:-1:-1;4454:11:0;4463:2;4454:11;;:::i;:::-;;;4323:154;;32302:1389;32425:20;32448:12;-1:-1:-1;;;;;32479:16:0;;32471:62;;;;-1:-1:-1;;;32471:62:0;;16594:2:1;32471:62:0;;;16576:21:1;16633:2;16613:18;;;16606:30;16672:34;16652:18;;;16645:62;-1:-1:-1;;;16723:18:1;;;16716:31;16764:19;;32471:62:0;16392:397:1;32471:62:0;32678:21;32686:12;31859:4;31893:12;-1:-1:-1;31883:22:0;31802:111;32678:21;32677:22;32669:64;;;;-1:-1:-1;;;32669:64:0;;16236:2:1;32669:64:0;;;16218:21:1;16275:2;16255:18;;;16248:30;16314:31;16294:18;;;16287:59;16363:18;;32669:64:0;16034:353:1;32669:64:0;32763:1;32752:8;:12;32744:60;;;;-1:-1:-1;;;32744:60:0;;15412:2:1;32744:60:0;;;15394:21:1;15451:2;15431:18;;;15424:30;15490:34;15470:18;;;15463:62;-1:-1:-1;;;15541:18:1;;;15534:33;15584:19;;32744:60:0;15210:399:1;32744:60:0;-1:-1:-1;;;;;32924:16:0;;32891:30;32924:16;;;:12;:16;;;;;;;;;32891:49;;;;;;;;;-1:-1:-1;;;;;32891:49:0;;;;;-1:-1:-1;;;32891:49:0;;;;;;;;;;;32970:135;;;;;;;;32996:19;;32891:49;;32970:135;;;32996:39;;33026:8;;32996:39;:::i;:::-;-1:-1:-1;;;;;32970:135:0;;;;;33085:8;33050:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;32970:135:0;;;;;;-1:-1:-1;;;;;32951:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;32951:154:0;;;;;;;;;;;;33144:43;;;;;;;;;;;33170:15;33144:43;;;;;;;;33116:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;33116:71:0;-1:-1:-1;;;;;;33116:71:0;;;;;;;;;;;;;;;;;;33128:12;;33248:325;33272:8;33268:1;:12;33248:325;;;33307:38;;33332:12;;-1:-1:-1;;;;;33307:38:0;;;33324:1;;33307:38;;33324:1;;33307:38;33386:59;33417:1;33421:2;33425:12;33439:5;33386:22;:59::i;:::-;33360:172;;;;-1:-1:-1;;;33360:172:0;;;;;;;:::i;:::-;33547:14;;;;:::i;:::-;;;;33282:3;;;;;:::i;:::-;;;;33248:325;;;-1:-1:-1;33585:12:0;:27;;;33623:60;31192: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:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;:::-;1051:5;815:247;-1:-1:-1;;;815:247:1:o;1067:388::-;1135:6;1143;1196:2;1184:9;1175:7;1171:23;1167:32;1164:52;;;1212:1;1209;1202:12;1164:52;1251:9;1238:23;1270:31;1295:5;1270:31;:::i;:::-;1320:5;-1:-1:-1;1377:2:1;1362:18;;1349:32;1390:33;1349:32;1390:33;:::i;:::-;1442:7;1432:17;;;1067:388;;;;;:::o;1460:456::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1661:9;1648:23;1680:31;1705:5;1680:31;:::i;:::-;1730:5;-1:-1:-1;1787:2:1;1772:18;;1759:32;1800:33;1759:32;1800:33;:::i;:::-;1460:456;;1852:7;;-1:-1:-1;;;1906:2:1;1891:18;;;;1878:32;;1460:456::o;1921:794::-;2016:6;2024;2032;2040;2093:3;2081:9;2072:7;2068:23;2064:33;2061:53;;;2110:1;2107;2100:12;2061:53;2149:9;2136:23;2168:31;2193:5;2168:31;:::i;:::-;2218:5;-1:-1:-1;2275:2:1;2260:18;;2247:32;2288:33;2247:32;2288:33;:::i;:::-;2340:7;-1:-1:-1;2394:2:1;2379:18;;2366:32;;-1:-1:-1;2449:2:1;2434:18;;2421:32;2476:18;2465:30;;2462:50;;;2508:1;2505;2498:12;2462:50;2531:22;;2584:4;2576:13;;2572:27;-1:-1:-1;2562:55:1;;2613:1;2610;2603:12;2562:55;2636:73;2701:7;2696:2;2683:16;2678:2;2674;2670:11;2636:73;:::i;:::-;2626:83;;;1921:794;;;;;;;:::o;2720:315::-;2785:6;2793;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:31;2945:5;2920:31;:::i;:::-;2970:5;-1:-1:-1;2994:35:1;3025:2;3010:18;;2994:35;:::i;:::-;2984:45;;2720:315;;;;;:::o;3040:::-;3108:6;3116;3169:2;3157:9;3148:7;3144:23;3140:32;3137:52;;;3185:1;3182;3175:12;3137:52;3224:9;3211:23;3243:31;3268:5;3243:31;:::i;:::-;3293:5;3345:2;3330:18;;;;3317:32;;-1:-1:-1;;;3040:315:1:o;3360:180::-;3416:6;3469:2;3457:9;3448:7;3444:23;3440:32;3437:52;;;3485:1;3482;3475:12;3437:52;3508:26;3524:9;3508:26;:::i;3545:245::-;3603:6;3656:2;3644:9;3635:7;3631:23;3627:32;3624:52;;;3672:1;3669;3662:12;3624:52;3711:9;3698:23;3730:30;3754:5;3730:30;:::i;3795:249::-;3864:6;3917:2;3905:9;3896:7;3892:23;3888:32;3885:52;;;3933:1;3930;3923:12;3885:52;3965:9;3959:16;3984:30;4008:5;3984:30;:::i;4049:280::-;4148:6;4201:2;4189:9;4180:7;4176:23;4172:32;4169:52;;;4217:1;4214;4207:12;4169:52;4249:9;4243:16;4268:31;4293:5;4268:31;:::i;4334:450::-;4403:6;4456:2;4444:9;4435:7;4431:23;4427:32;4424:52;;;4472:1;4469;4462:12;4424:52;4512:9;4499:23;4545:18;4537:6;4534:30;4531:50;;;4577:1;4574;4567:12;4531:50;4600:22;;4653:4;4645:13;;4641:27;-1:-1:-1;4631:55:1;;4682:1;4679;4672:12;4631:55;4705:73;4770:7;4765:2;4752:16;4747:2;4743;4739:11;4705:73;:::i;4789:180::-;4848:6;4901:2;4889:9;4880:7;4876:23;4872:32;4869:52;;;4917:1;4914;4907:12;4869:52;-1:-1:-1;4940:23:1;;4789:180;-1:-1:-1;4789:180:1:o;4974:257::-;5015:3;5053:5;5047:12;5080:6;5075:3;5068:19;5096:63;5152:6;5145:4;5140:3;5136:14;5129:4;5122:5;5118:16;5096:63;:::i;:::-;5213:2;5192:15;-1:-1:-1;;5188:29:1;5179:39;;;;5220:4;5175:50;;4974:257;-1:-1:-1;;4974:257:1:o;5236:185::-;5278:3;5316:5;5310:12;5331:52;5376:6;5371:3;5364:4;5357:5;5353:16;5331:52;:::i;:::-;5399:16;;;;;5236:185;-1:-1:-1;;5236:185:1:o;5426:1249::-;5650:3;5679:1;5712:6;5706:13;5742:3;5764:1;5792:9;5788:2;5784:18;5774:28;;5852:2;5841:9;5837:18;5874;5864:61;;5918:4;5910:6;5906:17;5896:27;;5864:61;5944:2;5992;5984:6;5981:14;5961:18;5958:38;5955:165;;;-1:-1:-1;;;6019:33:1;;6075:4;6072:1;6065:15;6105:4;6026:3;6093:17;5955:165;6136:18;6163:104;;;;6281:1;6276:320;;;;6129:467;;6163:104;-1:-1:-1;;6196:24:1;;6184:37;;6241:16;;;;-1:-1:-1;6163:104:1;;6276:320;18650:1;18643:14;;;18687:4;18674:18;;6371:1;6385:165;6399:6;6396:1;6393:13;6385:165;;;6477:14;;6464:11;;;6457:35;6520:16;;;;6414:10;;6385:165;;;6389:3;;6579:6;6574:3;6570:16;6563:23;;6129:467;;;;;;;6612:57;6638:30;6664:3;6656:6;6638:30;:::i;:::-;6630:6;6612:57;:::i;:::-;6605:64;5426:1249;-1:-1:-1;;;;;;5426:1249:1:o;7098:488::-;-1:-1:-1;;;;;7367:15:1;;;7349:34;;7419:15;;7414:2;7399:18;;7392:43;7466:2;7451:18;;7444:34;;;7514:3;7509:2;7494:18;;7487:31;;;7292:4;;7535:45;;7560:19;;7552:6;7535:45;:::i;7783:219::-;7932:2;7921:9;7914:21;7895:4;7952:44;7992:2;7981:9;7977:18;7969:6;7952:44;:::i;13672:356::-;13874:2;13856:21;;;13893:18;;;13886:30;13952:34;13947:2;13932:18;;13925:62;14019:2;14004:18;;13672:356::o;15614:415::-;15816:2;15798:21;;;15855:2;15835:18;;;15828:30;15894:34;15889:2;15874:18;;15867:62;-1:-1:-1;;;15960:2:1;15945:18;;15938:49;16019:3;16004:19;;15614:415::o;18703:253::-;18743:3;-1:-1:-1;;;;;18832:2:1;18829:1;18825:10;18862:2;18859:1;18855:10;18893:3;18889:2;18885:12;18880:3;18877:21;18874:47;;;18901:18;;:::i;:::-;18937:13;;18703:253;-1:-1:-1;;;;18703:253:1:o;18961:128::-;19001:3;19032:1;19028:6;19025:1;19022:13;19019:39;;;19038:18;;:::i;:::-;-1:-1:-1;19074:9:1;;18961:128::o;19094:120::-;19134:1;19160;19150:35;;19165:18;;:::i;:::-;-1:-1:-1;19199:9:1;;19094:120::o;19219:125::-;19259:4;19287:1;19284;19281:8;19278:34;;;19292:18;;:::i;:::-;-1:-1:-1;19329:9:1;;19219:125::o;19349:258::-;19421:1;19431:113;19445:6;19442:1;19439:13;19431:113;;;19521:11;;;19515:18;19502:11;;;19495:39;19467:2;19460:10;19431:113;;;19562:6;19559:1;19556:13;19553:48;;;-1:-1:-1;;19597:1:1;19579:16;;19572:27;19349:258::o;19612:136::-;19651:3;19679:5;19669:39;;19688:18;;:::i;:::-;-1:-1:-1;;;19724:18:1;;19612:136::o;19753:380::-;19832:1;19828:12;;;;19875;;;19896:61;;19950:4;19942:6;19938:17;19928:27;;19896:61;20003:2;19995:6;19992:14;19972:18;19969:38;19966:161;;;20049:10;20044:3;20040:20;20037:1;20030:31;20084:4;20081:1;20074:15;20112:4;20109:1;20102:15;19966:161;;19753:380;;;:::o;20138:135::-;20177:3;-1:-1:-1;;20198:17:1;;20195:43;;;20218:18;;:::i;:::-;-1:-1:-1;20265:1:1;20254:13;;20138:135::o;20278:112::-;20310:1;20336;20326:35;;20341:18;;:::i;:::-;-1:-1:-1;20375:9:1;;20278:112::o;20395:127::-;20456:10;20451:3;20447:20;20444:1;20437:31;20487:4;20484:1;20477:15;20511:4;20508:1;20501:15;20527:127;20588:10;20583:3;20579:20;20576:1;20569:31;20619:4;20616:1;20609:15;20643:4;20640:1;20633:15;20659:127;20720:10;20715:3;20711:20;20708:1;20701:31;20751:4;20748:1;20741:15;20775:4;20772:1;20765:15;20791:127;20852:10;20847:3;20843:20;20840:1;20833:31;20883:4;20880:1;20873:15;20907:4;20904:1;20897:15;20923:131;-1:-1:-1;;;;;20998:31:1;;20988:42;;20978:70;;21044:1;21041;21034:12;21059:131;-1:-1:-1;;;;;;21133:32:1;;21123:43;;21113:71;;21180:1;21177;21170:12

Swarm Source

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