ETH Price: $3,099.55 (+0.52%)
Gas: 4 Gwei

Token

MVPD (MVPD)
 

Overview

Max Total Supply

911 MVPD

Holders

285

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hattorihanso.eth
Balance
1 MVPD
0x15bd815a3f6fb351b06df8b0b82e0be63a529270
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Metaverse Police Department has recruited 911 cute Koala Kops to throw stuff at scammers Genesis **free mint** on Jan 29th 2022 minted out in under 4 minutes . MVPD are a doxxed team creating a brand with utility that has not yet been announced.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MVPD

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT AND GPL-3.0

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

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

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

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

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

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

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

    uint256 updatedIndex = startTokenId;

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

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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


pragma solidity >=0.7.0 <=0.9.0;



contract MVPD is Ownable, ERC721A {
    string private _baseTokenURI;
    uint256 public maxSupply = 911;
    uint256 public maxMintPerTransaction = 2;
    bool public paused = true;

    constructor(string memory _initBaseURI) ERC721A("MVPD", "MVPD", 50, maxSupply) {
        setBaseURI(_initBaseURI);
    }

    function mint(uint256 quantity) public {
        require(!paused, "minting is paused");
        require(totalSupply() + quantity <= maxSupply, "reached max supply");
        require(quantity <= maxMintPerTransaction, "quantity to mint is too high");
        _safeMint(msg.sender, quantity);
    }

    function foundersMint(uint256 quantity) public onlyOwner {
        require(totalSupply() + quantity <= maxSupply, "reached max supply");
        _safeMint(msg.sender, quantity) ;
    }

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

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

    function setMaxMintPerTransaction(uint256 maxMint) public onlyOwner {
        maxMintPerTransaction = maxMint;
    }

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

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

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

    function getOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory) {
        return ownershipOf(tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"foundersMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setMaxMintPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526000600181815560089190915561038f600a556002600b55600c805460ff191690911790553480156200003657600080fd5b50604051620027b4380380620027b4833981016040819052620000599162000350565b604051806040016040528060048152602001631355941160e21b815250604051806040016040528060048152602001631355941160e21b8152506032600a54620000b2620000ac620001cb60201b60201c565b620001cf565b600081116200011f5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001815760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000116565b83516200019690600290602087019062000294565b508251620001ac90600390602086019062000294565b5060a09190915260805250620001c49050816200021f565b5062000469565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b031633146200027b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000116565b80516200029090600990602084019062000294565b5050565b828054620002a2906200042c565b90600052602060002090601f016020900481019282620002c6576000855562000311565b82601f10620002e157805160ff191683800117855562000311565b8280016001018555821562000311579182015b8281111562000311578251825591602001919060010190620002f4565b506200031f92915062000323565b5090565b5b808211156200031f576000815560010162000324565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200036457600080fd5b82516001600160401b03808211156200037c57600080fd5b818501915085601f8301126200039157600080fd5b815181811115620003a657620003a66200033a565b604051601f8201601f19908116603f01168101908382118183101715620003d157620003d16200033a565b816040528281528886848701011115620003ea57600080fd5b600093505b828410156200040e5784840186015181850187015292850192620003ef565b82841115620004205760008684830101525b98975050505050505050565b600181811c908216806200044157607f821691505b602082108114156200046357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161231a6200049a600039600081816116230152818161164d0152611a6401526000505061231a6000f3fe6080604052600436106101d85760003560e01c806352d8a4d111610102578063a0712d6811610095578063d5abeb0111610064578063d5abeb011461056c578063d7224ba014610582578063e985e9c514610598578063f2fde38b146105e157600080fd5b8063a0712d68146104ec578063a22cb4651461050c578063b88d4fde1461052c578063c87b56dd1461054c57600080fd5b806370a08231116100d157806370a0823114610484578063715018a6146104a45780638da5cb5b146104b957806395d89b41146104d757600080fd5b806352d8a4d1146103dc57806355f804b31461042a5780635c975abb1461044a5780636352211e1461046457600080fd5b806323b872dd1161017a57806342842e0e1161014957806342842e0e1461034f578063438b63001461036f5780634619fd101461039c5780634f6ccce7146103bc57600080fd5b806323b872dd146102e75780632e6cebe5146103075780632f745c59146103275780633ccfd60b1461034757600080fd5b806306fdde03116101b657806306fdde0314610258578063081812fc1461027a578063095ea7b3146102b257806318160ddd146102d257600080fd5b806301f56997146101dd57806301ffc9a71461020657806302329a2914610236575b600080fd5b3480156101e957600080fd5b506101f3600b5481565b6040519081526020015b60405180910390f35b34801561021257600080fd5b50610226610221366004611d28565b610601565b60405190151581526020016101fd565b34801561024257600080fd5b50610256610251366004611d5a565b61066e565b005b34801561026457600080fd5b5061026d6106b4565b6040516101fd9190611dcd565b34801561028657600080fd5b5061029a610295366004611de0565b610746565b6040516001600160a01b0390911681526020016101fd565b3480156102be57600080fd5b506102566102cd366004611e10565b6107d1565b3480156102de57600080fd5b506001546101f3565b3480156102f357600080fd5b50610256610302366004611e3a565b6108e9565b34801561031357600080fd5b50610256610322366004611de0565b6108f4565b34801561033357600080fd5b506101f3610342366004611e10565b610923565b610256610a9c565b34801561035b57600080fd5b5061025661036a366004611e3a565b610b53565b34801561037b57600080fd5b5061038f61038a366004611e76565b610b6e565b6040516101fd9190611e91565b3480156103a857600080fd5b506102566103b7366004611de0565b610c10565b3480156103c857600080fd5b506101f36103d7366004611de0565b610c9e565b3480156103e857600080fd5b506103fc6103f7366004611de0565b610d07565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016101fd565b34801561043657600080fd5b50610256610445366004611f61565b610d24565b34801561045657600080fd5b50600c546102269060ff1681565b34801561047057600080fd5b5061029a61047f366004611de0565b610d65565b34801561049057600080fd5b506101f361049f366004611e76565b610d77565b3480156104b057600080fd5b50610256610e08565b3480156104c557600080fd5b506000546001600160a01b031661029a565b3480156104e357600080fd5b5061026d610e3e565b3480156104f857600080fd5b50610256610507366004611de0565b610e4d565b34801561051857600080fd5b50610256610527366004611faa565b610f40565b34801561053857600080fd5b50610256610547366004611fdd565b611005565b34801561055857600080fd5b5061026d610567366004611de0565b61103e565b34801561057857600080fd5b506101f3600a5481565b34801561058e57600080fd5b506101f360085481565b3480156105a457600080fd5b506102266105b3366004612059565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105ed57600080fd5b506102566105fc366004611e76565b61110b565b60006001600160e01b031982166380ac58cd60e01b148061063257506001600160e01b03198216635b5e139f60e01b145b8061064d57506001600160e01b0319821663780e9d6360e01b145b8061066857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146106a15760405162461bcd60e51b815260040161069890612083565b60405180910390fd5b600c805460ff1916911515919091179055565b6060600280546106c3906120b8565b80601f01602080910402602001604051908101604052809291908181526020018280546106ef906120b8565b801561073c5780601f106107115761010080835404028352916020019161073c565b820191906000526020600020905b81548152906001019060200180831161071f57829003601f168201915b5050505050905090565b6000610753826001541190565b6107b55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610698565b506000908152600660205260409020546001600160a01b031690565b60006107dc82610d65565b9050806001600160a01b0316836001600160a01b0316141561084b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610698565b336001600160a01b0382161480610867575061086781336105b3565b6108d95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610698565b6108e48383836111a3565b505050565b6108e48383836111ff565b6000546001600160a01b0316331461091e5760405162461bcd60e51b815260040161069890612083565b600b55565b600061092e83610d77565b82106109875760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610698565b600061099260015490565b905060008060005b83811015610a3c576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109ed57805192505b876001600160a01b0316836001600160a01b03161415610a295786841415610a1b5750935061066892505050565b83610a2581612109565b9450505b5080610a3481612109565b91505061099a565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610698565b6000546001600160a01b03163314610ac65760405162461bcd60e51b815260040161069890612083565b604051600090339047908381818185875af1925050503d8060008114610b08576040519150601f19603f3d011682016040523d82523d6000602084013e610b0d565b606091505b5050905080610b505760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b6044820152606401610698565b50565b6108e483838360405180602001604052806000815250611005565b60606000610b7b83610d77565b905060008167ffffffffffffffff811115610b9857610b98611ed5565b604051908082528060200260200182016040528015610bc1578160200160208202803683370190505b50905060005b82811015610c0857610bd98582610923565b828281518110610beb57610beb612124565b602090810291909101015280610c0081612109565b915050610bc7565b509392505050565b6000546001600160a01b03163314610c3a5760405162461bcd60e51b815260040161069890612083565b600a5481610c4760015490565b610c51919061213a565b1115610c945760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610698565b610b503382611587565b6000610ca960015490565b8210610d035760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610698565b5090565b6040805180820190915260008082526020820152610668826115a1565b6000546001600160a01b03163314610d4e5760405162461bcd60e51b815260040161069890612083565b8051610d61906009906020840190611c82565b5050565b6000610d70826115a1565b5192915050565b60006001600160a01b038216610de35760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610698565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610e325760405162461bcd60e51b815260040161069890612083565b610e3c600061174b565b565b6060600380546106c3906120b8565b600c5460ff1615610e945760405162461bcd60e51b81526020600482015260116024820152701b5a5b9d1a5b99c81a5cc81c185d5cd959607a1b6044820152606401610698565b600a5481610ea160015490565b610eab919061213a565b1115610eee5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610698565b600b54811115610c945760405162461bcd60e51b815260206004820152601c60248201527f7175616e7469747920746f206d696e7420697320746f6f2068696768000000006044820152606401610698565b6001600160a01b038216331415610f995760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610698565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110108484846111ff565b61101c8484848461179b565b6110385760405162461bcd60e51b815260040161069890612152565b50505050565b606061104b826001541190565b6110af5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610698565b60006110b961189a565b905060008151116110d95760405180602001604052806000815250611104565b806110e3846118a9565b6040516020016110f49291906121a5565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146111355760405162461bcd60e51b815260040161069890612083565b6001600160a01b03811661119a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610698565b610b508161174b565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061120a826115a1565b80519091506000906001600160a01b0316336001600160a01b0316148061124157503361123684610746565b6001600160a01b0316145b806112535750815161125390336105b3565b9050806112bd5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610698565b846001600160a01b031682600001516001600160a01b0316146113315760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610698565b6001600160a01b0384166113955760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610698565b6113a560008484600001516111a3565b6001600160a01b03851660009081526005602052604081208054600192906113d79084906001600160801b03166121d4565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611423918591166121fc565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556114ab84600161213a565b6000818152600460205260409020549091506001600160a01b031661153d576114d5816001541190565b1561153d5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610d618282604051806020016040528060008152506119a7565b60408051808201909152600080825260208201526115c0826001541190565b61161f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610698565b60007f00000000000000000000000000000000000000000000000000000000000000008310611680576116727f00000000000000000000000000000000000000000000000000000000000000008461221e565b61167d90600161213a565b90505b825b8181106116ea576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116d757949350505050565b50806116e281612235565b915050611682565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610698565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561188e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117df90339089908890889060040161224c565b6020604051808303816000875af192505050801561181a575060408051601f3d908101601f1916820190925261181791810190612289565b60015b611874573d808015611848576040519150601f19603f3d011682016040523d82523d6000602084013e61184d565b606091505b50805161186c5760405162461bcd60e51b815260040161069890612152565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611892565b5060015b949350505050565b6060600980546106c3906120b8565b6060816118cd5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118f757806118e181612109565b91506118f09050600a836122bc565b91506118d1565b60008167ffffffffffffffff81111561191257611912611ed5565b6040519080825280601f01601f19166020018201604052801561193c576020820181803683370190505b5090505b84156118925761195160018361221e565b915061195e600a866122d0565b61196990603061213a565b60f81b81838151811061197e5761197e612124565b60200101906001600160f81b031916908160001a9053506119a0600a866122bc565b9450611940565b6001546001600160a01b038416611a0a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610698565b611a15816001541190565b15611a625760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610698565b7f0000000000000000000000000000000000000000000000000000000000000000831115611add5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610698565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b399087906121fc565b6001600160801b03168152602001858360200151611b5791906121fc565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611c775760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c3b600088848861179b565b611c575760405162461bcd60e51b815260040161069890612152565b81611c6181612109565b9250508080611c6f90612109565b915050611bee565b50600181905561157f565b828054611c8e906120b8565b90600052602060002090601f016020900481019282611cb05760008555611cf6565b82601f10611cc957805160ff1916838001178555611cf6565b82800160010185558215611cf6579182015b82811115611cf6578251825591602001919060010190611cdb565b50610d039291505b80821115610d035760008155600101611cfe565b6001600160e01b031981168114610b5057600080fd5b600060208284031215611d3a57600080fd5b813561110481611d12565b80358015158114611d5557600080fd5b919050565b600060208284031215611d6c57600080fd5b61110482611d45565b60005b83811015611d90578181015183820152602001611d78565b838111156110385750506000910152565b60008151808452611db9816020860160208601611d75565b601f01601f19169290920160200192915050565b6020815260006111046020830184611da1565b600060208284031215611df257600080fd5b5035919050565b80356001600160a01b0381168114611d5557600080fd5b60008060408385031215611e2357600080fd5b611e2c83611df9565b946020939093013593505050565b600080600060608486031215611e4f57600080fd5b611e5884611df9565b9250611e6660208501611df9565b9150604084013590509250925092565b600060208284031215611e8857600080fd5b61110482611df9565b6020808252825182820181905260009190848201906040850190845b81811015611ec957835183529284019291840191600101611ead565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f0657611f06611ed5565b604051601f8501601f19908116603f01168101908282118183101715611f2e57611f2e611ed5565b81604052809350858152868686011115611f4757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f7357600080fd5b813567ffffffffffffffff811115611f8a57600080fd5b8201601f81018413611f9b57600080fd5b61189284823560208401611eeb565b60008060408385031215611fbd57600080fd5b611fc683611df9565b9150611fd460208401611d45565b90509250929050565b60008060008060808587031215611ff357600080fd5b611ffc85611df9565b935061200a60208601611df9565b925060408501359150606085013567ffffffffffffffff81111561202d57600080fd5b8501601f8101871361203e57600080fd5b61204d87823560208401611eeb565b91505092959194509250565b6000806040838503121561206c57600080fd5b61207583611df9565b9150611fd460208401611df9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806120cc57607f821691505b602082108114156120ed57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600060001982141561211d5761211d6120f3565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000821982111561214d5761214d6120f3565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516121b7818460208801611d75565b8351908301906121cb818360208801611d75565b01949350505050565b60006001600160801b03838116908316818110156121f4576121f46120f3565b039392505050565b60006001600160801b038083168185168083038211156121cb576121cb6120f3565b600082821015612230576122306120f3565b500390565b600081612244576122446120f3565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061227f90830184611da1565b9695505050505050565b60006020828403121561229b57600080fd5b815161110481611d12565b634e487b7160e01b600052601260045260246000fd5b6000826122cb576122cb6122a6565b500490565b6000826122df576122df6122a6565b50069056fea26469706673582212200648acefceb00f00976659e11103b336597316a14ef8c75d9c76e6b712bf102064736f6c634300080a003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d506945717854424e67544d625751426d7a766a6d62336d646856635246453348775642624a725263325769592f00000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806352d8a4d111610102578063a0712d6811610095578063d5abeb0111610064578063d5abeb011461056c578063d7224ba014610582578063e985e9c514610598578063f2fde38b146105e157600080fd5b8063a0712d68146104ec578063a22cb4651461050c578063b88d4fde1461052c578063c87b56dd1461054c57600080fd5b806370a08231116100d157806370a0823114610484578063715018a6146104a45780638da5cb5b146104b957806395d89b41146104d757600080fd5b806352d8a4d1146103dc57806355f804b31461042a5780635c975abb1461044a5780636352211e1461046457600080fd5b806323b872dd1161017a57806342842e0e1161014957806342842e0e1461034f578063438b63001461036f5780634619fd101461039c5780634f6ccce7146103bc57600080fd5b806323b872dd146102e75780632e6cebe5146103075780632f745c59146103275780633ccfd60b1461034757600080fd5b806306fdde03116101b657806306fdde0314610258578063081812fc1461027a578063095ea7b3146102b257806318160ddd146102d257600080fd5b806301f56997146101dd57806301ffc9a71461020657806302329a2914610236575b600080fd5b3480156101e957600080fd5b506101f3600b5481565b6040519081526020015b60405180910390f35b34801561021257600080fd5b50610226610221366004611d28565b610601565b60405190151581526020016101fd565b34801561024257600080fd5b50610256610251366004611d5a565b61066e565b005b34801561026457600080fd5b5061026d6106b4565b6040516101fd9190611dcd565b34801561028657600080fd5b5061029a610295366004611de0565b610746565b6040516001600160a01b0390911681526020016101fd565b3480156102be57600080fd5b506102566102cd366004611e10565b6107d1565b3480156102de57600080fd5b506001546101f3565b3480156102f357600080fd5b50610256610302366004611e3a565b6108e9565b34801561031357600080fd5b50610256610322366004611de0565b6108f4565b34801561033357600080fd5b506101f3610342366004611e10565b610923565b610256610a9c565b34801561035b57600080fd5b5061025661036a366004611e3a565b610b53565b34801561037b57600080fd5b5061038f61038a366004611e76565b610b6e565b6040516101fd9190611e91565b3480156103a857600080fd5b506102566103b7366004611de0565b610c10565b3480156103c857600080fd5b506101f36103d7366004611de0565b610c9e565b3480156103e857600080fd5b506103fc6103f7366004611de0565b610d07565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016101fd565b34801561043657600080fd5b50610256610445366004611f61565b610d24565b34801561045657600080fd5b50600c546102269060ff1681565b34801561047057600080fd5b5061029a61047f366004611de0565b610d65565b34801561049057600080fd5b506101f361049f366004611e76565b610d77565b3480156104b057600080fd5b50610256610e08565b3480156104c557600080fd5b506000546001600160a01b031661029a565b3480156104e357600080fd5b5061026d610e3e565b3480156104f857600080fd5b50610256610507366004611de0565b610e4d565b34801561051857600080fd5b50610256610527366004611faa565b610f40565b34801561053857600080fd5b50610256610547366004611fdd565b611005565b34801561055857600080fd5b5061026d610567366004611de0565b61103e565b34801561057857600080fd5b506101f3600a5481565b34801561058e57600080fd5b506101f360085481565b3480156105a457600080fd5b506102266105b3366004612059565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105ed57600080fd5b506102566105fc366004611e76565b61110b565b60006001600160e01b031982166380ac58cd60e01b148061063257506001600160e01b03198216635b5e139f60e01b145b8061064d57506001600160e01b0319821663780e9d6360e01b145b8061066857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146106a15760405162461bcd60e51b815260040161069890612083565b60405180910390fd5b600c805460ff1916911515919091179055565b6060600280546106c3906120b8565b80601f01602080910402602001604051908101604052809291908181526020018280546106ef906120b8565b801561073c5780601f106107115761010080835404028352916020019161073c565b820191906000526020600020905b81548152906001019060200180831161071f57829003601f168201915b5050505050905090565b6000610753826001541190565b6107b55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610698565b506000908152600660205260409020546001600160a01b031690565b60006107dc82610d65565b9050806001600160a01b0316836001600160a01b0316141561084b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610698565b336001600160a01b0382161480610867575061086781336105b3565b6108d95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610698565b6108e48383836111a3565b505050565b6108e48383836111ff565b6000546001600160a01b0316331461091e5760405162461bcd60e51b815260040161069890612083565b600b55565b600061092e83610d77565b82106109875760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610698565b600061099260015490565b905060008060005b83811015610a3c576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109ed57805192505b876001600160a01b0316836001600160a01b03161415610a295786841415610a1b5750935061066892505050565b83610a2581612109565b9450505b5080610a3481612109565b91505061099a565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610698565b6000546001600160a01b03163314610ac65760405162461bcd60e51b815260040161069890612083565b604051600090339047908381818185875af1925050503d8060008114610b08576040519150601f19603f3d011682016040523d82523d6000602084013e610b0d565b606091505b5050905080610b505760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b6044820152606401610698565b50565b6108e483838360405180602001604052806000815250611005565b60606000610b7b83610d77565b905060008167ffffffffffffffff811115610b9857610b98611ed5565b604051908082528060200260200182016040528015610bc1578160200160208202803683370190505b50905060005b82811015610c0857610bd98582610923565b828281518110610beb57610beb612124565b602090810291909101015280610c0081612109565b915050610bc7565b509392505050565b6000546001600160a01b03163314610c3a5760405162461bcd60e51b815260040161069890612083565b600a5481610c4760015490565b610c51919061213a565b1115610c945760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610698565b610b503382611587565b6000610ca960015490565b8210610d035760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610698565b5090565b6040805180820190915260008082526020820152610668826115a1565b6000546001600160a01b03163314610d4e5760405162461bcd60e51b815260040161069890612083565b8051610d61906009906020840190611c82565b5050565b6000610d70826115a1565b5192915050565b60006001600160a01b038216610de35760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610698565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610e325760405162461bcd60e51b815260040161069890612083565b610e3c600061174b565b565b6060600380546106c3906120b8565b600c5460ff1615610e945760405162461bcd60e51b81526020600482015260116024820152701b5a5b9d1a5b99c81a5cc81c185d5cd959607a1b6044820152606401610698565b600a5481610ea160015490565b610eab919061213a565b1115610eee5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610698565b600b54811115610c945760405162461bcd60e51b815260206004820152601c60248201527f7175616e7469747920746f206d696e7420697320746f6f2068696768000000006044820152606401610698565b6001600160a01b038216331415610f995760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610698565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110108484846111ff565b61101c8484848461179b565b6110385760405162461bcd60e51b815260040161069890612152565b50505050565b606061104b826001541190565b6110af5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610698565b60006110b961189a565b905060008151116110d95760405180602001604052806000815250611104565b806110e3846118a9565b6040516020016110f49291906121a5565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146111355760405162461bcd60e51b815260040161069890612083565b6001600160a01b03811661119a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610698565b610b508161174b565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061120a826115a1565b80519091506000906001600160a01b0316336001600160a01b0316148061124157503361123684610746565b6001600160a01b0316145b806112535750815161125390336105b3565b9050806112bd5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610698565b846001600160a01b031682600001516001600160a01b0316146113315760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610698565b6001600160a01b0384166113955760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610698565b6113a560008484600001516111a3565b6001600160a01b03851660009081526005602052604081208054600192906113d79084906001600160801b03166121d4565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611423918591166121fc565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556114ab84600161213a565b6000818152600460205260409020549091506001600160a01b031661153d576114d5816001541190565b1561153d5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610d618282604051806020016040528060008152506119a7565b60408051808201909152600080825260208201526115c0826001541190565b61161f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610698565b60007f00000000000000000000000000000000000000000000000000000000000000328310611680576116727f00000000000000000000000000000000000000000000000000000000000000328461221e565b61167d90600161213a565b90505b825b8181106116ea576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116d757949350505050565b50806116e281612235565b915050611682565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610698565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561188e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117df90339089908890889060040161224c565b6020604051808303816000875af192505050801561181a575060408051601f3d908101601f1916820190925261181791810190612289565b60015b611874573d808015611848576040519150601f19603f3d011682016040523d82523d6000602084013e61184d565b606091505b50805161186c5760405162461bcd60e51b815260040161069890612152565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611892565b5060015b949350505050565b6060600980546106c3906120b8565b6060816118cd5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118f757806118e181612109565b91506118f09050600a836122bc565b91506118d1565b60008167ffffffffffffffff81111561191257611912611ed5565b6040519080825280601f01601f19166020018201604052801561193c576020820181803683370190505b5090505b84156118925761195160018361221e565b915061195e600a866122d0565b61196990603061213a565b60f81b81838151811061197e5761197e612124565b60200101906001600160f81b031916908160001a9053506119a0600a866122bc565b9450611940565b6001546001600160a01b038416611a0a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610698565b611a15816001541190565b15611a625760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610698565b7f0000000000000000000000000000000000000000000000000000000000000032831115611add5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610698565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b399087906121fc565b6001600160801b03168152602001858360200151611b5791906121fc565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611c775760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c3b600088848861179b565b611c575760405162461bcd60e51b815260040161069890612152565b81611c6181612109565b9250508080611c6f90612109565b915050611bee565b50600181905561157f565b828054611c8e906120b8565b90600052602060002090601f016020900481019282611cb05760008555611cf6565b82601f10611cc957805160ff1916838001178555611cf6565b82800160010185558215611cf6579182015b82811115611cf6578251825591602001919060010190611cdb565b50610d039291505b80821115610d035760008155600101611cfe565b6001600160e01b031981168114610b5057600080fd5b600060208284031215611d3a57600080fd5b813561110481611d12565b80358015158114611d5557600080fd5b919050565b600060208284031215611d6c57600080fd5b61110482611d45565b60005b83811015611d90578181015183820152602001611d78565b838111156110385750506000910152565b60008151808452611db9816020860160208601611d75565b601f01601f19169290920160200192915050565b6020815260006111046020830184611da1565b600060208284031215611df257600080fd5b5035919050565b80356001600160a01b0381168114611d5557600080fd5b60008060408385031215611e2357600080fd5b611e2c83611df9565b946020939093013593505050565b600080600060608486031215611e4f57600080fd5b611e5884611df9565b9250611e6660208501611df9565b9150604084013590509250925092565b600060208284031215611e8857600080fd5b61110482611df9565b6020808252825182820181905260009190848201906040850190845b81811015611ec957835183529284019291840191600101611ead565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f0657611f06611ed5565b604051601f8501601f19908116603f01168101908282118183101715611f2e57611f2e611ed5565b81604052809350858152868686011115611f4757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f7357600080fd5b813567ffffffffffffffff811115611f8a57600080fd5b8201601f81018413611f9b57600080fd5b61189284823560208401611eeb565b60008060408385031215611fbd57600080fd5b611fc683611df9565b9150611fd460208401611d45565b90509250929050565b60008060008060808587031215611ff357600080fd5b611ffc85611df9565b935061200a60208601611df9565b925060408501359150606085013567ffffffffffffffff81111561202d57600080fd5b8501601f8101871361203e57600080fd5b61204d87823560208401611eeb565b91505092959194509250565b6000806040838503121561206c57600080fd5b61207583611df9565b9150611fd460208401611df9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806120cc57607f821691505b602082108114156120ed57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600060001982141561211d5761211d6120f3565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000821982111561214d5761214d6120f3565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516121b7818460208801611d75565b8351908301906121cb818360208801611d75565b01949350505050565b60006001600160801b03838116908316818110156121f4576121f46120f3565b039392505050565b60006001600160801b038083168185168083038211156121cb576121cb6120f3565b600082821015612230576122306120f3565b500390565b600081612244576122446120f3565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061227f90830184611da1565b9695505050505050565b60006020828403121561229b57600080fd5b815161110481611d12565b634e487b7160e01b600052601260045260246000fd5b6000826122cb576122cb6122a6565b500490565b6000826122df576122df6122a6565b50069056fea26469706673582212200648acefceb00f00976659e11103b336597316a14ef8c75d9c76e6b712bf102064736f6c634300080a0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d506945717854424e67544d625751426d7a766a6d62336d646856635246453348775642624a725263325769592f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmPiEqxTBNgTMbWQBmzvjmb3mdhVcRFE3HwVBbJrRc2WiY/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d506945717854424e67544d625751426d7a766a6d62336d
Arg [3] : 646856635246453348775642624a725263325769592f00000000000000000000


Deployed Bytecode Sourcemap

39600:1970:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39713:40;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;39713:40:0;;;;;;;;27225:370;;;;;;;;;;-1:-1:-1;27225:370:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;27225:370:0;582:187:1;40786:79:0;;;;;;;;;;-1:-1:-1;40786:79:0;;;;;:::i;:::-;;:::i;:::-;;28951:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30476:204::-;;;;;;;;;;-1:-1:-1;30476:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2224:32:1;;;2206:51;;2194:2;2179:18;30476:204:0;2060:203:1;30039:379:0;;;;;;;;;;-1:-1:-1;30039:379:0;;;;;:::i;:::-;;:::i;25786:94::-;;;;;;;;;;-1:-1:-1;25862:12:0;;25786:94;;31326:142;;;;;;;;;;-1:-1:-1;31326:142:0;;;;;:::i;:::-;;:::i;40660:118::-;;;;;;;;;;-1:-1:-1;40660:118:0;;;;;:::i;:::-;;:::i;26417:744::-;;;;;;;;;;-1:-1:-1;26417:744:0;;;;;:::i;:::-;;:::i;40873:187::-;;;:::i;31531:157::-;;;;;;;;;;-1:-1:-1;31531:157:0;;;;;:::i;:::-;;:::i;41068:358::-;;;;;;;;;;-1:-1:-1;41068:358:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40233:187::-;;;;;;;;;;-1:-1:-1;40233:187:0;;;;;:::i;:::-;;:::i;25949:177::-;;;;;;;;;;-1:-1:-1;25949:177:0;;;;;:::i;:::-;;:::i;41434:133::-;;;;;;;;;;-1:-1:-1;41434:133:0;;;;;:::i;:::-;;:::i;:::-;;;;4096:13:1;;-1:-1:-1;;;;;4092:39:1;4074:58;;4192:4;4180:17;;;4174:24;4200:18;4170:49;4148:20;;;4141:79;;;;4047:18;41434:133:0;3866:360:1;40550:102:0;;;;;;;;;;-1:-1:-1;40550:102:0;;;;;:::i;:::-;;:::i;39760:25::-;;;;;;;;;;-1:-1:-1;39760:25:0;;;;;;;;28774:118;;;;;;;;;;-1:-1:-1;28774:118:0;;;;;:::i;:::-;;:::i;27651:211::-;;;;;;;;;;-1:-1:-1;27651:211:0;;;;;:::i;:::-;;:::i;4777:103::-;;;;;;;;;;;;;:::i;4126:87::-;;;;;;;;;;-1:-1:-1;4172:7:0;4199:6;-1:-1:-1;;;;;4199:6:0;4126:87;;29106:98;;;;;;;;;;;;;:::i;39924:301::-;;;;;;;;;;-1:-1:-1;39924:301:0;;;;;:::i;:::-;;:::i;30744:274::-;;;;;;;;;;-1:-1:-1;30744:274:0;;;;;:::i;:::-;;:::i;31751:311::-;;;;;;;;;;-1:-1:-1;31751:311:0;;;;;:::i;:::-;;:::i;29267:394::-;;;;;;;;;;-1:-1:-1;29267:394:0;;;;;:::i;:::-;;:::i;39676:30::-;;;;;;;;;;;;;;;;36166:43;;;;;;;;;;;;;;;;31081:186;;;;;;;;;;-1:-1:-1;31081:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;31226:25:0;;;31203:4;31226:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31081:186;5035:201;;;;;;;;;;-1:-1:-1;5035:201:0;;;;;:::i;:::-;;:::i;27225:370::-;27352:4;-1:-1:-1;;;;;;27382:40:0;;-1:-1:-1;;;27382:40:0;;:99;;-1:-1:-1;;;;;;;27433:48:0;;-1:-1:-1;;;27433:48:0;27382:99;:160;;;-1:-1:-1;;;;;;;27492:50:0;;-1:-1:-1;;;27492:50:0;27382:160;:207;;;-1:-1:-1;;;;;;;;;;16667:40:0;;;27553:36;27368:221;27225:370;-1:-1:-1;;27225:370:0:o;40786:79::-;4172:7;4199:6;-1:-1:-1;;;;;4199:6:0;2930:10;4346:23;4338:68;;;;-1:-1:-1;;;4338:68:0;;;;;;;:::i;:::-;;;;;;;;;40842:6:::1;:15:::0;;-1:-1:-1;;40842:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40786:79::o;28951:94::-;29005:13;29034:5;29027:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28951:94;:::o;30476:204::-;30544:7;30568:16;30576:7;32388:12;;-1:-1:-1;32378:22:0;32301:105;30568:16;30560:74;;;;-1:-1:-1;;;30560:74:0;;7600:2:1;30560:74:0;;;7582:21:1;7639:2;7619:18;;;7612:30;7678:34;7658:18;;;7651:62;-1:-1:-1;;;7729:18:1;;;7722:43;7782:19;;30560:74:0;7398:409:1;30560:74:0;-1:-1:-1;30650:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30650:24:0;;30476:204::o;30039:379::-;30108:13;30124:24;30140:7;30124:15;:24::i;:::-;30108:40;;30169:5;-1:-1:-1;;;;;30163:11:0;:2;-1:-1:-1;;;;;30163:11:0;;;30155:58;;;;-1:-1:-1;;;30155:58:0;;8014:2:1;30155:58:0;;;7996:21:1;8053:2;8033:18;;;8026:30;8092:34;8072:18;;;8065:62;-1:-1:-1;;;8143:18:1;;;8136:32;8185:19;;30155:58:0;7812:398:1;30155:58:0;2930:10;-1:-1:-1;;;;;30238:21:0;;;;:62;;-1:-1:-1;30263:37:0;30280:5;2930:10;31081:186;:::i;30263:37::-;30222:153;;;;-1:-1:-1;;;30222:153:0;;8417:2:1;30222:153:0;;;8399:21:1;8456:2;8436:18;;;8429:30;8495:34;8475:18;;;8468:62;8566:27;8546:18;;;8539:55;8611:19;;30222:153:0;8215:421:1;30222:153:0;30384:28;30393:2;30397:7;30406:5;30384:8;:28::i;:::-;30101:317;30039:379;;:::o;31326:142::-;31434:28;31444:4;31450:2;31454:7;31434:9;:28::i;40660:118::-;4172:7;4199:6;-1:-1:-1;;;;;4199:6:0;2930:10;4346:23;4338:68;;;;-1:-1:-1;;;4338:68:0;;;;;;;:::i;:::-;40739:21:::1;:31:::0;40660:118::o;26417:744::-;26526:7;26561:16;26571:5;26561:9;:16::i;:::-;26553:5;:24;26545:71;;;;-1:-1:-1;;;26545:71:0;;8843:2:1;26545:71:0;;;8825:21:1;8882:2;8862:18;;;8855:30;8921:34;8901:18;;;8894:62;-1:-1:-1;;;8972:18:1;;;8965:32;9014:19;;26545:71:0;8641:398:1;26545:71:0;26623:22;26648:13;25862:12;;;25786:94;26648:13;26623:38;;26668:19;26698:25;26748:9;26743:350;26767:14;26763:1;:18;26743:350;;;26797:31;26831:14;;;:11;:14;;;;;;;;;26797:48;;;;;;;;;-1:-1:-1;;;;;26797:48:0;;;;;-1:-1:-1;;;26797:48:0;;;;;;;;;;;;26858:28;26854:89;;26919:14;;;-1:-1:-1;26854:89:0;26976:5;-1:-1:-1;;;;;26955:26:0;:17;-1:-1:-1;;;;;26955:26:0;;26951:135;;;27013:5;26998:11;:20;26994:59;;;-1:-1:-1;27040:1:0;-1:-1:-1;27033:8:0;;-1:-1:-1;;;27033:8:0;26994:59;27063:13;;;;:::i;:::-;;;;26951:135;-1:-1:-1;26783:3:0;;;;:::i;:::-;;;;26743:350;;;-1:-1:-1;27099:56:0;;-1:-1:-1;;;27099:56:0;;9518:2:1;27099:56:0;;;9500:21:1;9557:2;9537:18;;;9530:30;9596:34;9576:18;;;9569:62;-1:-1:-1;;;9647:18:1;;;9640:44;9701:19;;27099:56:0;9316:410:1;40873:187:0;4172:7;4199:6;-1:-1:-1;;;;;4199:6:0;2930:10;4346:23;4338:68;;;;-1:-1:-1;;;4338:68:0;;;;;;;:::i;:::-;40948:58:::1;::::0;40930:12:::1;::::0;40956:10:::1;::::0;40980:21:::1;::::0;40930:12;40948:58;40930:12;40948:58;40980:21;40956:10;40948:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40929:77;;;41025:7;41017:35;;;::::0;-1:-1:-1;;;41017:35:0;;10143:2:1;41017:35:0::1;::::0;::::1;10125:21:1::0;10182:2;10162:18;;;10155:30;-1:-1:-1;;;10201:18:1;;;10194:45;10256:18;;41017:35:0::1;9941:339:1::0;41017:35:0::1;40918:142;40873:187::o:0;31531:157::-;31643:39;31660:4;31666:2;31670:7;31643:39;;;;;;;;;;;;:16;:39::i;41068:358::-;41128:16;41157:23;41183:17;41193:6;41183:9;:17::i;:::-;41157:43;;41211:25;41253:15;41239:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41239:30:0;;41211:58;;41285:9;41280:113;41300:15;41296:1;:19;41280:113;;;41351:30;41371:6;41379:1;41351:19;:30::i;:::-;41337:8;41346:1;41337:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;41317:3;;;;:::i;:::-;;;;41280:113;;;-1:-1:-1;41410:8:0;41068:358;-1:-1:-1;;;41068:358:0:o;40233:187::-;4172:7;4199:6;-1:-1:-1;;;;;4199:6:0;2930:10;4346:23;4338:68;;;;-1:-1:-1;;;4338:68:0;;;;;;;:::i;:::-;40337:9:::1;;40325:8;40309:13;25862:12:::0;;;25786:94;40309:13:::1;:24;;;;:::i;:::-;:37;;40301:68;;;::::0;-1:-1:-1;;;40301:68:0;;10752:2:1;40301:68:0::1;::::0;::::1;10734:21:1::0;10791:2;10771:18;;;10764:30;-1:-1:-1;;;10810:18:1;;;10803:48;10868:18;;40301:68:0::1;10550:342:1::0;40301:68:0::1;40380:31;40390:10;40402:8;40380:9;:31::i;25949:177::-:0;26016:7;26048:13;25862:12;;;25786:94;26048:13;26040:5;:21;26032:69;;;;-1:-1:-1;;;26032:69:0;;11099:2:1;26032:69:0;;;11081:21:1;11138:2;11118:18;;;11111:30;11177:34;11157:18;;;11150:62;-1:-1:-1;;;11228:18:1;;;11221:33;11271:19;;26032:69:0;10897:399:1;26032:69:0;-1:-1:-1;26115:5:0;25949:177::o;41434:133::-;-1:-1:-1;;;;;;;;;;;;;;;;;41539:20:0;41551:7;41539:11;:20::i;40550:102::-;4172:7;4199:6;-1:-1:-1;;;;;4199:6:0;2930:10;4346:23;4338:68;;;;-1:-1:-1;;;4338:68:0;;;;;;;:::i;:::-;40621:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40550:102:::0;:::o;28774:118::-;28838:7;28861:20;28873:7;28861:11;:20::i;:::-;:25;;28774:118;-1:-1:-1;;28774:118:0:o;27651:211::-;27715:7;-1:-1:-1;;;;;27739:19:0;;27731:75;;;;-1:-1:-1;;;27731:75:0;;11503:2:1;27731:75:0;;;11485:21:1;11542:2;11522:18;;;11515:30;11581:34;11561:18;;;11554:62;-1:-1:-1;;;11632:18:1;;;11625:41;11683:19;;27731:75:0;11301:407:1;27731:75:0;-1:-1:-1;;;;;;27828:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27828:27:0;;27651:211::o;4777:103::-;4172:7;4199:6;-1:-1:-1;;;;;4199:6:0;2930:10;4346:23;4338:68;;;;-1:-1:-1;;;4338:68:0;;;;;;;:::i;:::-;4842:30:::1;4869:1;4842:18;:30::i;:::-;4777:103::o:0;29106:98::-;29162:13;29191:7;29184:14;;;;;:::i;39924:301::-;39983:6;;;;39982:7;39974:37;;;;-1:-1:-1;;;39974:37:0;;11915:2:1;39974:37:0;;;11897:21:1;11954:2;11934:18;;;11927:30;-1:-1:-1;;;11973:18:1;;;11966:47;12030:18;;39974:37:0;11713:341:1;39974:37:0;40058:9;;40046:8;40030:13;25862:12;;;25786:94;40030:13;:24;;;;:::i;:::-;:37;;40022:68;;;;-1:-1:-1;;;40022:68:0;;10752:2:1;40022:68:0;;;10734:21:1;10791:2;10771:18;;;10764:30;-1:-1:-1;;;10810:18:1;;;10803:48;10868:18;;40022:68:0;10550:342:1;40022:68:0;40121:21;;40109:8;:33;;40101:74;;;;-1:-1:-1;;;40101:74:0;;12261:2:1;40101:74:0;;;12243:21:1;12300:2;12280:18;;;12273:30;12339;12319:18;;;12312:58;12387:18;;40101:74:0;12059:352:1;30744:274:0;-1:-1:-1;;;;;30835:24:0;;2930:10;30835:24;;30827:63;;;;-1:-1:-1;;;30827:63:0;;12618:2:1;30827:63:0;;;12600:21:1;12657:2;12637:18;;;12630:30;12696:28;12676:18;;;12669:56;12742:18;;30827:63:0;12416:350:1;30827:63:0;2930:10;30899:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30899:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30899:53:0;;;;;;;;;;30964:48;;722:41:1;;;30899:42:0;;2930:10;30964:48;;695:18:1;30964:48:0;;;;;;;30744:274;;:::o;31751:311::-;31888:28;31898:4;31904:2;31908:7;31888:9;:28::i;:::-;31939:48;31962:4;31968:2;31972:7;31981:5;31939:22;:48::i;:::-;31923:133;;;;-1:-1:-1;;;31923:133:0;;;;;;;:::i;:::-;31751:311;;;;:::o;29267:394::-;29365:13;29406:16;29414:7;32388:12;;-1:-1:-1;32378:22:0;32301:105;29406:16;29390:97;;;;-1:-1:-1;;;29390:97:0;;13393:2:1;29390:97:0;;;13375:21:1;13432:2;13412:18;;;13405:30;13471:34;13451:18;;;13444:62;-1:-1:-1;;;13522:18:1;;;13515:45;13577:19;;29390:97:0;13191:411:1;29390:97:0;29496:21;29520:10;:8;:10::i;:::-;29496:34;;29575:1;29557:7;29551:21;:25;:104;;;;;;;;;;;;;;;;;29612:7;29621:18;:7;:16;:18::i;:::-;29595:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29551:104;29537:118;29267:394;-1:-1:-1;;;29267:394:0:o;5035:201::-;4172:7;4199:6;-1:-1:-1;;;;;4199:6:0;2930:10;4346:23;4338:68;;;;-1:-1:-1;;;4338:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5124:22:0;::::1;5116:73;;;::::0;-1:-1:-1;;;5116:73:0;;14284:2:1;5116:73:0::1;::::0;::::1;14266:21:1::0;14323:2;14303:18;;;14296:30;14362:34;14342:18;;;14335:62;-1:-1:-1;;;14413:18:1;;;14406:36;14459:19;;5116:73:0::1;14082:402:1::0;5116:73:0::1;5200:28;5219:8;5200:18;:28::i;35988:172::-:0;36085:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36085:29:0;-1:-1:-1;;;;;36085:29:0;;;;;;;;;36126:28;;36085:24;;36126:28;;;;;;;35988:172;;;:::o;34353:1529::-;34450:35;34488:20;34500:7;34488:11;:20::i;:::-;34559:18;;34450:58;;-1:-1:-1;34517:22:0;;-1:-1:-1;;;;;34543:34:0;2930:10;-1:-1:-1;;;;;34543:34:0;;:81;;;-1:-1:-1;2930:10:0;34588:20;34600:7;34588:11;:20::i;:::-;-1:-1:-1;;;;;34588:36:0;;34543:81;:142;;;-1:-1:-1;34652:18:0;;34635:50;;2930:10;31081:186;:::i;34635:50::-;34517:169;;34711:17;34695:101;;;;-1:-1:-1;;;34695:101:0;;14691:2:1;34695:101:0;;;14673:21:1;14730:2;14710:18;;;14703:30;14769:34;14749:18;;;14742:62;-1:-1:-1;;;14820:18:1;;;14813:48;14878:19;;34695:101:0;14489:414:1;34695:101:0;34843:4;-1:-1:-1;;;;;34821:26:0;:13;:18;;;-1:-1:-1;;;;;34821:26:0;;34805:98;;;;-1:-1:-1;;;34805:98:0;;15110:2:1;34805:98:0;;;15092:21:1;15149:2;15129:18;;;15122:30;15188:34;15168:18;;;15161:62;-1:-1:-1;;;15239:18:1;;;15232:36;15285:19;;34805:98:0;14908:402:1;34805:98:0;-1:-1:-1;;;;;34918:16:0;;34910:66;;;;-1:-1:-1;;;34910:66:0;;15517:2:1;34910:66:0;;;15499:21:1;15556:2;15536:18;;;15529:30;15595:34;15575:18;;;15568:62;-1:-1:-1;;;15646:18:1;;;15639:35;15691:19;;34910:66:0;15315:401:1;34910:66:0;35085:49;35102:1;35106:7;35115:13;:18;;;35085:8;:49::i;:::-;-1:-1:-1;;;;;35143:18:0;;;;;;:12;:18;;;;;:31;;35173:1;;35143:18;:31;;35173:1;;-1:-1:-1;;;;;35143:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;35143:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35181:16:0;;-1:-1:-1;35181:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;35181:16:0;;:29;;-1:-1:-1;;35181:29:0;;:::i;:::-;;;-1:-1:-1;;;;;35181:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35240:43:0;;;;;;;;-1:-1:-1;;;;;35240:43:0;;;;;;35266:15;35240:43;;;;;;;;;-1:-1:-1;35217:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;35217:66:0;-1:-1:-1;;;;;;35217:66:0;;;;;;;;;;;35533:11;35229:7;-1:-1:-1;35533:11:0;:::i;:::-;35596:1;35555:24;;;:11;:24;;;;;:29;35511:33;;-1:-1:-1;;;;;;35555:29:0;35551:236;;35613:20;35621:11;32388:12;;-1:-1:-1;32378:22:0;32301:105;35613:20;35609:171;;;35673:97;;;;;;;;35700:18;;-1:-1:-1;;;;;35673:97:0;;;;;;35731:28;;;;35673:97;;;;;;;;;;-1:-1:-1;35646:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;35646:124:0;-1:-1:-1;;;;;;35646:124:0;;;;;;;;;;;;35609:171;35819:7;35815:2;-1:-1:-1;;;;;35800:27:0;35809:4;-1:-1:-1;;;;;35800:27:0;;;;;;;;;;;35834:42;34443:1439;;;34353:1529;;;:::o;32412:98::-;32477:27;32487:2;32491:8;32477:27;;;;;;;;;;;;:9;:27::i;28114:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;28231:16:0;28239:7;32388:12;;-1:-1:-1;32378:22:0;32301:105;28231:16;28223:71;;;;-1:-1:-1;;;28223:71:0;;16432:2:1;28223:71:0;;;16414:21:1;16471:2;16451:18;;;16444:30;16510:34;16490:18;;;16483:62;-1:-1:-1;;;16561:18:1;;;16554:40;16611:19;;28223:71:0;16230:406:1;28223:71:0;28303:26;28351:12;28340:7;:23;28336:93;;28395:22;28405:12;28395:7;:22;:::i;:::-;:26;;28420:1;28395:26;:::i;:::-;28374:47;;28336:93;28457:7;28437:212;28474:18;28466:4;:26;28437:212;;28511:31;28545:17;;;:11;:17;;;;;;;;;28511:51;;;;;;;;;-1:-1:-1;;;;;28511:51:0;;;;;-1:-1:-1;;;28511:51:0;;;;;;;;;;;;28575:28;28571:71;;28623:9;28114:606;-1:-1:-1;;;;28114:606:0:o;28571:71::-;-1:-1:-1;28494:6:0;;;;:::i;:::-;;;;28437:212;;;-1:-1:-1;28657:57:0;;-1:-1:-1;;;28657:57:0;;17114:2:1;28657:57:0;;;17096:21:1;17153:2;17133:18;;;17126:30;17192:34;17172:18;;;17165:62;-1:-1:-1;;;17243:18:1;;;17236:45;17298:19;;28657:57:0;16912:411:1;5396:191:0;5470:16;5489:6;;-1:-1:-1;;;;;5506:17:0;;;-1:-1:-1;;;;;;5506:17:0;;;;;;5539:40;;5489:6;;;;;;;5539:40;;5470:16;5539:40;5459:128;5396:191;:::o;37703:690::-;37840:4;-1:-1:-1;;;;;37857:13:0;;6737:20;6785:8;37853:535;;37896:72;;-1:-1:-1;;;37896:72:0;;-1:-1:-1;;;;;37896:36:0;;;;;:72;;2930:10;;37947:4;;37953:7;;37962:5;;37896:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37896:72:0;;;;;;;;-1:-1:-1;;37896:72:0;;;;;;;;;;;;:::i;:::-;;;37883:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38127:13:0;;38123:215;;38160:61;;-1:-1:-1;;;38160:61:0;;;;;;;:::i;38123:215::-;38306:6;38300:13;38291:6;38287:2;38283:15;38276:38;37883:464;-1:-1:-1;;;;;;38018:55:0;-1:-1:-1;;;38018:55:0;;-1:-1:-1;38011:62:0;;37853:535;-1:-1:-1;38376:4:0;37853:535;37703:690;;;;;;:::o;40428:114::-;40488:13;40521;40514:20;;;;;:::i;412:723::-;468:13;689:10;685:53;;-1:-1:-1;;716:10:0;;;;;;;;;;;;-1:-1:-1;;;716:10:0;;;;;412:723::o;685:53::-;763:5;748:12;804:78;811:9;;804:78;;837:8;;;;:::i;:::-;;-1:-1:-1;860:10:0;;-1:-1:-1;868:2:0;860:10;;:::i;:::-;;;804:78;;;892:19;924:6;914:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;914:17:0;;892:39;;942:154;949:10;;942:154;;976:11;986:1;976:11;;:::i;:::-;;-1:-1:-1;1045:10:0;1053:2;1045:5;:10;:::i;:::-;1032:24;;:2;:24;:::i;:::-;1019:39;;1002:6;1009;1002:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1002:56:0;;;;;;;;-1:-1:-1;1073:11:0;1082:2;1073:11;;:::i;:::-;;;942:154;;32849:1272;32977:12;;-1:-1:-1;;;;;33004:16:0;;32996:62;;;;-1:-1:-1;;;32996:62:0;;18652:2:1;32996:62:0;;;18634:21:1;18691:2;18671:18;;;18664:30;18730:34;18710:18;;;18703:62;-1:-1:-1;;;18781:18:1;;;18774:31;18822:19;;32996:62:0;18450:397:1;32996:62:0;33195:21;33203:12;32388;;-1:-1:-1;32378:22:0;32301:105;33195:21;33194:22;33186:64;;;;-1:-1:-1;;;33186:64:0;;19054:2:1;33186:64:0;;;19036:21:1;19093:2;19073:18;;;19066:30;19132:31;19112:18;;;19105:59;19181:18;;33186:64:0;18852:353:1;33186:64:0;33277:12;33265:8;:24;;33257:71;;;;-1:-1:-1;;;33257:71:0;;19412:2:1;33257:71:0;;;19394:21:1;19451:2;19431:18;;;19424:30;19490:34;19470:18;;;19463:62;-1:-1:-1;;;19541:18:1;;;19534:32;19583:19;;33257:71:0;19210:398:1;33257:71:0;-1:-1:-1;;;;;33440:16:0;;33407:30;33440:16;;;:12;:16;;;;;;;;;33407:49;;;;;;;;;-1:-1:-1;;;;;33407:49:0;;;;;-1:-1:-1;;;33407:49:0;;;;;;;;;;;33482:119;;;;;;;;33502:19;;33407:49;;33482:119;;;33502:39;;33532:8;;33502:39;:::i;:::-;-1:-1:-1;;;;;33482:119:0;;;;;33585:8;33550:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;33482:119:0;;;;;;-1:-1:-1;;;;;33463:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;33463:138:0;;;;;;;;;;;;33636:43;;;;;;;;;;;33662:15;33636:43;;;;;;;;33608:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;33608:71:0;-1:-1:-1;;;;;;33608:71:0;;;;;;;;;;;;;;;;;;33620:12;;33732:281;33756:8;33752:1;:12;33732:281;;;33785:38;;33810:12;;-1:-1:-1;;;;;33785:38:0;;;33802:1;;33785:38;;33802:1;;33785:38;33850:59;33881:1;33885:2;33889:12;33903:5;33850:22;:59::i;:::-;33832:150;;;;-1:-1:-1;;;33832:150:0;;;;;;;:::i;:::-;33991:14;;;;:::i;:::-;;;;33766:3;;;;;:::i;:::-;;;;33732:281;;;-1:-1:-1;34021:12:0;:27;;;34055:60;31751:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:160::-;839:20;;895:13;;888:21;878:32;;868:60;;924:1;921;914:12;868:60;774:160;;;:::o;939:180::-;995:6;1048:2;1036:9;1027:7;1023:23;1019:32;1016:52;;;1064:1;1061;1054:12;1016:52;1087:26;1103:9;1087:26;:::i;1124:258::-;1196:1;1206:113;1220:6;1217:1;1214:13;1206:113;;;1296:11;;;1290:18;1277:11;;;1270:39;1242:2;1235:10;1206:113;;;1337:6;1334:1;1331:13;1328:48;;;-1:-1:-1;;1372:1:1;1354:16;;1347:27;1124:258::o;1387:::-;1429:3;1467:5;1461:12;1494:6;1489:3;1482:19;1510:63;1566:6;1559:4;1554:3;1550:14;1543:4;1536:5;1532:16;1510:63;:::i;:::-;1627:2;1606:15;-1:-1:-1;;1602:29:1;1593:39;;;;1634:4;1589:50;;1387:258;-1:-1:-1;;1387:258:1:o;1650:220::-;1799:2;1788:9;1781:21;1762:4;1819:45;1860:2;1849:9;1845:18;1837:6;1819:45;:::i;1875:180::-;1934:6;1987:2;1975:9;1966:7;1962:23;1958:32;1955:52;;;2003:1;2000;1993:12;1955:52;-1:-1:-1;2026:23:1;;1875:180;-1:-1:-1;1875:180:1:o;2268:173::-;2336:20;;-1:-1:-1;;;;;2385:31:1;;2375:42;;2365:70;;2431:1;2428;2421:12;2446:254;2514:6;2522;2575:2;2563:9;2554:7;2550:23;2546:32;2543:52;;;2591:1;2588;2581:12;2543:52;2614:29;2633:9;2614:29;:::i;:::-;2604:39;2690:2;2675:18;;;;2662:32;;-1:-1:-1;;;2446:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:186::-;3097:6;3150:2;3138:9;3129:7;3125:23;3121:32;3118:52;;;3166:1;3163;3156:12;3118:52;3189:29;3208:9;3189:29;:::i;3229:632::-;3400:2;3452:21;;;3522:13;;3425:18;;;3544:22;;;3371:4;;3400:2;3623:15;;;;3597:2;3582:18;;;3371:4;3666:169;3680:6;3677:1;3674:13;3666:169;;;3741:13;;3729:26;;3810:15;;;;3775:12;;;;3702:1;3695:9;3666:169;;;-1:-1:-1;3852:3:1;;3229:632;-1:-1:-1;;;;;;3229:632:1:o;4231:127::-;4292:10;4287:3;4283:20;4280:1;4273:31;4323:4;4320:1;4313:15;4347:4;4344:1;4337:15;4363:632;4428:5;4458:18;4499:2;4491:6;4488:14;4485:40;;;4505:18;;:::i;:::-;4580:2;4574:9;4548:2;4634:15;;-1:-1:-1;;4630:24:1;;;4656:2;4626:33;4622:42;4610:55;;;4680:18;;;4700:22;;;4677:46;4674:72;;;4726:18;;:::i;:::-;4766:10;4762:2;4755:22;4795:6;4786:15;;4825:6;4817;4810:22;4865:3;4856:6;4851:3;4847:16;4844:25;4841:45;;;4882:1;4879;4872:12;4841:45;4932:6;4927:3;4920:4;4912:6;4908:17;4895:44;4987:1;4980:4;4971:6;4963;4959:19;4955:30;4948:41;;;;4363:632;;;;;:::o;5000:451::-;5069:6;5122:2;5110:9;5101:7;5097:23;5093:32;5090:52;;;5138:1;5135;5128:12;5090:52;5178:9;5165:23;5211:18;5203:6;5200:30;5197:50;;;5243:1;5240;5233:12;5197:50;5266:22;;5319:4;5311:13;;5307:27;-1:-1:-1;5297:55:1;;5348:1;5345;5338:12;5297:55;5371:74;5437:7;5432:2;5419:16;5414:2;5410;5406:11;5371:74;:::i;5456:254::-;5521:6;5529;5582:2;5570:9;5561:7;5557:23;5553:32;5550:52;;;5598:1;5595;5588:12;5550:52;5621:29;5640:9;5621:29;:::i;:::-;5611:39;;5669:35;5700:2;5689:9;5685:18;5669:35;:::i;:::-;5659:45;;5456:254;;;;;:::o;5715:667::-;5810:6;5818;5826;5834;5887:3;5875:9;5866:7;5862:23;5858:33;5855:53;;;5904:1;5901;5894:12;5855:53;5927:29;5946:9;5927:29;:::i;:::-;5917:39;;5975:38;6009:2;5998:9;5994:18;5975:38;:::i;:::-;5965:48;;6060:2;6049:9;6045:18;6032:32;6022:42;;6115:2;6104:9;6100:18;6087:32;6142:18;6134:6;6131:30;6128:50;;;6174:1;6171;6164:12;6128:50;6197:22;;6250:4;6242:13;;6238:27;-1:-1:-1;6228:55:1;;6279:1;6276;6269:12;6228:55;6302:74;6368:7;6363:2;6350:16;6345:2;6341;6337:11;6302:74;:::i;:::-;6292:84;;;5715:667;;;;;;;:::o;6387:260::-;6455:6;6463;6516:2;6504:9;6495:7;6491:23;6487:32;6484:52;;;6532:1;6529;6522:12;6484:52;6555:29;6574:9;6555:29;:::i;:::-;6545:39;;6603:38;6637:2;6626:9;6622:18;6603:38;:::i;6652:356::-;6854:2;6836:21;;;6873:18;;;6866:30;6932:34;6927:2;6912:18;;6905:62;6999:2;6984:18;;6652:356::o;7013:380::-;7092:1;7088:12;;;;7135;;;7156:61;;7210:4;7202:6;7198:17;7188:27;;7156:61;7263:2;7255:6;7252:14;7232:18;7229:38;7226:161;;;7309:10;7304:3;7300:20;7297:1;7290:31;7344:4;7341:1;7334:15;7372:4;7369:1;7362:15;7226:161;;7013:380;;;:::o;9044:127::-;9105:10;9100:3;9096:20;9093:1;9086:31;9136:4;9133:1;9126:15;9160:4;9157:1;9150:15;9176:135;9215:3;-1:-1:-1;;9236:17:1;;9233:43;;;9256:18;;:::i;:::-;-1:-1:-1;9303:1:1;9292:13;;9176:135::o;10285:127::-;10346:10;10341:3;10337:20;10334:1;10327:31;10377:4;10374:1;10367:15;10401:4;10398:1;10391:15;10417:128;10457:3;10488:1;10484:6;10481:1;10478:13;10475:39;;;10494:18;;:::i;:::-;-1:-1:-1;10530:9:1;;10417:128::o;12771:415::-;12973:2;12955:21;;;13012:2;12992:18;;;12985:30;13051:34;13046:2;13031:18;;13024:62;-1:-1:-1;;;13117:2:1;13102:18;;13095:49;13176:3;13161:19;;12771:415::o;13607:470::-;13786:3;13824:6;13818:13;13840:53;13886:6;13881:3;13874:4;13866:6;13862:17;13840:53;:::i;:::-;13956:13;;13915:16;;;;13978:57;13956:13;13915:16;14012:4;14000:17;;13978:57;:::i;:::-;14051:20;;13607:470;-1:-1:-1;;;;13607:470:1:o;15721:246::-;15761:4;-1:-1:-1;;;;;15874:10:1;;;;15844;;15896:12;;;15893:38;;;15911:18;;:::i;:::-;15948:13;;15721:246;-1:-1:-1;;;15721:246:1:o;15972:253::-;16012:3;-1:-1:-1;;;;;16101:2:1;16098:1;16094:10;16131:2;16128:1;16124:10;16162:3;16158:2;16154:12;16149:3;16146:21;16143:47;;;16170:18;;:::i;16641:125::-;16681:4;16709:1;16706;16703:8;16700:34;;;16714:18;;:::i;:::-;-1:-1:-1;16751:9:1;;16641:125::o;16771:136::-;16810:3;16838:5;16828:39;;16847:18;;:::i;:::-;-1:-1:-1;;;16883:18:1;;16771:136::o;17328:489::-;-1:-1:-1;;;;;17597:15:1;;;17579:34;;17649:15;;17644:2;17629:18;;17622:43;17696:2;17681:18;;17674:34;;;17744:3;17739:2;17724:18;;17717:31;;;17522:4;;17765:46;;17791:19;;17783:6;17765:46;:::i;:::-;17757:54;17328:489;-1:-1:-1;;;;;;17328:489:1:o;17822:249::-;17891:6;17944:2;17932:9;17923:7;17919:23;17915:32;17912:52;;;17960:1;17957;17950:12;17912:52;17992:9;17986:16;18011:30;18035:5;18011:30;:::i;18076:127::-;18137:10;18132:3;18128:20;18125:1;18118:31;18168:4;18165:1;18158:15;18192:4;18189:1;18182:15;18208:120;18248:1;18274;18264:35;;18279:18;;:::i;:::-;-1:-1:-1;18313:9:1;;18208:120::o;18333:112::-;18365:1;18391;18381:35;;18396:18;;:::i;:::-;-1:-1:-1;18430:9:1;;18333:112::o

Swarm Source

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