ETH Price: $3,105.94 (+1.21%)
Gas: 6 Gwei

Token

EtherLords (ETHERLORD)
 

Overview

Max Total Supply

5,000 ETHERLORD

Holders

3,665

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bokodozogobofopojo.eth
Balance
10 ETHERLORD
0x71c5315068d2Ef419c5B39633d94603aAb5C0249
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Fully on-chain art generation and metadata. 5000 Ξther Lords immortalized on the Ethereum blockchain. Lordship shall be bestowed upon those bold enough to confront the darkness. Ξther Lords is a noble journey through technology and imagination.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EtherLords

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// Sources flattened with hardhat v2.9.5 https://hardhat.org

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

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

pragma solidity ^0.8.0;

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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

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


// File erc721a/contracts/[email protected]


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}


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


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

pragma solidity ^0.8.0;

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


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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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


// File erc721a/contracts/[email protected]


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;






/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

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

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

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

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

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

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

        string memory baseURI = _baseURI();
        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);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

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

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

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

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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


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


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


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


// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}


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


// OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        virtual
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File contracts/EtherLords.sol


/*

     ***** **                *                                   ***** *                                    **
  ******  **** *     *     **                                 ******  *                                      **
 **   *  * ****     **     **                                **   *  *                                       **
*    *  *   **      **     **                               *    *  *                                        **
    *  *          ******** **                  ***  ****        *  *              ****    ***  ****          **      ****
   ** **         ********  **  ***      ***     **** **** *    ** **             * ***  *  **** **** *   *** **     * **** *
   ** **            **     ** * ***    * ***     **   ****     ** **            *   ****    **   ****   *********  **  ****
   ** ******        **     ***   ***  *   ***    **            ** **           **    **     **         **   ****  ****
   ** *****         **     **     ** **    ***   **            ** **           **    **     **         **    **     ***
   ** **            **     **     ** ********    **            ** **           **    **     **         **    **       ***
   *  **            **     **     ** *******     **            *  **           **    **     **         **    **         ***
      *             **     **     ** **          **               *            **    **     **         **    **    ****  **
  ****         *    **     **     ** ****    *   ***          ****           *  ******      ***        **    **   * **** *
 *  ***********      **    **     **  *******     ***        *  *************    ****        ***        *****        ****
*     ******                **    **   *****                *     *********                              ***
*                                 *                         *
 **                              *                           **
                                *
                               *
*/
pragma solidity ^0.8.4;

interface IRenderContract {
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

contract EtherLords is ERC721A, ERC2981, Ownable {
    using Strings for uint256;

    uint256 private _maxLords = 5000;
    mapping(address => bool) private _granted;

    constructor(string memory baseURI) ERC721A("EtherLords", "ETHERLORD") {
        _baseTokenURI = baseURI;
    }

    function soItBegins() external onlyOwner {
        require(totalSupply() == 0, "It has already begun.");
        _safeMint(owner(), 100);
    }

    function grantLordship() external payable {
        require(totalSupply() > 0,          "The time will soon come.");
        require(tx.origin == msg.sender,    "Contracts shall be denied.");
        require(totalSupply() < _maxLords,  "All lordships have been granted.");
        require(!_granted[msg.sender],      "Your lordship has already been granted.");
        _granted[msg.sender] = true;
        _safeMint(msg.sender, 1);
    }

    string private _baseTokenURI;

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

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

    IRenderContract public _renderContract;
    bool public _renderContractLocked;

    function setRenderContract(IRenderContract addr) external onlyOwner {
        require(!_renderContractLocked, "There is no turning back.");
        _renderContract = addr;
    }

    function lockRenderContract(bool confirm) external onlyOwner {
        require(confirm == true, "You must give the order, my Lord.");
        _renderContractLocked = true;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "The Lord you seek cannot be found.");
        if (address(_renderContract) != address(0)) {
            return _renderContract.tokenURI(tokenId);
        }
        return super.tokenURI(tokenId);
    }

    function setRoyaltyInfo(address receiver, uint96 feeBasisPoints) external onlyOwner {
        _setDefaultRoyalty(receiver, feeBasisPoints);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721A, ERC2981) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(owner()).call{value: address(this).balance}("");
        require(success, "Failure to execute.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_renderContract","outputs":[{"internalType":"contract IRenderContract","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renderContractLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"grantLordship","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"confirm","type":"bool"}],"name":"lockRenderContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IRenderContract","name":"addr","type":"address"}],"name":"setRenderContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeBasisPoints","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soItBegins","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611388600b553480156200001757600080fd5b50604051620046703803806200467083398181016040528101906200003d919062000328565b6040518060400160405280600a81526020017f45746865724c6f726473000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f45544845524c4f524400000000000000000000000000000000000000000000008152508160029080519060200190620000c192919062000206565b508060039080519060200190620000da92919062000206565b50620000eb6200013360201b60201c565b600081905550505062000113620001076200013860201b60201c565b6200014060201b60201c565b80600d90805190602001906200012b92919062000206565b5050620004dd565b600090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002149062000402565b90600052602060002090601f01602090048101928262000238576000855562000284565b82601f106200025357805160ff191683800117855562000284565b8280016001018555821562000284579182015b828111156200028357825182559160200191906001019062000266565b5b50905062000293919062000297565b5090565b5b80821115620002b257600081600090555060010162000298565b5090565b6000620002cd620002c78462000396565b6200036d565b905082815260208101848484011115620002e657600080fd5b620002f3848285620003cc565b509392505050565b600082601f8301126200030d57600080fd5b81516200031f848260208601620002b6565b91505092915050565b6000602082840312156200033b57600080fd5b600082015167ffffffffffffffff8111156200035657600080fd5b6200036484828501620002fb565b91505092915050565b6000620003796200038c565b905062000387828262000438565b919050565b6000604051905090565b600067ffffffffffffffff821115620003b457620003b36200049d565b5b620003bf82620004cc565b9050602081019050919050565b60005b83811015620003ec578082015181840152602081019050620003cf565b83811115620003fc576000848401525b50505050565b600060028204905060018216806200041b57607f821691505b602082108114156200043257620004316200046e565b5b50919050565b6200044382620004cc565b810181811067ffffffffffffffff821117156200046557620004646200049d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61418380620004ed6000396000f3fe60806040526004361061019c5760003560e01c806368f5ea03116100ec5780638da5cb5b1161008a578063b88d4fde11610064578063b88d4fde1461056c578063c87b56dd14610595578063e985e9c5146105d2578063f2fde38b1461060f5761019c565b80638da5cb5b146104ed57806395d89b4114610518578063a22cb465146105435761019c565b80638231bc82116100c65780638231bc821461045957806382cffc1d146104825780638415d2131461049957806388fd7232146104c25761019c565b806368f5ea03146103da57806370a0823114610405578063715018a6146104425761019c565b806318160ddd116101595780633ccfd60b116101335780633ccfd60b1461033457806342842e0e1461034b57806355f804b3146103745780636352211e1461039d5761019c565b806318160ddd146102a257806323b872dd146102cd5780632a55205a146102f65761019c565b80630196dc0b146101a157806301ffc9a7146101ab57806302fa7c47146101e857806306fdde0314610211578063081812fc1461023c578063095ea7b314610279575b600080fd5b6101a9610638565b005b3480156101b757600080fd5b506101d260048036038101906101cd919061324a565b61082d565b6040516101df9190613742565b60405180910390f35b3480156101f457600080fd5b5061020f600480360381019061020a91906131e5565b61083f565b005b34801561021d57600080fd5b506102266108c9565b6040516102339190613778565b60405180910390f35b34801561024857600080fd5b50610263600480360381019061025e919061334b565b61095b565b60405161027091906136b2565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b91906131a9565b6109d7565b005b3480156102ae57600080fd5b506102b7610adc565b6040516102c4919061393a565b60405180910390f35b3480156102d957600080fd5b506102f460048036038101906102ef91906130a3565b610af3565b005b34801561030257600080fd5b5061031d60048036038101906103189190613374565b610b03565b60405161032b929190613719565b60405180910390f35b34801561034057600080fd5b50610349610cee565b005b34801561035757600080fd5b50610372600480360381019061036d91906130a3565b610e20565b005b34801561038057600080fd5b5061039b600480360381019061039691906132c5565b610e40565b005b3480156103a957600080fd5b506103c460048036038101906103bf919061334b565b610ed2565b6040516103d191906136b2565b60405180910390f35b3480156103e657600080fd5b506103ef610ee8565b6040516103fc919061375d565b60405180910390f35b34801561041157600080fd5b5061042c6004803603810190610427919061303e565b610f0e565b604051610439919061393a565b60405180910390f35b34801561044e57600080fd5b50610457610fde565b005b34801561046557600080fd5b50610480600480360381019061047b9190613221565b611066565b005b34801561048e57600080fd5b50610497611147565b005b3480156104a557600080fd5b506104c060048036038101906104bb919061329c565b611221565b005b3480156104ce57600080fd5b506104d7611331565b6040516104e49190613742565b60405180910390f35b3480156104f957600080fd5b50610502611344565b60405161050f91906136b2565b60405180910390f35b34801561052457600080fd5b5061052d61136e565b60405161053a9190613778565b60405180910390f35b34801561054f57600080fd5b5061056a6004803603810190610565919061316d565b611400565b005b34801561057857600080fd5b50610593600480360381019061058e91906130f2565b611578565b005b3480156105a157600080fd5b506105bc60048036038101906105b7919061334b565b6115f0565b6040516105c99190613778565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f49190613067565b611758565b6040516106069190613742565b60405180910390f35b34801561061b57600080fd5b506106366004803603810190610631919061303e565b6117ec565b005b6000610642610adc565b11610682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610679906137ba565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146106f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e79061383a565b60405180910390fd5b600b546106fb610adc565b1061073b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610732906138fa565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156107c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bf906137fa565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061082b3360016118e4565b565b600061083882611902565b9050919050565b61084761197c565b73ffffffffffffffffffffffffffffffffffffffff16610865611344565b73ffffffffffffffffffffffffffffffffffffffff16146108bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b29061387a565b60405180910390fd5b6108c58282611984565b5050565b6060600280546108d890613c43565b80601f016020809104026020016040519081016040528092919081815260200182805461090490613c43565b80156109515780601f1061092657610100808354040283529160200191610951565b820191906000526020600020905b81548152906001019060200180831161093457829003601f168201915b5050505050905090565b600061096682611b1a565b61099c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e282610ed2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a4a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a6961197c565b73ffffffffffffffffffffffffffffffffffffffff1614610acc57610a9581610a9061197c565b611758565b610acb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610ad7838383611b68565b505050565b6000610ae6611c1a565b6001546000540303905090565b610afe838383611c1f565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610c995760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610ca36120d5565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610ccf9190613ab1565b610cd99190613a80565b90508160000151819350935050509250929050565b610cf661197c565b73ffffffffffffffffffffffffffffffffffffffff16610d14611344565b73ffffffffffffffffffffffffffffffffffffffff1614610d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d619061387a565b60405180910390fd5b6000610d74611344565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d979061369d565b60006040518083038185875af1925050503d8060008114610dd4576040519150601f19603f3d011682016040523d82523d6000602084013e610dd9565b606091505b5050905080610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e149061389a565b60405180910390fd5b50565b610e3b83838360405180602001604052806000815250611578565b505050565b610e4861197c565b73ffffffffffffffffffffffffffffffffffffffff16610e66611344565b73ffffffffffffffffffffffffffffffffffffffff1614610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb39061387a565b60405180910390fd5b8181600d9190610ecd929190612dab565b505050565b6000610edd826120df565b600001519050919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f76576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fe661197c565b73ffffffffffffffffffffffffffffffffffffffff16611004611344565b73ffffffffffffffffffffffffffffffffffffffff161461105a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110519061387a565b60405180910390fd5b611064600061236a565b565b61106e61197c565b73ffffffffffffffffffffffffffffffffffffffff1661108c611344565b73ffffffffffffffffffffffffffffffffffffffff16146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d99061387a565b60405180910390fd5b6001151581151514611129576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111209061379a565b60405180910390fd5b6001600e60146101000a81548160ff02191690831515021790555050565b61114f61197c565b73ffffffffffffffffffffffffffffffffffffffff1661116d611344565b73ffffffffffffffffffffffffffffffffffffffff16146111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba9061387a565b60405180910390fd5b60006111cd610adc565b1461120d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611204906138ba565b60405180910390fd5b61121f611218611344565b60646118e4565b565b61122961197c565b73ffffffffffffffffffffffffffffffffffffffff16611247611344565b73ffffffffffffffffffffffffffffffffffffffff161461129d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112949061387a565b60405180910390fd5b600e60149054906101000a900460ff16156112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e49061381a565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e60149054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461137d90613c43565b80601f01602080910402602001604051908101604052809291908181526020018280546113a990613c43565b80156113f65780601f106113cb576101008083540402835291602001916113f6565b820191906000526020600020905b8154815290600101906020018083116113d957829003601f168201915b5050505050905090565b61140861197c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561146d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061147a61197c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661152761197c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161156c9190613742565b60405180910390a35050565b611583848484611c1f565b6115a28373ffffffffffffffffffffffffffffffffffffffff16612430565b156115ea576115b384848484612453565b6115e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115fb82611b1a565b61163a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116319061385a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461174757600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b81526004016116eb919061393a565b60006040518083038186803b15801561170357600080fd5b505afa158015611717573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611740919061330a565b9050611753565b611750826125b3565b90505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117f461197c565b73ffffffffffffffffffffffffffffffffffffffff16611812611344565b73ffffffffffffffffffffffffffffffffffffffff1614611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f9061387a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf906137da565b60405180910390fd5b6118e18161236a565b50565b6118fe828260405180602001604052806000815250612652565b5050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611975575061197482612a14565b5b9050919050565b600033905090565b61198c6120d5565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e1906138da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a519061391a565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081611b25611c1a565b11158015611b34575060005482105b8015611b61575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611c2a826120df565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c95576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611cb661197c565b73ffffffffffffffffffffffffffffffffffffffff161480611ce55750611ce485611cdf61197c565b611758565b5b80611d2a5750611cf361197c565b73ffffffffffffffffffffffffffffffffffffffff16611d128461095b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d63576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dca576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd78585856001612af6565b611de360008487611b68565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561206357600054821461206257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ce8585856001612afc565b5050505050565b6000612710905090565b6120e7612e31565b6000829050806120f5611c1a565b1161233357600054811015612332576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161233057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612214578092505050612365565b5b60011561232f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461232a578092505050612365565b612215565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261247961197c565b8786866040518563ffffffff1660e01b815260040161249b94939291906136cd565b602060405180830381600087803b1580156124b557600080fd5b505af19250505080156124e657506040513d601f19601f820116820180604052508101906124e39190613273565b60015b612560573d8060008114612516576040519150601f19603f3d011682016040523d82523d6000602084013e61251b565b606091505b50600081511415612558576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606125be82611b1a565b6125f4576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006125fe612b02565b905060008151141561261f576040518060200160405280600081525061264a565b8061262984612b94565b60405160200161263a929190613679565b6040516020818303038152906040525b915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126bf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156126fa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127076000858386612af6565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506128c88673ffffffffffffffffffffffffffffffffffffffff16612430565b1561298d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461293d6000878480600101955087612453565b612973576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106128ce57826000541461298857600080fd5b6129f8565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061298e575b816000819055505050612a0e6000858386612afc565b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612adf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612aef5750612aee82612d41565b5b9050919050565b50505050565b50505050565b6060600d8054612b1190613c43565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3d90613c43565b8015612b8a5780601f10612b5f57610100808354040283529160200191612b8a565b820191906000526020600020905b815481529060010190602001808311612b6d57829003601f168201915b5050505050905090565b60606000821415612bdc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d3c565b600082905060005b60008214612c0e578080612bf790613ca6565b915050600a82612c079190613a80565b9150612be4565b60008167ffffffffffffffff811115612c50577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c825781602001600182028036833780820191505090505b5090505b60008514612d3557600182612c9b9190613b0b565b9150600a85612caa9190613cef565b6030612cb69190613a2a565b60f81b818381518110612cf2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d2e9190613a80565b9450612c86565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054612db790613c43565b90600052602060002090601f016020900481019282612dd95760008555612e20565b82601f10612df257803560ff1916838001178555612e20565b82800160010185558215612e20579182015b82811115612e1f578235825591602001919060010190612e04565b5b509050612e2d9190612e74565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e8d576000816000905550600101612e75565b5090565b6000612ea4612e9f8461397a565b613955565b905082815260208101848484011115612ebc57600080fd5b612ec7848285613c01565b509392505050565b6000612ee2612edd846139ab565b613955565b905082815260208101848484011115612efa57600080fd5b612f05848285613c10565b509392505050565b600081359050612f1c816140c3565b92915050565b600081359050612f31816140da565b92915050565b600081359050612f46816140f1565b92915050565b600081519050612f5b816140f1565b92915050565b600082601f830112612f7257600080fd5b8135612f82848260208601612e91565b91505092915050565b600081359050612f9a81614108565b92915050565b60008083601f840112612fb257600080fd5b8235905067ffffffffffffffff811115612fcb57600080fd5b602083019150836001820283011115612fe357600080fd5b9250929050565b600082601f830112612ffb57600080fd5b815161300b848260208601612ecf565b91505092915050565b6000813590506130238161411f565b92915050565b60008135905061303881614136565b92915050565b60006020828403121561305057600080fd5b600061305e84828501612f0d565b91505092915050565b6000806040838503121561307a57600080fd5b600061308885828601612f0d565b925050602061309985828601612f0d565b9150509250929050565b6000806000606084860312156130b857600080fd5b60006130c686828701612f0d565b93505060206130d786828701612f0d565b92505060406130e886828701613014565b9150509250925092565b6000806000806080858703121561310857600080fd5b600061311687828801612f0d565b945050602061312787828801612f0d565b935050604061313887828801613014565b925050606085013567ffffffffffffffff81111561315557600080fd5b61316187828801612f61565b91505092959194509250565b6000806040838503121561318057600080fd5b600061318e85828601612f0d565b925050602061319f85828601612f22565b9150509250929050565b600080604083850312156131bc57600080fd5b60006131ca85828601612f0d565b92505060206131db85828601613014565b9150509250929050565b600080604083850312156131f857600080fd5b600061320685828601612f0d565b925050602061321785828601613029565b9150509250929050565b60006020828403121561323357600080fd5b600061324184828501612f22565b91505092915050565b60006020828403121561325c57600080fd5b600061326a84828501612f37565b91505092915050565b60006020828403121561328557600080fd5b600061329384828501612f4c565b91505092915050565b6000602082840312156132ae57600080fd5b60006132bc84828501612f8b565b91505092915050565b600080602083850312156132d857600080fd5b600083013567ffffffffffffffff8111156132f257600080fd5b6132fe85828601612fa0565b92509250509250929050565b60006020828403121561331c57600080fd5b600082015167ffffffffffffffff81111561333657600080fd5b61334284828501612fea565b91505092915050565b60006020828403121561335d57600080fd5b600061336b84828501613014565b91505092915050565b6000806040838503121561338757600080fd5b600061339585828601613014565b92505060206133a685828601613014565b9150509250929050565b6133b981613b3f565b82525050565b6133c881613b51565b82525050565b60006133d9826139dc565b6133e381856139f2565b93506133f3818560208601613c10565b6133fc81613ddc565b840191505092915050565b61341081613bdd565b82525050565b6000613421826139e7565b61342b8185613a0e565b935061343b818560208601613c10565b61344481613ddc565b840191505092915050565b600061345a826139e7565b6134648185613a1f565b9350613474818560208601613c10565b80840191505092915050565b600061348d602183613a0e565b915061349882613ded565b604082019050919050565b60006134b0601883613a0e565b91506134bb82613e3c565b602082019050919050565b60006134d3602683613a0e565b91506134de82613e65565b604082019050919050565b60006134f6602783613a0e565b915061350182613eb4565b604082019050919050565b6000613519601983613a0e565b915061352482613f03565b602082019050919050565b600061353c601a83613a0e565b915061354782613f2c565b602082019050919050565b600061355f602283613a0e565b915061356a82613f55565b604082019050919050565b6000613582602083613a0e565b915061358d82613fa4565b602082019050919050565b60006135a5601383613a0e565b91506135b082613fcd565b602082019050919050565b60006135c8601583613a0e565b91506135d382613ff6565b602082019050919050565b60006135eb600083613a03565b91506135f68261401f565b600082019050919050565b600061360e602a83613a0e565b915061361982614022565b604082019050919050565b6000613631602083613a0e565b915061363c82614071565b602082019050919050565b6000613654601983613a0e565b915061365f8261409a565b602082019050919050565b61367381613bbb565b82525050565b6000613685828561344f565b9150613691828461344f565b91508190509392505050565b60006136a8826135de565b9150819050919050565b60006020820190506136c760008301846133b0565b92915050565b60006080820190506136e260008301876133b0565b6136ef60208301866133b0565b6136fc604083018561366a565b818103606083015261370e81846133ce565b905095945050505050565b600060408201905061372e60008301856133b0565b61373b602083018461366a565b9392505050565b600060208201905061375760008301846133bf565b92915050565b60006020820190506137726000830184613407565b92915050565b600060208201905081810360008301526137928184613416565b905092915050565b600060208201905081810360008301526137b381613480565b9050919050565b600060208201905081810360008301526137d3816134a3565b9050919050565b600060208201905081810360008301526137f3816134c6565b9050919050565b60006020820190508181036000830152613813816134e9565b9050919050565b600060208201905081810360008301526138338161350c565b9050919050565b600060208201905081810360008301526138538161352f565b9050919050565b6000602082019050818103600083015261387381613552565b9050919050565b6000602082019050818103600083015261389381613575565b9050919050565b600060208201905081810360008301526138b381613598565b9050919050565b600060208201905081810360008301526138d3816135bb565b9050919050565b600060208201905081810360008301526138f381613601565b9050919050565b6000602082019050818103600083015261391381613624565b9050919050565b6000602082019050818103600083015261393381613647565b9050919050565b600060208201905061394f600083018461366a565b92915050565b600061395f613970565b905061396b8282613c75565b919050565b6000604051905090565b600067ffffffffffffffff82111561399557613994613dad565b5b61399e82613ddc565b9050602081019050919050565b600067ffffffffffffffff8211156139c6576139c5613dad565b5b6139cf82613ddc565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a3582613bbb565b9150613a4083613bbb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a7557613a74613d20565b5b828201905092915050565b6000613a8b82613bbb565b9150613a9683613bbb565b925082613aa657613aa5613d4f565b5b828204905092915050565b6000613abc82613bbb565b9150613ac783613bbb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b0057613aff613d20565b5b828202905092915050565b6000613b1682613bbb565b9150613b2183613bbb565b925082821015613b3457613b33613d20565b5b828203905092915050565b6000613b4a82613b9b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613b9482613b3f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b6000613be882613bef565b9050919050565b6000613bfa82613b9b565b9050919050565b82818337600083830152505050565b60005b83811015613c2e578082015181840152602081019050613c13565b83811115613c3d576000848401525b50505050565b60006002820490506001821680613c5b57607f821691505b60208210811415613c6f57613c6e613d7e565b5b50919050565b613c7e82613ddc565b810181811067ffffffffffffffff82111715613c9d57613c9c613dad565b5b80604052505050565b6000613cb182613bbb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ce457613ce3613d20565b5b600182019050919050565b6000613cfa82613bbb565b9150613d0583613bbb565b925082613d1557613d14613d4f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f596f75206d757374206769766520746865206f726465722c206d79204c6f726460008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f5468652074696d652077696c6c20736f6f6e20636f6d652e0000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f7572206c6f7264736869702068617320616c7265616479206265656e206760008201527f72616e7465642e00000000000000000000000000000000000000000000000000602082015250565b7f5468657265206973206e6f207475726e696e67206261636b2e00000000000000600082015250565b7f436f6e747261637473207368616c6c2062652064656e6965642e000000000000600082015250565b7f546865204c6f726420796f75207365656b2063616e6e6f7420626520666f756e60008201527f642e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4661696c75726520746f20657865637574652e00000000000000000000000000600082015250565b7f49742068617320616c726561647920626567756e2e0000000000000000000000600082015250565b50565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f416c6c206c6f726473686970732068617665206265656e206772616e7465642e600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6140cc81613b3f565b81146140d757600080fd5b50565b6140e381613b51565b81146140ee57600080fd5b50565b6140fa81613b5d565b811461410557600080fd5b50565b61411181613b89565b811461411c57600080fd5b50565b61412881613bbb565b811461413357600080fd5b50565b61413f81613bc5565b811461414a57600080fd5b5056fea26469706673582212200d536c5335f61c89a3333ef3c3d529c8d7714ecc2d7e8b66005b9753858ba9dd64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5971584758414e59547762783344344b634e7566527436577857503563383731527a69316734686a524371773f00000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806368f5ea03116100ec5780638da5cb5b1161008a578063b88d4fde11610064578063b88d4fde1461056c578063c87b56dd14610595578063e985e9c5146105d2578063f2fde38b1461060f5761019c565b80638da5cb5b146104ed57806395d89b4114610518578063a22cb465146105435761019c565b80638231bc82116100c65780638231bc821461045957806382cffc1d146104825780638415d2131461049957806388fd7232146104c25761019c565b806368f5ea03146103da57806370a0823114610405578063715018a6146104425761019c565b806318160ddd116101595780633ccfd60b116101335780633ccfd60b1461033457806342842e0e1461034b57806355f804b3146103745780636352211e1461039d5761019c565b806318160ddd146102a257806323b872dd146102cd5780632a55205a146102f65761019c565b80630196dc0b146101a157806301ffc9a7146101ab57806302fa7c47146101e857806306fdde0314610211578063081812fc1461023c578063095ea7b314610279575b600080fd5b6101a9610638565b005b3480156101b757600080fd5b506101d260048036038101906101cd919061324a565b61082d565b6040516101df9190613742565b60405180910390f35b3480156101f457600080fd5b5061020f600480360381019061020a91906131e5565b61083f565b005b34801561021d57600080fd5b506102266108c9565b6040516102339190613778565b60405180910390f35b34801561024857600080fd5b50610263600480360381019061025e919061334b565b61095b565b60405161027091906136b2565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b91906131a9565b6109d7565b005b3480156102ae57600080fd5b506102b7610adc565b6040516102c4919061393a565b60405180910390f35b3480156102d957600080fd5b506102f460048036038101906102ef91906130a3565b610af3565b005b34801561030257600080fd5b5061031d60048036038101906103189190613374565b610b03565b60405161032b929190613719565b60405180910390f35b34801561034057600080fd5b50610349610cee565b005b34801561035757600080fd5b50610372600480360381019061036d91906130a3565b610e20565b005b34801561038057600080fd5b5061039b600480360381019061039691906132c5565b610e40565b005b3480156103a957600080fd5b506103c460048036038101906103bf919061334b565b610ed2565b6040516103d191906136b2565b60405180910390f35b3480156103e657600080fd5b506103ef610ee8565b6040516103fc919061375d565b60405180910390f35b34801561041157600080fd5b5061042c6004803603810190610427919061303e565b610f0e565b604051610439919061393a565b60405180910390f35b34801561044e57600080fd5b50610457610fde565b005b34801561046557600080fd5b50610480600480360381019061047b9190613221565b611066565b005b34801561048e57600080fd5b50610497611147565b005b3480156104a557600080fd5b506104c060048036038101906104bb919061329c565b611221565b005b3480156104ce57600080fd5b506104d7611331565b6040516104e49190613742565b60405180910390f35b3480156104f957600080fd5b50610502611344565b60405161050f91906136b2565b60405180910390f35b34801561052457600080fd5b5061052d61136e565b60405161053a9190613778565b60405180910390f35b34801561054f57600080fd5b5061056a6004803603810190610565919061316d565b611400565b005b34801561057857600080fd5b50610593600480360381019061058e91906130f2565b611578565b005b3480156105a157600080fd5b506105bc60048036038101906105b7919061334b565b6115f0565b6040516105c99190613778565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f49190613067565b611758565b6040516106069190613742565b60405180910390f35b34801561061b57600080fd5b506106366004803603810190610631919061303e565b6117ec565b005b6000610642610adc565b11610682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610679906137ba565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146106f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e79061383a565b60405180910390fd5b600b546106fb610adc565b1061073b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610732906138fa565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156107c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bf906137fa565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061082b3360016118e4565b565b600061083882611902565b9050919050565b61084761197c565b73ffffffffffffffffffffffffffffffffffffffff16610865611344565b73ffffffffffffffffffffffffffffffffffffffff16146108bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b29061387a565b60405180910390fd5b6108c58282611984565b5050565b6060600280546108d890613c43565b80601f016020809104026020016040519081016040528092919081815260200182805461090490613c43565b80156109515780601f1061092657610100808354040283529160200191610951565b820191906000526020600020905b81548152906001019060200180831161093457829003601f168201915b5050505050905090565b600061096682611b1a565b61099c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e282610ed2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a4a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a6961197c565b73ffffffffffffffffffffffffffffffffffffffff1614610acc57610a9581610a9061197c565b611758565b610acb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610ad7838383611b68565b505050565b6000610ae6611c1a565b6001546000540303905090565b610afe838383611c1f565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610c995760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610ca36120d5565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610ccf9190613ab1565b610cd99190613a80565b90508160000151819350935050509250929050565b610cf661197c565b73ffffffffffffffffffffffffffffffffffffffff16610d14611344565b73ffffffffffffffffffffffffffffffffffffffff1614610d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d619061387a565b60405180910390fd5b6000610d74611344565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d979061369d565b60006040518083038185875af1925050503d8060008114610dd4576040519150601f19603f3d011682016040523d82523d6000602084013e610dd9565b606091505b5050905080610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e149061389a565b60405180910390fd5b50565b610e3b83838360405180602001604052806000815250611578565b505050565b610e4861197c565b73ffffffffffffffffffffffffffffffffffffffff16610e66611344565b73ffffffffffffffffffffffffffffffffffffffff1614610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb39061387a565b60405180910390fd5b8181600d9190610ecd929190612dab565b505050565b6000610edd826120df565b600001519050919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f76576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fe661197c565b73ffffffffffffffffffffffffffffffffffffffff16611004611344565b73ffffffffffffffffffffffffffffffffffffffff161461105a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110519061387a565b60405180910390fd5b611064600061236a565b565b61106e61197c565b73ffffffffffffffffffffffffffffffffffffffff1661108c611344565b73ffffffffffffffffffffffffffffffffffffffff16146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d99061387a565b60405180910390fd5b6001151581151514611129576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111209061379a565b60405180910390fd5b6001600e60146101000a81548160ff02191690831515021790555050565b61114f61197c565b73ffffffffffffffffffffffffffffffffffffffff1661116d611344565b73ffffffffffffffffffffffffffffffffffffffff16146111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba9061387a565b60405180910390fd5b60006111cd610adc565b1461120d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611204906138ba565b60405180910390fd5b61121f611218611344565b60646118e4565b565b61122961197c565b73ffffffffffffffffffffffffffffffffffffffff16611247611344565b73ffffffffffffffffffffffffffffffffffffffff161461129d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112949061387a565b60405180910390fd5b600e60149054906101000a900460ff16156112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e49061381a565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e60149054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461137d90613c43565b80601f01602080910402602001604051908101604052809291908181526020018280546113a990613c43565b80156113f65780601f106113cb576101008083540402835291602001916113f6565b820191906000526020600020905b8154815290600101906020018083116113d957829003601f168201915b5050505050905090565b61140861197c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561146d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061147a61197c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661152761197c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161156c9190613742565b60405180910390a35050565b611583848484611c1f565b6115a28373ffffffffffffffffffffffffffffffffffffffff16612430565b156115ea576115b384848484612453565b6115e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115fb82611b1a565b61163a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116319061385a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461174757600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b81526004016116eb919061393a565b60006040518083038186803b15801561170357600080fd5b505afa158015611717573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611740919061330a565b9050611753565b611750826125b3565b90505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117f461197c565b73ffffffffffffffffffffffffffffffffffffffff16611812611344565b73ffffffffffffffffffffffffffffffffffffffff1614611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f9061387a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf906137da565b60405180910390fd5b6118e18161236a565b50565b6118fe828260405180602001604052806000815250612652565b5050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611975575061197482612a14565b5b9050919050565b600033905090565b61198c6120d5565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e1906138da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a519061391a565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081611b25611c1a565b11158015611b34575060005482105b8015611b61575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611c2a826120df565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c95576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611cb661197c565b73ffffffffffffffffffffffffffffffffffffffff161480611ce55750611ce485611cdf61197c565b611758565b5b80611d2a5750611cf361197c565b73ffffffffffffffffffffffffffffffffffffffff16611d128461095b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d63576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dca576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd78585856001612af6565b611de360008487611b68565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561206357600054821461206257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ce8585856001612afc565b5050505050565b6000612710905090565b6120e7612e31565b6000829050806120f5611c1a565b1161233357600054811015612332576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161233057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612214578092505050612365565b5b60011561232f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461232a578092505050612365565b612215565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261247961197c565b8786866040518563ffffffff1660e01b815260040161249b94939291906136cd565b602060405180830381600087803b1580156124b557600080fd5b505af19250505080156124e657506040513d601f19601f820116820180604052508101906124e39190613273565b60015b612560573d8060008114612516576040519150601f19603f3d011682016040523d82523d6000602084013e61251b565b606091505b50600081511415612558576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606125be82611b1a565b6125f4576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006125fe612b02565b905060008151141561261f576040518060200160405280600081525061264a565b8061262984612b94565b60405160200161263a929190613679565b6040516020818303038152906040525b915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126bf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156126fa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127076000858386612af6565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506128c88673ffffffffffffffffffffffffffffffffffffffff16612430565b1561298d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461293d6000878480600101955087612453565b612973576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106128ce57826000541461298857600080fd5b6129f8565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061298e575b816000819055505050612a0e6000858386612afc565b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612adf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612aef5750612aee82612d41565b5b9050919050565b50505050565b50505050565b6060600d8054612b1190613c43565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3d90613c43565b8015612b8a5780601f10612b5f57610100808354040283529160200191612b8a565b820191906000526020600020905b815481529060010190602001808311612b6d57829003601f168201915b5050505050905090565b60606000821415612bdc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d3c565b600082905060005b60008214612c0e578080612bf790613ca6565b915050600a82612c079190613a80565b9150612be4565b60008167ffffffffffffffff811115612c50577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c825781602001600182028036833780820191505090505b5090505b60008514612d3557600182612c9b9190613b0b565b9150600a85612caa9190613cef565b6030612cb69190613a2a565b60f81b818381518110612cf2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d2e9190613a80565b9450612c86565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054612db790613c43565b90600052602060002090601f016020900481019282612dd95760008555612e20565b82601f10612df257803560ff1916838001178555612e20565b82800160010185558215612e20579182015b82811115612e1f578235825591602001919060010190612e04565b5b509050612e2d9190612e74565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e8d576000816000905550600101612e75565b5090565b6000612ea4612e9f8461397a565b613955565b905082815260208101848484011115612ebc57600080fd5b612ec7848285613c01565b509392505050565b6000612ee2612edd846139ab565b613955565b905082815260208101848484011115612efa57600080fd5b612f05848285613c10565b509392505050565b600081359050612f1c816140c3565b92915050565b600081359050612f31816140da565b92915050565b600081359050612f46816140f1565b92915050565b600081519050612f5b816140f1565b92915050565b600082601f830112612f7257600080fd5b8135612f82848260208601612e91565b91505092915050565b600081359050612f9a81614108565b92915050565b60008083601f840112612fb257600080fd5b8235905067ffffffffffffffff811115612fcb57600080fd5b602083019150836001820283011115612fe357600080fd5b9250929050565b600082601f830112612ffb57600080fd5b815161300b848260208601612ecf565b91505092915050565b6000813590506130238161411f565b92915050565b60008135905061303881614136565b92915050565b60006020828403121561305057600080fd5b600061305e84828501612f0d565b91505092915050565b6000806040838503121561307a57600080fd5b600061308885828601612f0d565b925050602061309985828601612f0d565b9150509250929050565b6000806000606084860312156130b857600080fd5b60006130c686828701612f0d565b93505060206130d786828701612f0d565b92505060406130e886828701613014565b9150509250925092565b6000806000806080858703121561310857600080fd5b600061311687828801612f0d565b945050602061312787828801612f0d565b935050604061313887828801613014565b925050606085013567ffffffffffffffff81111561315557600080fd5b61316187828801612f61565b91505092959194509250565b6000806040838503121561318057600080fd5b600061318e85828601612f0d565b925050602061319f85828601612f22565b9150509250929050565b600080604083850312156131bc57600080fd5b60006131ca85828601612f0d565b92505060206131db85828601613014565b9150509250929050565b600080604083850312156131f857600080fd5b600061320685828601612f0d565b925050602061321785828601613029565b9150509250929050565b60006020828403121561323357600080fd5b600061324184828501612f22565b91505092915050565b60006020828403121561325c57600080fd5b600061326a84828501612f37565b91505092915050565b60006020828403121561328557600080fd5b600061329384828501612f4c565b91505092915050565b6000602082840312156132ae57600080fd5b60006132bc84828501612f8b565b91505092915050565b600080602083850312156132d857600080fd5b600083013567ffffffffffffffff8111156132f257600080fd5b6132fe85828601612fa0565b92509250509250929050565b60006020828403121561331c57600080fd5b600082015167ffffffffffffffff81111561333657600080fd5b61334284828501612fea565b91505092915050565b60006020828403121561335d57600080fd5b600061336b84828501613014565b91505092915050565b6000806040838503121561338757600080fd5b600061339585828601613014565b92505060206133a685828601613014565b9150509250929050565b6133b981613b3f565b82525050565b6133c881613b51565b82525050565b60006133d9826139dc565b6133e381856139f2565b93506133f3818560208601613c10565b6133fc81613ddc565b840191505092915050565b61341081613bdd565b82525050565b6000613421826139e7565b61342b8185613a0e565b935061343b818560208601613c10565b61344481613ddc565b840191505092915050565b600061345a826139e7565b6134648185613a1f565b9350613474818560208601613c10565b80840191505092915050565b600061348d602183613a0e565b915061349882613ded565b604082019050919050565b60006134b0601883613a0e565b91506134bb82613e3c565b602082019050919050565b60006134d3602683613a0e565b91506134de82613e65565b604082019050919050565b60006134f6602783613a0e565b915061350182613eb4565b604082019050919050565b6000613519601983613a0e565b915061352482613f03565b602082019050919050565b600061353c601a83613a0e565b915061354782613f2c565b602082019050919050565b600061355f602283613a0e565b915061356a82613f55565b604082019050919050565b6000613582602083613a0e565b915061358d82613fa4565b602082019050919050565b60006135a5601383613a0e565b91506135b082613fcd565b602082019050919050565b60006135c8601583613a0e565b91506135d382613ff6565b602082019050919050565b60006135eb600083613a03565b91506135f68261401f565b600082019050919050565b600061360e602a83613a0e565b915061361982614022565b604082019050919050565b6000613631602083613a0e565b915061363c82614071565b602082019050919050565b6000613654601983613a0e565b915061365f8261409a565b602082019050919050565b61367381613bbb565b82525050565b6000613685828561344f565b9150613691828461344f565b91508190509392505050565b60006136a8826135de565b9150819050919050565b60006020820190506136c760008301846133b0565b92915050565b60006080820190506136e260008301876133b0565b6136ef60208301866133b0565b6136fc604083018561366a565b818103606083015261370e81846133ce565b905095945050505050565b600060408201905061372e60008301856133b0565b61373b602083018461366a565b9392505050565b600060208201905061375760008301846133bf565b92915050565b60006020820190506137726000830184613407565b92915050565b600060208201905081810360008301526137928184613416565b905092915050565b600060208201905081810360008301526137b381613480565b9050919050565b600060208201905081810360008301526137d3816134a3565b9050919050565b600060208201905081810360008301526137f3816134c6565b9050919050565b60006020820190508181036000830152613813816134e9565b9050919050565b600060208201905081810360008301526138338161350c565b9050919050565b600060208201905081810360008301526138538161352f565b9050919050565b6000602082019050818103600083015261387381613552565b9050919050565b6000602082019050818103600083015261389381613575565b9050919050565b600060208201905081810360008301526138b381613598565b9050919050565b600060208201905081810360008301526138d3816135bb565b9050919050565b600060208201905081810360008301526138f381613601565b9050919050565b6000602082019050818103600083015261391381613624565b9050919050565b6000602082019050818103600083015261393381613647565b9050919050565b600060208201905061394f600083018461366a565b92915050565b600061395f613970565b905061396b8282613c75565b919050565b6000604051905090565b600067ffffffffffffffff82111561399557613994613dad565b5b61399e82613ddc565b9050602081019050919050565b600067ffffffffffffffff8211156139c6576139c5613dad565b5b6139cf82613ddc565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a3582613bbb565b9150613a4083613bbb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a7557613a74613d20565b5b828201905092915050565b6000613a8b82613bbb565b9150613a9683613bbb565b925082613aa657613aa5613d4f565b5b828204905092915050565b6000613abc82613bbb565b9150613ac783613bbb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b0057613aff613d20565b5b828202905092915050565b6000613b1682613bbb565b9150613b2183613bbb565b925082821015613b3457613b33613d20565b5b828203905092915050565b6000613b4a82613b9b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613b9482613b3f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b6000613be882613bef565b9050919050565b6000613bfa82613b9b565b9050919050565b82818337600083830152505050565b60005b83811015613c2e578082015181840152602081019050613c13565b83811115613c3d576000848401525b50505050565b60006002820490506001821680613c5b57607f821691505b60208210811415613c6f57613c6e613d7e565b5b50919050565b613c7e82613ddc565b810181811067ffffffffffffffff82111715613c9d57613c9c613dad565b5b80604052505050565b6000613cb182613bbb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ce457613ce3613d20565b5b600182019050919050565b6000613cfa82613bbb565b9150613d0583613bbb565b925082613d1557613d14613d4f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f596f75206d757374206769766520746865206f726465722c206d79204c6f726460008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f5468652074696d652077696c6c20736f6f6e20636f6d652e0000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f7572206c6f7264736869702068617320616c7265616479206265656e206760008201527f72616e7465642e00000000000000000000000000000000000000000000000000602082015250565b7f5468657265206973206e6f207475726e696e67206261636b2e00000000000000600082015250565b7f436f6e747261637473207368616c6c2062652064656e6965642e000000000000600082015250565b7f546865204c6f726420796f75207365656b2063616e6e6f7420626520666f756e60008201527f642e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4661696c75726520746f20657865637574652e00000000000000000000000000600082015250565b7f49742068617320616c726561647920626567756e2e0000000000000000000000600082015250565b50565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f416c6c206c6f726473686970732068617665206265656e206772616e7465642e600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6140cc81613b3f565b81146140d757600080fd5b50565b6140e381613b51565b81146140ee57600080fd5b50565b6140fa81613b5d565b811461410557600080fd5b50565b61411181613b89565b811461411c57600080fd5b50565b61412881613bbb565b811461413357600080fd5b50565b61413f81613bc5565b811461414a57600080fd5b5056fea26469706673582212200d536c5335f61c89a3333ef3c3d529c8d7714ecc2d7e8b66005b9753858ba9dd64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5971584758414e59547762783344344b634e7566527436577857503563383731527a69316734686a524371773f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmYqXGXANYTwbx3D4KcNufRt6WxWP5c871Rzi1g4hjRCqw?

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5971584758414e59547762783344344b634e7566527436
Arg [3] : 577857503563383731527a69316734686a524371773f00000000000000000000


Deployed Bytecode Sourcemap

54989:2484:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55442:444;;;:::i;:::-;;57117:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56962:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29254:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30758:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30320:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25379:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31623:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47677:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;57288:182;;;;;;;;;;;;;:::i;:::-;;31864:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56053:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29062:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56167:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26508:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51989:103;;;;;;;;;;;;;:::i;:::-;;56442:180;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55288:146;;;;;;;;;;;;;:::i;:::-;;56254:180;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56212:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51338:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29423:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31034:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32120:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56630:324;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31392:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52247:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55442:444;55519:1;55503:13;:11;:13::i;:::-;:17;55495:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;55590:10;55577:23;;:9;:23;;;55569:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;55669:9;;55653:13;:11;:13::i;:::-;:25;55645:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;55736:8;:20;55745:10;55736:20;;;;;;;;;;;;;;;;;;;;;;;;;55735:21;55727:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;55839:4;55816:8;:20;55825:10;55816:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;55854:24;55864:10;55876:1;55854:9;:24::i;:::-;55442:444::o;57117:163::-;57212:4;57236:36;57260:11;57236:23;:36::i;:::-;57229:43;;57117:163;;;:::o;56962:147::-;51569:12;:10;:12::i;:::-;51558:23;;:7;:5;:7::i;:::-;:23;;;51550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57057:44:::1;57076:8;57086:14;57057:18;:44::i;:::-;56962:147:::0;;:::o;29254:100::-;29308:13;29341:5;29334:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29254:100;:::o;30758:204::-;30826:7;30851:16;30859:7;30851;:16::i;:::-;30846:64;;30876:34;;;;;;;;;;;;;;30846:64;30930:15;:24;30946:7;30930:24;;;;;;;;;;;;;;;;;;;;;30923:31;;30758:204;;;:::o;30320:372::-;30393:13;30409:24;30425:7;30409:15;:24::i;:::-;30393:40;;30454:5;30448:11;;:2;:11;;;30444:48;;;30468:24;;;;;;;;;;;;;;30444:48;30525:5;30509:21;;:12;:10;:12::i;:::-;:21;;;30505:139;;30536:37;30553:5;30560:12;:10;:12::i;:::-;30536:16;:37::i;:::-;30532:112;;30597:35;;;;;;;;;;;;;;30532:112;30505:139;30656:28;30665:2;30669:7;30678:5;30656:8;:28::i;:::-;30320:372;;;:::o;25379:312::-;25432:7;25657:15;:13;:15::i;:::-;25642:12;;25626:13;;:28;:46;25619:53;;25379:312;:::o;31623:170::-;31757:28;31767:4;31773:2;31777:7;31757:9;:28::i;:::-;31623:170;;;:::o;47677:494::-;47821:7;47830;47855:26;47884:17;:27;47902:8;47884:27;;;;;;;;;;;47855:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47956:1;47928:30;;:7;:16;;;:30;;;47924:92;;;47985:19;47975:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47924:92;48028:21;48093:17;:15;:17::i;:::-;48052:58;;48066:7;:23;;;48053:36;;:10;:36;;;;:::i;:::-;48052:58;;;;:::i;:::-;48028:82;;48131:7;:16;;;48149:13;48123:40;;;;;;47677:494;;;;;:::o;57288:182::-;51569:12;:10;:12::i;:::-;51558:23;;:7;:5;:7::i;:::-;:23;;;51550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57339:12:::1;57365:7;:5;:7::i;:::-;57357:21;;57386;57357:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57338:74;;;57431:7;57423:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;51629:1;57288:182::o:0;31864:185::-;32002:39;32019:4;32025:2;32029:7;32002:39;;;;;;;;;;;;:16;:39::i;:::-;31864:185;;;:::o;56053:106::-;51569:12;:10;:12::i;:::-;51558:23;;:7;:5;:7::i;:::-;:23;;;51550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56144:7:::1;;56128:13;:23;;;;;;;:::i;:::-;;56053:106:::0;;:::o;29062:125::-;29126:7;29153:21;29166:7;29153:12;:21::i;:::-;:26;;;29146:33;;29062:125;;;:::o;56167:38::-;;;;;;;;;;;;;:::o;26508:206::-;26572:7;26613:1;26596:19;;:5;:19;;;26592:60;;;26624:28;;;;;;;;;;;;;;26592:60;26678:12;:19;26691:5;26678:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;26670:36;;26663:43;;26508:206;;;:::o;51989:103::-;51569:12;:10;:12::i;:::-;51558:23;;:7;:5;:7::i;:::-;:23;;;51550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52054:30:::1;52081:1;52054:18;:30::i;:::-;51989:103::o:0;56442:180::-;51569:12;:10;:12::i;:::-;51558:23;;:7;:5;:7::i;:::-;:23;;;51550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56533:4:::1;56522:15;;:7;:15;;;56514:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;56610:4;56586:21;;:28;;;;;;;;;;;;;;;;;;56442:180:::0;:::o;55288:146::-;51569:12;:10;:12::i;:::-;51558:23;;:7;:5;:7::i;:::-;:23;;;51550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55365:1:::1;55348:13;:11;:13::i;:::-;:18;55340:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;55403:23;55413:7;:5;:7::i;:::-;55422:3;55403:9;:23::i;:::-;55288:146::o:0;56254:180::-;51569:12;:10;:12::i;:::-;51558:23;;:7;:5;:7::i;:::-;:23;;;51550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56342:21:::1;;;;;;;;;;;56341:22;56333:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;56422:4;56404:15;;:22;;;;;;;;;;;;;;;;;;56254:180:::0;:::o;56212:33::-;;;;;;;;;;;;;:::o;51338:87::-;51384:7;51411:6;;;;;;;;;;;51404:13;;51338:87;:::o;29423:104::-;29479:13;29512:7;29505:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29423:104;:::o;31034:287::-;31145:12;:10;:12::i;:::-;31133:24;;:8;:24;;;31129:54;;;31166:17;;;;;;;;;;;;;;31129:54;31241:8;31196:18;:32;31215:12;:10;:12::i;:::-;31196:32;;;;;;;;;;;;;;;:42;31229:8;31196:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31294:8;31265:48;;31280:12;:10;:12::i;:::-;31265:48;;;31304:8;31265:48;;;;;;:::i;:::-;;;;;;;;31034:287;;:::o;32120:370::-;32287:28;32297:4;32303:2;32307:7;32287:9;:28::i;:::-;32330:15;:2;:13;;;:15::i;:::-;32326:157;;;32351:56;32382:4;32388:2;32392:7;32401:5;32351:30;:56::i;:::-;32347:136;;32431:40;;;;;;;;;;;;;;32347:136;32326:157;32120:370;;;;:::o;56630:324::-;56695:13;56729:16;56737:7;56729;:16::i;:::-;56721:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;56835:1;56799:38;;56807:15;;;;;;;;;;;56799:38;;;56795:111;;56861:15;;;;;;;;;;;:24;;;56886:7;56861:33;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56854:40;;;;56795:111;56923:23;56938:7;56923:14;:23::i;:::-;56916:30;;56630:324;;;;:::o;31392:164::-;31489:4;31513:18;:25;31532:5;31513:25;;;;;;;;;;;;;;;:35;31539:8;31513:35;;;;;;;;;;;;;;;;;;;;;;;;;31506:42;;31392:164;;;;:::o;52247:201::-;51569:12;:10;:12::i;:::-;51558:23;;:7;:5;:7::i;:::-;:23;;;51550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52356:1:::1;52336:22;;:8;:22;;;;52328:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;52412:28;52431:8;52412:18;:28::i;:::-;52247:201:::0;:::o;33003:104::-;33072:27;33082:2;33086:8;33072:27;;;;;;;;;;;;:9;:27::i;:::-;33003:104;;:::o;47407:215::-;47509:4;47548:26;47533:41;;;:11;:41;;;;:81;;;;47578:36;47602:11;47578:23;:36::i;:::-;47533:81;47526:88;;47407:215;;;:::o;19903:98::-;19956:7;19983:10;19976:17;;19903:98;:::o;48821:332::-;48940:17;:15;:17::i;:::-;48924:33;;:12;:33;;;;48916:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;49043:1;49023:22;;:8;:22;;;;49015:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;49110:35;;;;;;;;49122:8;49110:35;;;;;;49132:12;49110:35;;;;;49088:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48821:332;;:::o;32745:174::-;32802:4;32845:7;32826:15;:13;:15::i;:::-;:26;;:53;;;;;32866:13;;32856:7;:23;32826:53;:85;;;;;32884:11;:20;32896:7;32884:20;;;;;;;;;;;:27;;;;;;;;;;;;32883:28;32826:85;32819:92;;32745:174;;;:::o;41967:196::-;42109:2;42082:15;:24;42098:7;42082:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42147:7;42143:2;42127:28;;42136:5;42127:28;;;;;;;;;;;;41967:196;;;:::o;25153:92::-;25209:7;25153:92;:::o;36915:2130::-;37030:35;37068:21;37081:7;37068:12;:21::i;:::-;37030:59;;37128:4;37106:26;;:13;:18;;;:26;;;37102:67;;37141:28;;;;;;;;;;;;;;37102:67;37182:22;37224:4;37208:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;37245:36;37262:4;37268:12;:10;:12::i;:::-;37245:16;:36::i;:::-;37208:73;:126;;;;37322:12;:10;:12::i;:::-;37298:36;;:20;37310:7;37298:11;:20::i;:::-;:36;;;37208:126;37182:153;;37353:17;37348:66;;37379:35;;;;;;;;;;;;;;37348:66;37443:1;37429:16;;:2;:16;;;37425:52;;;37454:23;;;;;;;;;;;;;;37425:52;37490:43;37512:4;37518:2;37522:7;37531:1;37490:21;:43::i;:::-;37598:35;37615:1;37619:7;37628:4;37598:8;:35::i;:::-;37959:1;37929:12;:18;37942:4;37929:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38003:1;37975:12;:16;37988:2;37975:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38021:31;38055:11;:20;38067:7;38055:20;;;;;;;;;;;38021:54;;38106:2;38090:8;:13;;;:18;;;;;;;;;;;;;;;;;;38156:15;38123:8;:23;;;:49;;;;;;;;;;;;;;;;;;38424:19;38456:1;38446:7;:11;38424:33;;38472:31;38506:11;:24;38518:11;38506:24;;;;;;;;;;;38472:58;;38574:1;38549:27;;:8;:13;;;;;;;;;;;;:27;;;38545:384;;;38759:13;;38744:11;:28;38740:174;;38813:4;38797:8;:13;;;:20;;;;;;;;;;;;;;;;;;38866:13;:28;;;38840:8;:23;;;:54;;;;;;;;;;;;;;;;;;38740:174;38545:384;36915:2130;;;38976:7;38972:2;38957:27;;38966:4;38957:27;;;;;;;;;;;;38995:42;39016:4;39022:2;39026:7;39035:1;38995:20;:42::i;:::-;36915:2130;;;;;:::o;48453:97::-;48511:6;48537:5;48530:12;;48453:97;:::o;27889:1111::-;27951:21;;:::i;:::-;27985:12;28000:7;27985:22;;28068:4;28049:15;:13;:15::i;:::-;:23;28045:888;;28085:13;;28078:4;:20;28074:859;;;28119:31;28153:11;:17;28165:4;28153:17;;;;;;;;;;;28119:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28194:9;:16;;;28189:729;;28265:1;28239:28;;:9;:14;;;:28;;;28235:101;;28303:9;28296:16;;;;;;28235:101;28638:261;28645:4;28638:261;;;28678:6;;;;;;;;28723:11;:17;28735:4;28723:17;;;;;;;;;;;28711:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28797:1;28771:28;;:9;:14;;;:28;;;28767:109;;28839:9;28832:16;;;;;;28767:109;28638:261;;;28189:729;28074:859;;28045:888;28961:31;;;;;;;;;;;;;;27889:1111;;;;:::o;52608:191::-;52682:16;52701:6;;;;;;;;;;;52682:25;;52727:8;52718:6;;:17;;;;;;;;;;;;;;;;;;52782:8;52751:40;;52772:8;52751:40;;;;;;;;;;;;52608:191;;:::o;11946:326::-;12006:4;12263:1;12241:7;:19;;;:23;12234:30;;11946:326;;;:::o;42655:667::-;42818:4;42855:2;42839:36;;;42876:12;:10;:12::i;:::-;42890:4;42896:7;42905:5;42839:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42835:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43090:1;43073:6;:13;:18;43069:235;;;43119:40;;;;;;;;;;;;;;43069:235;43262:6;43256:13;43247:6;43243:2;43239:15;43232:38;42835:480;42968:45;;;42958:55;;;:6;:55;;;;42951:62;;;42655:667;;;;;;:::o;29598:318::-;29671:13;29702:16;29710:7;29702;:16::i;:::-;29697:59;;29727:29;;;;;;;;;;;;;;29697:59;29769:21;29793:10;:8;:10::i;:::-;29769:34;;29846:1;29827:7;29821:21;:26;;:87;;;;;;;;;;;;;;;;;29874:7;29883:18;:7;:16;:18::i;:::-;29857:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29821:87;29814:94;;;29598:318;;;:::o;33480:1749::-;33603:20;33626:13;;33603:36;;33668:1;33654:16;;:2;:16;;;33650:48;;;33679:19;;;;;;;;;;;;;;33650:48;33725:1;33713:8;:13;33709:44;;;33735:18;;;;;;;;;;;;;;33709:44;33766:61;33796:1;33800:2;33804:12;33818:8;33766:21;:61::i;:::-;34139:8;34104:12;:16;34117:2;34104:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34203:8;34163:12;:16;34176:2;34163:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34262:2;34229:11;:25;34241:12;34229:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34329:15;34279:11;:25;34291:12;34279:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;34362:20;34385:12;34362:35;;34412:11;34441:8;34426:12;:23;34412:37;;34470:15;:2;:13;;;:15::i;:::-;34466:631;;;34506:313;34562:12;34558:2;34537:38;;34554:1;34537:38;;;;;;;;;;;;34603:69;34642:1;34646:2;34650:14;;;;;;34666:5;34603:30;:69::i;:::-;34598:174;;34708:40;;;;;;;;;;;;;;34598:174;34814:3;34799:12;:18;34506:313;;34900:12;34883:13;;:29;34879:43;;34914:8;;;34879:43;34466:631;;;34963:119;35019:14;;;;;;35015:2;34994:40;;35011:1;34994:40;;;;;;;;;;;;35077:3;35062:12;:18;34963:119;;34466:631;35127:12;35111:13;:28;;;;33480:1749;;35161:60;35190:1;35194:2;35198:12;35212:8;35161:20;:60::i;:::-;33480:1749;;;;:::o;26139:305::-;26241:4;26293:25;26278:40;;;:11;:40;;;;:105;;;;26350:33;26335:48;;;:11;:48;;;;26278:105;:158;;;;26400:36;26424:11;26400:23;:36::i;:::-;26278:158;26258:178;;26139:305;;;:::o;43970:159::-;;;;;:::o;44788:158::-;;;;;:::o;55931:114::-;55991:13;56024;56017:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55931:114;:::o;20490:723::-;20546:13;20776:1;20767:5;:10;20763:53;;;20794:10;;;;;;;;;;;;;;;;;;;;;20763:53;20826:12;20841:5;20826:20;;20857:14;20882:78;20897:1;20889:4;:9;20882:78;;20915:8;;;;;:::i;:::-;;;;20946:2;20938:10;;;;;:::i;:::-;;;20882:78;;;20970:19;21002:6;20992:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20970:39;;21020:154;21036:1;21027:5;:10;21020:154;;21064:1;21054:11;;;;;:::i;:::-;;;21131:2;21123:5;:10;;;;:::i;:::-;21110:2;:24;;;;:::i;:::-;21097:39;;21080:6;21087;21080:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;21160:2;21151:11;;;;;:::i;:::-;;;21020:154;;;21198:6;21184:21;;;;;20490:723;;;;:::o;23120:157::-;23205:4;23244:25;23229:40;;;:11;:40;;;;23222:47;;23120:157;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:354::-;445:5;470:66;486:49;528:6;486:49;:::i;:::-;470:66;:::i;:::-;461:75;;559:6;552:5;545:21;597:4;590:5;586:16;635:3;626:6;621:3;617:16;614:25;611:2;;;652:1;649;642:12;611:2;665:39;697:6;692:3;687;665:39;:::i;:::-;451:259;;;;;;:::o;716:139::-;762:5;800:6;787:20;778:29;;816:33;843:5;816:33;:::i;:::-;768:87;;;;:::o;861:133::-;904:5;942:6;929:20;920:29;;958:30;982:5;958:30;:::i;:::-;910:84;;;;:::o;1000:137::-;1045:5;1083:6;1070:20;1061:29;;1099:32;1125:5;1099:32;:::i;:::-;1051:86;;;;:::o;1143:141::-;1199:5;1230:6;1224:13;1215:22;;1246:32;1272:5;1246:32;:::i;:::-;1205:79;;;;:::o;1303:271::-;1358:5;1407:3;1400:4;1392:6;1388:17;1384:27;1374:2;;1425:1;1422;1415:12;1374:2;1465:6;1452:20;1490:78;1564:3;1556:6;1549:4;1541:6;1537:17;1490:78;:::i;:::-;1481:87;;1364:210;;;;;:::o;1580:187::-;1650:5;1688:6;1675:20;1666:29;;1704:57;1755:5;1704:57;:::i;:::-;1656:111;;;;:::o;1787:352::-;1845:8;1855:6;1905:3;1898:4;1890:6;1886:17;1882:27;1872:2;;1923:1;1920;1913:12;1872:2;1959:6;1946:20;1936:30;;1989:18;1981:6;1978:30;1975:2;;;2021:1;2018;2011:12;1975:2;2058:4;2050:6;2046:17;2034:29;;2112:3;2104:4;2096:6;2092:17;2082:8;2078:32;2075:41;2072:2;;;2129:1;2126;2119:12;2072:2;1862:277;;;;;:::o;2159:288::-;2226:5;2275:3;2268:4;2260:6;2256:17;2252:27;2242:2;;2293:1;2290;2283:12;2242:2;2326:6;2320:13;2351:90;2437:3;2429:6;2422:4;2414:6;2410:17;2351:90;:::i;:::-;2342:99;;2232:215;;;;;:::o;2453:139::-;2499:5;2537:6;2524:20;2515:29;;2553:33;2580:5;2553:33;:::i;:::-;2505:87;;;;:::o;2598:137::-;2643:5;2681:6;2668:20;2659:29;;2697:32;2723:5;2697:32;:::i;:::-;2649:86;;;;:::o;2741:262::-;2800:6;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2865:1;2862;2855:12;2817:2;2908:1;2933:53;2978:7;2969:6;2958:9;2954:22;2933:53;:::i;:::-;2923:63;;2879:117;2807:196;;;;:::o;3009:407::-;3077:6;3085;3134:2;3122:9;3113:7;3109:23;3105:32;3102:2;;;3150:1;3147;3140:12;3102:2;3193:1;3218:53;3263:7;3254:6;3243:9;3239:22;3218:53;:::i;:::-;3208:63;;3164:117;3320:2;3346:53;3391:7;3382:6;3371:9;3367:22;3346:53;:::i;:::-;3336:63;;3291:118;3092:324;;;;;:::o;3422:552::-;3499:6;3507;3515;3564:2;3552:9;3543:7;3539:23;3535:32;3532:2;;;3580:1;3577;3570:12;3532:2;3623:1;3648:53;3693:7;3684:6;3673:9;3669:22;3648:53;:::i;:::-;3638:63;;3594:117;3750:2;3776:53;3821:7;3812:6;3801:9;3797:22;3776:53;:::i;:::-;3766:63;;3721:118;3878:2;3904:53;3949:7;3940:6;3929:9;3925:22;3904:53;:::i;:::-;3894:63;;3849:118;3522:452;;;;;:::o;3980:809::-;4075:6;4083;4091;4099;4148:3;4136:9;4127:7;4123:23;4119:33;4116:2;;;4165:1;4162;4155:12;4116:2;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;4335:2;4361:53;4406:7;4397:6;4386:9;4382:22;4361:53;:::i;:::-;4351:63;;4306:118;4463:2;4489:53;4534:7;4525:6;4514:9;4510:22;4489:53;:::i;:::-;4479:63;;4434:118;4619:2;4608:9;4604:18;4591:32;4650:18;4642:6;4639:30;4636:2;;;4682:1;4679;4672:12;4636:2;4710:62;4764:7;4755:6;4744:9;4740:22;4710:62;:::i;:::-;4700:72;;4562:220;4106:683;;;;;;;:::o;4795:401::-;4860:6;4868;4917:2;4905:9;4896:7;4892:23;4888:32;4885:2;;;4933:1;4930;4923:12;4885:2;4976:1;5001:53;5046:7;5037:6;5026:9;5022:22;5001:53;:::i;:::-;4991:63;;4947:117;5103:2;5129:50;5171:7;5162:6;5151:9;5147:22;5129:50;:::i;:::-;5119:60;;5074:115;4875:321;;;;;:::o;5202:407::-;5270:6;5278;5327:2;5315:9;5306:7;5302:23;5298:32;5295:2;;;5343:1;5340;5333:12;5295:2;5386:1;5411:53;5456:7;5447:6;5436:9;5432:22;5411:53;:::i;:::-;5401:63;;5357:117;5513:2;5539:53;5584:7;5575:6;5564:9;5560:22;5539:53;:::i;:::-;5529:63;;5484:118;5285:324;;;;;:::o;5615:405::-;5682:6;5690;5739:2;5727:9;5718:7;5714:23;5710:32;5707:2;;;5755:1;5752;5745:12;5707:2;5798:1;5823:53;5868:7;5859:6;5848:9;5844:22;5823:53;:::i;:::-;5813:63;;5769:117;5925:2;5951:52;5995:7;5986:6;5975:9;5971:22;5951:52;:::i;:::-;5941:62;;5896:117;5697:323;;;;;:::o;6026:256::-;6082:6;6131:2;6119:9;6110:7;6106:23;6102:32;6099:2;;;6147:1;6144;6137:12;6099:2;6190:1;6215:50;6257:7;6248:6;6237:9;6233:22;6215:50;:::i;:::-;6205:60;;6161:114;6089:193;;;;:::o;6288:260::-;6346:6;6395:2;6383:9;6374:7;6370:23;6366:32;6363:2;;;6411:1;6408;6401:12;6363:2;6454:1;6479:52;6523:7;6514:6;6503:9;6499:22;6479:52;:::i;:::-;6469:62;;6425:116;6353:195;;;;:::o;6554:282::-;6623:6;6672:2;6660:9;6651:7;6647:23;6643:32;6640:2;;;6688:1;6685;6678:12;6640:2;6731:1;6756:63;6811:7;6802:6;6791:9;6787:22;6756:63;:::i;:::-;6746:73;;6702:127;6630:206;;;;:::o;6842:310::-;6925:6;6974:2;6962:9;6953:7;6949:23;6945:32;6942:2;;;6990:1;6987;6980:12;6942:2;7033:1;7058:77;7127:7;7118:6;7107:9;7103:22;7058:77;:::i;:::-;7048:87;;7004:141;6932:220;;;;:::o;7158:395::-;7229:6;7237;7286:2;7274:9;7265:7;7261:23;7257:32;7254:2;;;7302:1;7299;7292:12;7254:2;7373:1;7362:9;7358:17;7345:31;7403:18;7395:6;7392:30;7389:2;;;7435:1;7432;7425:12;7389:2;7471:65;7528:7;7519:6;7508:9;7504:22;7471:65;:::i;:::-;7453:83;;;;7316:230;7244:309;;;;;:::o;7559:390::-;7639:6;7688:2;7676:9;7667:7;7663:23;7659:32;7656:2;;;7704:1;7701;7694:12;7656:2;7768:1;7757:9;7753:17;7747:24;7798:18;7790:6;7787:30;7784:2;;;7830:1;7827;7820:12;7784:2;7858:74;7924:7;7915:6;7904:9;7900:22;7858:74;:::i;:::-;7848:84;;7718:224;7646:303;;;;:::o;7955:262::-;8014:6;8063:2;8051:9;8042:7;8038:23;8034:32;8031:2;;;8079:1;8076;8069:12;8031:2;8122:1;8147:53;8192:7;8183:6;8172:9;8168:22;8147:53;:::i;:::-;8137:63;;8093:117;8021:196;;;;:::o;8223:407::-;8291:6;8299;8348:2;8336:9;8327:7;8323:23;8319:32;8316:2;;;8364:1;8361;8354:12;8316:2;8407:1;8432:53;8477:7;8468:6;8457:9;8453:22;8432:53;:::i;:::-;8422:63;;8378:117;8534:2;8560:53;8605:7;8596:6;8585:9;8581:22;8560:53;:::i;:::-;8550:63;;8505:118;8306:324;;;;;:::o;8636:118::-;8723:24;8741:5;8723:24;:::i;:::-;8718:3;8711:37;8701:53;;:::o;8760:109::-;8841:21;8856:5;8841:21;:::i;:::-;8836:3;8829:34;8819:50;;:::o;8875:360::-;8961:3;8989:38;9021:5;8989:38;:::i;:::-;9043:70;9106:6;9101:3;9043:70;:::i;:::-;9036:77;;9122:52;9167:6;9162:3;9155:4;9148:5;9144:16;9122:52;:::i;:::-;9199:29;9221:6;9199:29;:::i;:::-;9194:3;9190:39;9183:46;;8965:270;;;;;:::o;9241:179::-;9352:61;9407:5;9352:61;:::i;:::-;9347:3;9340:74;9330:90;;:::o;9426:364::-;9514:3;9542:39;9575:5;9542:39;:::i;:::-;9597:71;9661:6;9656:3;9597:71;:::i;:::-;9590:78;;9677:52;9722:6;9717:3;9710:4;9703:5;9699:16;9677:52;:::i;:::-;9754:29;9776:6;9754:29;:::i;:::-;9749:3;9745:39;9738:46;;9518:272;;;;;:::o;9796:377::-;9902:3;9930:39;9963:5;9930:39;:::i;:::-;9985:89;10067:6;10062:3;9985:89;:::i;:::-;9978:96;;10083:52;10128:6;10123:3;10116:4;10109:5;10105:16;10083:52;:::i;:::-;10160:6;10155:3;10151:16;10144:23;;9906:267;;;;;:::o;10179:366::-;10321:3;10342:67;10406:2;10401:3;10342:67;:::i;:::-;10335:74;;10418:93;10507:3;10418:93;:::i;:::-;10536:2;10531:3;10527:12;10520:19;;10325:220;;;:::o;10551:366::-;10693:3;10714:67;10778:2;10773:3;10714:67;:::i;:::-;10707:74;;10790:93;10879:3;10790:93;:::i;:::-;10908:2;10903:3;10899:12;10892:19;;10697:220;;;:::o;10923:366::-;11065:3;11086:67;11150:2;11145:3;11086:67;:::i;:::-;11079:74;;11162:93;11251:3;11162:93;:::i;:::-;11280:2;11275:3;11271:12;11264:19;;11069:220;;;:::o;11295:366::-;11437:3;11458:67;11522:2;11517:3;11458:67;:::i;:::-;11451:74;;11534:93;11623:3;11534:93;:::i;:::-;11652:2;11647:3;11643:12;11636:19;;11441:220;;;:::o;11667:366::-;11809:3;11830:67;11894:2;11889:3;11830:67;:::i;:::-;11823:74;;11906:93;11995:3;11906:93;:::i;:::-;12024:2;12019:3;12015:12;12008:19;;11813:220;;;:::o;12039:366::-;12181:3;12202:67;12266:2;12261:3;12202:67;:::i;:::-;12195:74;;12278:93;12367:3;12278:93;:::i;:::-;12396:2;12391:3;12387:12;12380:19;;12185:220;;;:::o;12411:366::-;12553:3;12574:67;12638:2;12633:3;12574:67;:::i;:::-;12567:74;;12650:93;12739:3;12650:93;:::i;:::-;12768:2;12763:3;12759:12;12752:19;;12557:220;;;:::o;12783:366::-;12925:3;12946:67;13010:2;13005:3;12946:67;:::i;:::-;12939:74;;13022:93;13111:3;13022:93;:::i;:::-;13140:2;13135:3;13131:12;13124:19;;12929:220;;;:::o;13155:366::-;13297:3;13318:67;13382:2;13377:3;13318:67;:::i;:::-;13311:74;;13394:93;13483:3;13394:93;:::i;:::-;13512:2;13507:3;13503:12;13496:19;;13301:220;;;:::o;13527:366::-;13669:3;13690:67;13754:2;13749:3;13690:67;:::i;:::-;13683:74;;13766:93;13855:3;13766:93;:::i;:::-;13884:2;13879:3;13875:12;13868:19;;13673:220;;;:::o;13899:398::-;14058:3;14079:83;14160:1;14155:3;14079:83;:::i;:::-;14072:90;;14171:93;14260:3;14171:93;:::i;:::-;14289:1;14284:3;14280:11;14273:18;;14062:235;;;:::o;14303:366::-;14445:3;14466:67;14530:2;14525:3;14466:67;:::i;:::-;14459:74;;14542:93;14631:3;14542:93;:::i;:::-;14660:2;14655:3;14651:12;14644:19;;14449:220;;;:::o;14675:366::-;14817:3;14838:67;14902:2;14897:3;14838:67;:::i;:::-;14831:74;;14914:93;15003:3;14914:93;:::i;:::-;15032:2;15027:3;15023:12;15016:19;;14821:220;;;:::o;15047:366::-;15189:3;15210:67;15274:2;15269:3;15210:67;:::i;:::-;15203:74;;15286:93;15375:3;15286:93;:::i;:::-;15404:2;15399:3;15395:12;15388:19;;15193:220;;;:::o;15419:118::-;15506:24;15524:5;15506:24;:::i;:::-;15501:3;15494:37;15484:53;;:::o;15543:435::-;15723:3;15745:95;15836:3;15827:6;15745:95;:::i;:::-;15738:102;;15857:95;15948:3;15939:6;15857:95;:::i;:::-;15850:102;;15969:3;15962:10;;15727:251;;;;;:::o;15984:379::-;16168:3;16190:147;16333:3;16190:147;:::i;:::-;16183:154;;16354:3;16347:10;;16172:191;;;:::o;16369:222::-;16462:4;16500:2;16489:9;16485:18;16477:26;;16513:71;16581:1;16570:9;16566:17;16557:6;16513:71;:::i;:::-;16467:124;;;;:::o;16597:640::-;16792:4;16830:3;16819:9;16815:19;16807:27;;16844:71;16912:1;16901:9;16897:17;16888:6;16844:71;:::i;:::-;16925:72;16993:2;16982:9;16978:18;16969:6;16925:72;:::i;:::-;17007;17075:2;17064:9;17060:18;17051:6;17007:72;:::i;:::-;17126:9;17120:4;17116:20;17111:2;17100:9;17096:18;17089:48;17154:76;17225:4;17216:6;17154:76;:::i;:::-;17146:84;;16797:440;;;;;;;:::o;17243:332::-;17364:4;17402:2;17391:9;17387:18;17379:26;;17415:71;17483:1;17472:9;17468:17;17459:6;17415:71;:::i;:::-;17496:72;17564:2;17553:9;17549:18;17540:6;17496:72;:::i;:::-;17369:206;;;;;:::o;17581:210::-;17668:4;17706:2;17695:9;17691:18;17683:26;;17719:65;17781:1;17770:9;17766:17;17757:6;17719:65;:::i;:::-;17673:118;;;;:::o;17797:270::-;17914:4;17952:2;17941:9;17937:18;17929:26;;17965:95;18057:1;18046:9;18042:17;18033:6;17965:95;:::i;:::-;17919:148;;;;:::o;18073:313::-;18186:4;18224:2;18213:9;18209:18;18201:26;;18273:9;18267:4;18263:20;18259:1;18248:9;18244:17;18237:47;18301:78;18374:4;18365:6;18301:78;:::i;:::-;18293:86;;18191:195;;;;:::o;18392:419::-;18558:4;18596:2;18585:9;18581:18;18573:26;;18645:9;18639:4;18635:20;18631:1;18620:9;18616:17;18609:47;18673:131;18799:4;18673:131;:::i;:::-;18665:139;;18563:248;;;:::o;18817:419::-;18983:4;19021:2;19010:9;19006:18;18998:26;;19070:9;19064:4;19060:20;19056:1;19045:9;19041:17;19034:47;19098:131;19224:4;19098:131;:::i;:::-;19090:139;;18988:248;;;:::o;19242:419::-;19408:4;19446:2;19435:9;19431:18;19423:26;;19495:9;19489:4;19485:20;19481:1;19470:9;19466:17;19459:47;19523:131;19649:4;19523:131;:::i;:::-;19515:139;;19413:248;;;:::o;19667:419::-;19833:4;19871:2;19860:9;19856:18;19848:26;;19920:9;19914:4;19910:20;19906:1;19895:9;19891:17;19884:47;19948:131;20074:4;19948:131;:::i;:::-;19940:139;;19838:248;;;:::o;20092:419::-;20258:4;20296:2;20285:9;20281:18;20273:26;;20345:9;20339:4;20335:20;20331:1;20320:9;20316:17;20309:47;20373:131;20499:4;20373:131;:::i;:::-;20365:139;;20263:248;;;:::o;20517:419::-;20683:4;20721:2;20710:9;20706:18;20698:26;;20770:9;20764:4;20760:20;20756:1;20745:9;20741:17;20734:47;20798:131;20924:4;20798:131;:::i;:::-;20790:139;;20688:248;;;:::o;20942:419::-;21108:4;21146:2;21135:9;21131:18;21123:26;;21195:9;21189:4;21185:20;21181:1;21170:9;21166:17;21159:47;21223:131;21349:4;21223:131;:::i;:::-;21215:139;;21113:248;;;:::o;21367:419::-;21533:4;21571:2;21560:9;21556:18;21548:26;;21620:9;21614:4;21610:20;21606:1;21595:9;21591:17;21584:47;21648:131;21774:4;21648:131;:::i;:::-;21640:139;;21538:248;;;:::o;21792:419::-;21958:4;21996:2;21985:9;21981:18;21973:26;;22045:9;22039:4;22035:20;22031:1;22020:9;22016:17;22009:47;22073:131;22199:4;22073:131;:::i;:::-;22065:139;;21963:248;;;:::o;22217:419::-;22383:4;22421:2;22410:9;22406:18;22398:26;;22470:9;22464:4;22460:20;22456:1;22445:9;22441:17;22434:47;22498:131;22624:4;22498:131;:::i;:::-;22490:139;;22388:248;;;:::o;22642:419::-;22808:4;22846:2;22835:9;22831:18;22823:26;;22895:9;22889:4;22885:20;22881:1;22870:9;22866:17;22859:47;22923:131;23049:4;22923:131;:::i;:::-;22915:139;;22813:248;;;:::o;23067:419::-;23233:4;23271:2;23260:9;23256:18;23248:26;;23320:9;23314:4;23310:20;23306:1;23295:9;23291:17;23284:47;23348:131;23474:4;23348:131;:::i;:::-;23340:139;;23238:248;;;:::o;23492:419::-;23658:4;23696:2;23685:9;23681:18;23673:26;;23745:9;23739:4;23735:20;23731:1;23720:9;23716:17;23709:47;23773:131;23899:4;23773:131;:::i;:::-;23765:139;;23663:248;;;:::o;23917:222::-;24010:4;24048:2;24037:9;24033:18;24025:26;;24061:71;24129:1;24118:9;24114:17;24105:6;24061:71;:::i;:::-;24015:124;;;;:::o;24145:129::-;24179:6;24206:20;;:::i;:::-;24196:30;;24235:33;24263:4;24255:6;24235:33;:::i;:::-;24186:88;;;:::o;24280:75::-;24313:6;24346:2;24340:9;24330:19;;24320:35;:::o;24361:307::-;24422:4;24512:18;24504:6;24501:30;24498:2;;;24534:18;;:::i;:::-;24498:2;24572:29;24594:6;24572:29;:::i;:::-;24564:37;;24656:4;24650;24646:15;24638:23;;24427:241;;;:::o;24674:308::-;24736:4;24826:18;24818:6;24815:30;24812:2;;;24848:18;;:::i;:::-;24812:2;24886:29;24908:6;24886:29;:::i;:::-;24878:37;;24970:4;24964;24960:15;24952:23;;24741:241;;;:::o;24988:98::-;25039:6;25073:5;25067:12;25057:22;;25046:40;;;:::o;25092:99::-;25144:6;25178:5;25172:12;25162:22;;25151:40;;;:::o;25197:168::-;25280:11;25314:6;25309:3;25302:19;25354:4;25349:3;25345:14;25330:29;;25292:73;;;;:::o;25371:147::-;25472:11;25509:3;25494:18;;25484:34;;;;:::o;25524:169::-;25608:11;25642:6;25637:3;25630:19;25682:4;25677:3;25673:14;25658:29;;25620:73;;;;:::o;25699:148::-;25801:11;25838:3;25823:18;;25813:34;;;;:::o;25853:305::-;25893:3;25912:20;25930:1;25912:20;:::i;:::-;25907:25;;25946:20;25964:1;25946:20;:::i;:::-;25941:25;;26100:1;26032:66;26028:74;26025:1;26022:81;26019:2;;;26106:18;;:::i;:::-;26019:2;26150:1;26147;26143:9;26136:16;;25897:261;;;;:::o;26164:185::-;26204:1;26221:20;26239:1;26221:20;:::i;:::-;26216:25;;26255:20;26273:1;26255:20;:::i;:::-;26250:25;;26294:1;26284:2;;26299:18;;:::i;:::-;26284:2;26341:1;26338;26334:9;26329:14;;26206:143;;;;:::o;26355:348::-;26395:7;26418:20;26436:1;26418:20;:::i;:::-;26413:25;;26452:20;26470:1;26452:20;:::i;:::-;26447:25;;26640:1;26572:66;26568:74;26565:1;26562:81;26557:1;26550:9;26543:17;26539:105;26536:2;;;26647:18;;:::i;:::-;26536:2;26695:1;26692;26688:9;26677:20;;26403:300;;;;:::o;26709:191::-;26749:4;26769:20;26787:1;26769:20;:::i;:::-;26764:25;;26803:20;26821:1;26803:20;:::i;:::-;26798:25;;26842:1;26839;26836:8;26833:2;;;26847:18;;:::i;:::-;26833:2;26892:1;26889;26885:9;26877:17;;26754:146;;;;:::o;26906:96::-;26943:7;26972:24;26990:5;26972:24;:::i;:::-;26961:35;;26951:51;;;:::o;27008:90::-;27042:7;27085:5;27078:13;27071:21;27060:32;;27050:48;;;:::o;27104:149::-;27140:7;27180:66;27173:5;27169:78;27158:89;;27148:105;;;:::o;27259:120::-;27320:7;27349:24;27367:5;27349:24;:::i;:::-;27338:35;;27328:51;;;:::o;27385:126::-;27422:7;27462:42;27455:5;27451:54;27440:65;;27430:81;;;:::o;27517:77::-;27554:7;27583:5;27572:16;;27562:32;;;:::o;27600:109::-;27636:7;27676:26;27669:5;27665:38;27654:49;;27644:65;;;:::o;27715:174::-;27789:9;27822:61;27877:5;27822:61;:::i;:::-;27809:74;;27799:90;;;:::o;27895:137::-;27969:9;28002:24;28020:5;28002:24;:::i;:::-;27989:37;;27979:53;;;:::o;28038:154::-;28122:6;28117:3;28112;28099:30;28184:1;28175:6;28170:3;28166:16;28159:27;28089:103;;;:::o;28198:307::-;28266:1;28276:113;28290:6;28287:1;28284:13;28276:113;;;28375:1;28370:3;28366:11;28360:18;28356:1;28351:3;28347:11;28340:39;28312:2;28309:1;28305:10;28300:15;;28276:113;;;28407:6;28404:1;28401:13;28398:2;;;28487:1;28478:6;28473:3;28469:16;28462:27;28398:2;28247:258;;;;:::o;28511:320::-;28555:6;28592:1;28586:4;28582:12;28572:22;;28639:1;28633:4;28629:12;28660:18;28650:2;;28716:4;28708:6;28704:17;28694:27;;28650:2;28778;28770:6;28767:14;28747:18;28744:38;28741:2;;;28797:18;;:::i;:::-;28741:2;28562:269;;;;:::o;28837:281::-;28920:27;28942:4;28920:27;:::i;:::-;28912:6;28908:40;29050:6;29038:10;29035:22;29014:18;29002:10;28999:34;28996:62;28993:2;;;29061:18;;:::i;:::-;28993:2;29101:10;29097:2;29090:22;28880:238;;;:::o;29124:233::-;29163:3;29186:24;29204:5;29186:24;:::i;:::-;29177:33;;29232:66;29225:5;29222:77;29219:2;;;29302:18;;:::i;:::-;29219:2;29349:1;29342:5;29338:13;29331:20;;29167:190;;;:::o;29363:176::-;29395:1;29412:20;29430:1;29412:20;:::i;:::-;29407:25;;29446:20;29464:1;29446:20;:::i;:::-;29441:25;;29485:1;29475:2;;29490:18;;:::i;:::-;29475:2;29531:1;29528;29524:9;29519:14;;29397:142;;;;:::o;29545:180::-;29593:77;29590:1;29583:88;29690:4;29687:1;29680:15;29714:4;29711:1;29704:15;29731:180;29779:77;29776:1;29769:88;29876:4;29873:1;29866:15;29900:4;29897:1;29890:15;29917:180;29965:77;29962:1;29955:88;30062:4;30059:1;30052:15;30086:4;30083:1;30076:15;30103:180;30151:77;30148:1;30141:88;30248:4;30245:1;30238:15;30272:4;30269:1;30262:15;30289:102;30330:6;30381:2;30377:7;30372:2;30365:5;30361:14;30357:28;30347:38;;30337:54;;;:::o;30397:220::-;30537:34;30533:1;30525:6;30521:14;30514:58;30606:3;30601:2;30593:6;30589:15;30582:28;30503:114;:::o;30623:174::-;30763:26;30759:1;30751:6;30747:14;30740:50;30729:68;:::o;30803:225::-;30943:34;30939:1;30931:6;30927:14;30920:58;31012:8;31007:2;30999:6;30995:15;30988:33;30909:119;:::o;31034:226::-;31174:34;31170:1;31162:6;31158:14;31151:58;31243:9;31238:2;31230:6;31226:15;31219:34;31140:120;:::o;31266:175::-;31406:27;31402:1;31394:6;31390:14;31383:51;31372:69;:::o;31447:176::-;31587:28;31583:1;31575:6;31571:14;31564:52;31553:70;:::o;31629:221::-;31769:34;31765:1;31757:6;31753:14;31746:58;31838:4;31833:2;31825:6;31821:15;31814:29;31735:115;:::o;31856:182::-;31996:34;31992:1;31984:6;31980:14;31973:58;31962:76;:::o;32044:169::-;32184:21;32180:1;32172:6;32168:14;32161:45;32150:63;:::o;32219:171::-;32359:23;32355:1;32347:6;32343:14;32336:47;32325:65;:::o;32396:114::-;32502:8;:::o;32516:229::-;32656:34;32652:1;32644:6;32640:14;32633:58;32725:12;32720:2;32712:6;32708:15;32701:37;32622:123;:::o;32751:182::-;32891:34;32887:1;32879:6;32875:14;32868:58;32857:76;:::o;32939:175::-;33079:27;33075:1;33067:6;33063:14;33056:51;33045:69;:::o;33120:122::-;33193:24;33211:5;33193:24;:::i;:::-;33186:5;33183:35;33173:2;;33232:1;33229;33222:12;33173:2;33163:79;:::o;33248:116::-;33318:21;33333:5;33318:21;:::i;:::-;33311:5;33308:32;33298:2;;33354:1;33351;33344:12;33298:2;33288:76;:::o;33370:120::-;33442:23;33459:5;33442:23;:::i;:::-;33435:5;33432:34;33422:2;;33480:1;33477;33470:12;33422:2;33412:78;:::o;33496:170::-;33593:48;33635:5;33593:48;:::i;:::-;33586:5;33583:59;33573:2;;33656:1;33653;33646:12;33573:2;33563:103;:::o;33672:122::-;33745:24;33763:5;33745:24;:::i;:::-;33738:5;33735:35;33725:2;;33784:1;33781;33774:12;33725:2;33715:79;:::o;33800:120::-;33872:23;33889:5;33872:23;:::i;:::-;33865:5;33862:34;33852:2;;33910:1;33907;33900:12;33852:2;33842:78;:::o

Swarm Source

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