ETH Price: $2,275.94 (-6.00%)

Token

Mech Game Drones (MECHDR)
 

Overview

Max Total Supply

10,000 MECHDR

Holders

517

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
drona.eth
Balance
1 MECHDR
0xaad5746f55a5e496061f70941835af47841a0948
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MechGameDrones

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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;
    }
}

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

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

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

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

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

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

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

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 *
 *
 * @dev original library functions truncated to only needed functions reducing
 * deployed bytecode.
 */
library SafeMath {

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }
}

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


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


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


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


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


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


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


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

contract MechGameDrones is Ownable, ERC721A, ReentrancyGuard {
  using SafeMath for uint256;

  uint256 public immutable amountForDevs;
  uint256 public immutable amountForSaleAndDev;

  address payoutWallet1;
  address payoutWallet2;

  uint256 bytPayoutPercentage;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 amountForAuctionAndDev_,
    uint256 amountForDevs_
  ) ERC721A("Mech Game Drones", "MECHDR", maxBatchSize_, collectionSize_) {
    amountForSaleAndDev = amountForAuctionAndDev_;
    amountForDevs = amountForDevs_;
    require(
      amountForAuctionAndDev_ <= collectionSize_,
      "larger collection size needed"
    );
    //These NFTs are airdropped, but this contract has the functionality to be used as a royalty splitter if needed.
    bytPayoutPercentage = 10;
    payoutWallet1 = address(0x0d362FDeBFAF0F2da880AeADfBCa410CD160E4dc); // mech.game payout wallet
    payoutWallet2 = address(0x02dF807d510ce365D4bB454851Af2d159c3f9D1c ); // byt payout wallet
  }

  /**
    * Standard fallback function to allow contract to receive payments
    */
    fallback() external payable {}

  function updatePayoutWallet(bool bytWallet, address _newPayoutWallet) external onlyOwner{
    if(bytWallet)
    {
      payoutWallet2 = _newPayoutWallet;
    }
    else{
      payoutWallet1 = _newPayoutWallet;
    }
  }

  function airdropDrones(address[] calldata to, uint256[] calldata _count) external onlyOwner {
     for(uint256 i = 0; i < to.length; i++)
     {
        require(totalSupply() + _count[i] <= collectionSize, "Not enough remaining in total collection to mint");

        _safeMint(to[i], _count[i]);
     }
 }

  // metadata URI
  string private _baseTokenURI;

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

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

  // Standard withdraw function that only executes when both wallets are set
  function withdraw() external onlyOwner {
        require(payoutWallet1 != address(0), "wallet 1 not set");
        require(payoutWallet2 != address(0), "wallet 2 not set");
        uint256 balance = address(this).balance;
        uint256 walletBalance = balance.mul(100 - bytPayoutPercentage).div(100);
        payable(payoutWallet1).transfer(walletBalance);
        payable(payoutWallet2).transfer(balance.sub(walletBalance));
    }

  /**
     * @dev Withdraw all erc20 of the signature argument address from this contract and send to prespecified 
     * wallets (Callable by anyone)
    */
    function withdrawERC20(address _token) external {
        IERC20 targetToken = IERC20(_token);
        uint256 balance = targetToken.balanceOf(address(this));
        uint256 walletBalance = balance.mul(bytPayoutPercentage).div(100);
        require(balance > 0, "Nothing to withdraw");

        targetToken.transferFrom(address(this), payoutWallet2, walletBalance);
        targetToken.transferFrom(address(this), payoutWallet1, balance.sub(walletBalance));
    }

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForAuctionAndDev_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"}],"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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"_count","type":"uint256[]"}],"name":"airdropDrones","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForSaleAndDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","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":"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":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":[],"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":"quantity","type":"uint256"}],"name":"setOwnersExplicit","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":"bool","name":"bytWallet","type":"bool"},{"internalType":"address","name":"_newPayoutWallet","type":"address"}],"name":"updatePayoutWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052600060015560006008553480156200001c57600080fd5b5060405162002e7238038062002e728339810160408190526200003f916200035c565b6040518060400160405280601081526020016f4d6563682047616d652044726f6e657360801b8152506040518060400160405280600681526020016526a2a1a4222960d11b8152508585620000a36200009d6200026260201b60201c565b62000266565b60008111620001105760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001725760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000107565b835162000187906002906020870190620002b6565b5082516200019d906003906020860190620002b6565b5060a0919091526080525050600160095560e082905260c0819052828211156200020a5760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000604482015260640162000107565b5050600a600c81905580546001600160a01b0319908116730d362fdebfaf0f2da880aeadfbca410cd160e4dc17909155600b80549091167302df807d510ce365d4bb454851af2d159c3f9d1c17905550620003d09050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002c49062000393565b90600052602060002090601f016020900481019282620002e8576000855562000333565b82601f106200030357805160ff191683800117855562000333565b8280016001018555821562000333579182015b828111156200033357825182559160200191906001019062000316565b506200034192915062000345565b5090565b5b8082111562000341576000815560010162000346565b600080600080608085870312156200037357600080fd5b505082516020840151604085015160609095015191969095509092509050565b600181811c90821680620003a857607f821691505b60208210811415620003ca57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051612a4c6200042660003960006104a5015260006105d8015260008181611ba901528181611bd301526120ac01526000818161105d0152818161187801526118aa0152612a4c6000f3fe6080604052600436106101b85760003560e01c8063715018a6116100eb578063c87b56dd1161008f578063e985e9c511610061578063e985e9c51461053d578063f2fde38b14610586578063f4f3b200146105a6578063fbe1aa51146105c657005b8063c87b56dd146104c7578063d7224ba0146104e7578063dc33e681146104fd578063ddf5f0fa1461051d57005b806395d89b41116100c857806395d89b411461043e578063a22cb46514610453578063b88d4fde14610473578063ba313ca71461049357005b8063715018a6146103bd5780638da5cb5b146103d25780639231ab2a146103f057005b80632f745c591161015d5780634f6ccce71161012f5780634f6ccce71461033d57806355f804b31461035d5780636352211e1461037d57806370a082311461039d57005b80632f745c59146102c85780633203d12f146102e85780633ccfd60b1461030857806342842e0e1461031d57005b8063095ea7b311610196578063095ea7b31461024957806318160ddd1461026957806323b872dd146102885780632d20fb60146102a857005b806301ffc9a7146101ba57806306fdde03146101ef578063081812fc14610211575b005b3480156101c657600080fd5b506101da6101d5366004612630565b6105fa565b60405190151581526020015b60405180910390f35b3480156101fb57600080fd5b50610204610667565b6040516101e691906127a6565b34801561021d57600080fd5b5061023161022c3660046126dc565b6106f9565b6040516001600160a01b0390911681526020016101e6565b34801561025557600080fd5b506101b861026436600461255f565b610789565b34801561027557600080fd5b506001545b6040519081526020016101e6565b34801561029457600080fd5b506101b86102a3366004612410565b6108a1565b3480156102b457600080fd5b506101b86102c33660046126dc565b6108ac565b3480156102d457600080fd5b5061027a6102e336600461255f565b61093f565b3480156102f457600080fd5b506101b8610303366004612612565b610ab8565b34801561031457600080fd5b506101b8610b29565b34801561032957600080fd5b506101b8610338366004612410565b610c91565b34801561034957600080fd5b5061027a6103583660046126dc565b610cac565b34801561036957600080fd5b506101b861037836600461266a565b610d15565b34801561038957600080fd5b506102316103983660046126dc565b610d4b565b3480156103a957600080fd5b5061027a6103b83660046123c2565b610d5d565b3480156103c957600080fd5b506101b8610dee565b3480156103de57600080fd5b506000546001600160a01b0316610231565b3480156103fc57600080fd5b5061041061040b3660046126dc565b610e24565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016101e6565b34801561044a57600080fd5b50610204610e41565b34801561045f57600080fd5b506101b861046e366004612528565b610e50565b34801561047f57600080fd5b506101b861048e36600461244c565b610f15565b34801561049f57600080fd5b5061027a7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104d357600080fd5b506102046104e23660046126dc565b610f4e565b3480156104f357600080fd5b5061027a60085481565b34801561050957600080fd5b5061027a6105183660046123c2565b61101b565b34801561052957600080fd5b506101b8610538366004612589565b611026565b34801561054957600080fd5b506101da6105583660046123dd565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561059257600080fd5b506101b86105a13660046123c2565b611170565b3480156105b257600080fd5b506101b86105c13660046123c2565b61120b565b3480156105d257600080fd5b5061027a7f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b148061062b57506001600160e01b03198216635b5e139f60e01b145b8061064657506001600160e01b0319821663780e9d6360e01b145b8061066157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461067690612930565b80601f01602080910402602001604051908101604052809291908181526020018280546106a290612930565b80156106ef5780601f106106c4576101008083540402835291602001916106ef565b820191906000526020600020905b8154815290600101906020018083116106d257829003601f168201915b5050505050905090565b6000610706826001541190565b61076d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079482610d4b565b9050806001600160a01b0316836001600160a01b031614156108035760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610764565b336001600160a01b038216148061081f575061081f8133610558565b6108915760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610764565b61089c838383611423565b505050565b61089c83838361147f565b6000546001600160a01b031633146108d65760405162461bcd60e51b8152600401610764906127b9565b600260095414156109295760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610764565b600260095561093781611807565b506001600955565b600061094a83610d5d565b82106109a35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610764565b60006109ae60015490565b905060008060005b83811015610a58576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a0957805192505b876001600160a01b0316836001600160a01b03161415610a455786841415610a375750935061066192505050565b83610a418161296b565b9450505b5080610a508161296b565b9150506109b6565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610764565b6000546001600160a01b03163314610ae25760405162461bcd60e51b8152600401610764906127b9565b8115610b0957600b80546001600160a01b0383166001600160a01b03199091161790555050565b600a80546001600160a01b0319166001600160a01b0383161790555b5050565b6000546001600160a01b03163314610b535760405162461bcd60e51b8152600401610764906127b9565b600a546001600160a01b0316610b9e5760405162461bcd60e51b815260206004820152601060248201526f1dd85b1b195d080c481b9bdd081cd95d60821b6044820152606401610764565b600b546001600160a01b0316610be95760405162461bcd60e51b815260206004820152601060248201526f1dd85b1b195d080c881b9bdd081cd95d60821b6044820152606401610764565b60004790506000610c146064610c0e600c546064610c0791906128d6565b85906119f1565b90611a70565b600a546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015610c4f573d6000803e3d6000fd5b50600b546001600160a01b03166108fc610c698484611acb565b6040518115909202916000818181858888f1935050505015801561089c573d6000803e3d6000fd5b61089c83838360405180602001604052806000815250610f15565b6000610cb760015490565b8210610d115760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610764565b5090565b6000546001600160a01b03163314610d3f5760405162461bcd60e51b8152600401610764906127b9565b61089c600d83836122ca565b6000610d5682611b27565b5192915050565b60006001600160a01b038216610dc95760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610764565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610e185760405162461bcd60e51b8152600401610764906127b9565b610e226000611cd1565b565b604080518082019091526000808252602082015261066182611b27565b60606003805461067690612930565b6001600160a01b038216331415610ea95760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610764565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f2084848461147f565b610f2c84848484611d21565b610f485760405162461bcd60e51b8152600401610764906127ee565b50505050565b6060610f5b826001541190565b610fbf5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610764565b6000610fc9611e2f565b90506000815111610fe95760405180602001604052806000815250611014565b80610ff384611e3e565b60405160200161100492919061273a565b6040516020818303038152906040525b9392505050565b600061066182611f3c565b6000546001600160a01b031633146110505760405162461bcd60e51b8152600401610764906127b9565b60005b83811015611169577f000000000000000000000000000000000000000000000000000000000000000083838381811061108e5761108e6129c6565b9050602002013561109e60015490565b6110a89190612863565b111561110f5760405162461bcd60e51b815260206004820152603060248201527f4e6f7420656e6f7567682072656d61696e696e6720696e20746f74616c20636f60448201526f1b1b1958dd1a5bdb881d1bc81b5a5b9d60821b6064820152608401610764565b611157858583818110611124576111246129c6565b905060200201602081019061113991906123c2565b84848481811061114b5761114b6129c6565b90506020020135611fda565b806111618161296b565b915050611053565b5050505050565b6000546001600160a01b0316331461119a5760405162461bcd60e51b8152600401610764906127b9565b6001600160a01b0381166111ff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610764565b61120881611cd1565b50565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a082319060240160206040518083038186803b15801561124f57600080fd5b505afa158015611263573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128791906126f5565b905060006112a56064610c0e600c54856119f190919063ffffffff16565b9050600082116112ed5760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974686472617760681b6044820152606401610764565b600b546040516323b872dd60e01b81523060048201526001600160a01b03918216602482015260448101839052908416906323b872dd90606401602060405180830381600087803b15801561134157600080fd5b505af1158015611355573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137991906125f5565b50600a546001600160a01b03808516916323b872dd9130911661139c8686611acb565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b1580156113eb57600080fd5b505af11580156113ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116991906125f5565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061148a82611b27565b80519091506000906001600160a01b0316336001600160a01b031614806114c15750336114b6846106f9565b6001600160a01b0316145b806114d3575081516114d39033610558565b90508061153d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610764565b846001600160a01b031682600001516001600160a01b0316146115b15760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610764565b6001600160a01b0384166116155760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610764565b6116256000848460000151611423565b6001600160a01b03851660009081526005602052604081208054600192906116579084906001600160801b03166128ae565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926116a391859116612841565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561172b846001612863565b6000818152600460205260409020549091506001600160a01b03166117bd57611755816001541190565b156117bd5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816118575760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610764565b600060016118658484612863565b61186f91906128d6565b905061189c60017f00000000000000000000000000000000000000000000000000000000000000006128d6565b8111156118d1576118ce60017f00000000000000000000000000000000000000000000000000000000000000006128d6565b90505b6118dc816001541190565b6119375760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610764565b815b8181116119dd576000818152600460205260409020546001600160a01b03166119cb57600061196782611b27565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806119d58161296b565b915050611939565b506119e9816001612863565b600855505050565b600082611a0057506000610661565b6000611a0c838561288f565b905082611a19858361287b565b146110145760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610764565b6000808211611ac15760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610764565b611014828461287b565b600082821115611b1d5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610764565b61101482846128d6565b6040805180820190915260008082526020820152611b46826001541190565b611ba55760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610764565b60007f00000000000000000000000000000000000000000000000000000000000000008310611c0657611bf87f0000000000000000000000000000000000000000000000000000000000000000846128d6565b611c03906001612863565b90505b825b818110611c70576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c5d57949350505050565b5080611c6881612919565b915050611c08565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610764565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611e2357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d65903390899088908890600401612769565b602060405180830381600087803b158015611d7f57600080fd5b505af1925050508015611daf575060408051601f3d908101601f19168201909252611dac9181019061264d565b60015b611e09573d808015611ddd576040519150601f19603f3d011682016040523d82523d6000602084013e611de2565b606091505b508051611e015760405162461bcd60e51b8152600401610764906127ee565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e27565b5060015b949350505050565b6060600d805461067690612930565b606081611e625750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e8c5780611e768161296b565b9150611e859050600a8361287b565b9150611e66565b60008167ffffffffffffffff811115611ea757611ea76129dc565b6040519080825280601f01601f191660200182016040528015611ed1576020820181803683370190505b5090505b8415611e2757611ee66001836128d6565b9150611ef3600a86612986565b611efe906030612863565b60f81b818381518110611f1357611f136129c6565b60200101906001600160f81b031916908160001a905350611f35600a8661287b565b9450611ed5565b60006001600160a01b038216611fae5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610764565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b610b258282604051806020016040528060008152506001546001600160a01b0384166120525760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610764565b61205d816001541190565b156120aa5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610764565b7f00000000000000000000000000000000000000000000000000000000000000008311156121255760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610764565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612181908790612841565b6001600160801b0316815260200185836020015161219f9190612841565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122bf5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122836000888488611d21565b61229f5760405162461bcd60e51b8152600401610764906127ee565b816122a98161296b565b92505080806122b79061296b565b915050612236565b5060018190556117ff565b8280546122d690612930565b90600052602060002090601f0160209004810192826122f8576000855561233e565b82601f106123115782800160ff1982351617855561233e565b8280016001018555821561233e579182015b8281111561233e578235825591602001919060010190612323565b50610d119291505b80821115610d115760008155600101612346565b80356001600160a01b038116811461237157600080fd5b919050565b60008083601f84011261238857600080fd5b50813567ffffffffffffffff8111156123a057600080fd5b6020830191508360208260051b85010111156123bb57600080fd5b9250929050565b6000602082840312156123d457600080fd5b6110148261235a565b600080604083850312156123f057600080fd5b6123f98361235a565b91506124076020840161235a565b90509250929050565b60008060006060848603121561242557600080fd5b61242e8461235a565b925061243c6020850161235a565b9150604084013590509250925092565b6000806000806080858703121561246257600080fd5b61246b8561235a565b93506124796020860161235a565b925060408501359150606085013567ffffffffffffffff8082111561249d57600080fd5b818701915087601f8301126124b157600080fd5b8135818111156124c3576124c36129dc565b604051601f8201601f19908116603f011681019083821181831017156124eb576124eb6129dc565b816040528281528a602084870101111561250457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561253b57600080fd5b6125448361235a565b91506020830135612554816129f2565b809150509250929050565b6000806040838503121561257257600080fd5b61257b8361235a565b946020939093013593505050565b6000806000806040858703121561259f57600080fd5b843567ffffffffffffffff808211156125b757600080fd5b6125c388838901612376565b909650945060208701359150808211156125dc57600080fd5b506125e987828801612376565b95989497509550505050565b60006020828403121561260757600080fd5b8151611014816129f2565b6000806040838503121561262557600080fd5b82356123f9816129f2565b60006020828403121561264257600080fd5b813561101481612a00565b60006020828403121561265f57600080fd5b815161101481612a00565b6000806020838503121561267d57600080fd5b823567ffffffffffffffff8082111561269557600080fd5b818501915085601f8301126126a957600080fd5b8135818111156126b857600080fd5b8660208285010111156126ca57600080fd5b60209290920196919550909350505050565b6000602082840312156126ee57600080fd5b5035919050565b60006020828403121561270757600080fd5b5051919050565b600081518084526127268160208601602086016128ed565b601f01601f19169290920160200192915050565b6000835161274c8184602088016128ed565b8351908301906127608183602088016128ed565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061279c9083018461270e565b9695505050505050565b602081526000611014602083018461270e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156127605761276061299a565b600082198211156128765761287661299a565b500190565b60008261288a5761288a6129b0565b500490565b60008160001904831182151516156128a9576128a961299a565b500290565b60006001600160801b03838116908316818110156128ce576128ce61299a565b039392505050565b6000828210156128e8576128e861299a565b500390565b60005b838110156129085781810151838201526020016128f0565b83811115610f485750506000910152565b6000816129285761292861299a565b506000190190565b600181811c9082168061294457607f821691505b6020821081141561296557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561297f5761297f61299a565b5060010190565b600082612995576129956129b0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461120857600080fd5b6001600160e01b03198116811461120857600080fdfea2646970667358221220cdf866aca1248e516866e16b892d923538688c69d40b38e6abf4d79b0d378cf264736f6c634300080600330000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b85760003560e01c8063715018a6116100eb578063c87b56dd1161008f578063e985e9c511610061578063e985e9c51461053d578063f2fde38b14610586578063f4f3b200146105a6578063fbe1aa51146105c657005b8063c87b56dd146104c7578063d7224ba0146104e7578063dc33e681146104fd578063ddf5f0fa1461051d57005b806395d89b41116100c857806395d89b411461043e578063a22cb46514610453578063b88d4fde14610473578063ba313ca71461049357005b8063715018a6146103bd5780638da5cb5b146103d25780639231ab2a146103f057005b80632f745c591161015d5780634f6ccce71161012f5780634f6ccce71461033d57806355f804b31461035d5780636352211e1461037d57806370a082311461039d57005b80632f745c59146102c85780633203d12f146102e85780633ccfd60b1461030857806342842e0e1461031d57005b8063095ea7b311610196578063095ea7b31461024957806318160ddd1461026957806323b872dd146102885780632d20fb60146102a857005b806301ffc9a7146101ba57806306fdde03146101ef578063081812fc14610211575b005b3480156101c657600080fd5b506101da6101d5366004612630565b6105fa565b60405190151581526020015b60405180910390f35b3480156101fb57600080fd5b50610204610667565b6040516101e691906127a6565b34801561021d57600080fd5b5061023161022c3660046126dc565b6106f9565b6040516001600160a01b0390911681526020016101e6565b34801561025557600080fd5b506101b861026436600461255f565b610789565b34801561027557600080fd5b506001545b6040519081526020016101e6565b34801561029457600080fd5b506101b86102a3366004612410565b6108a1565b3480156102b457600080fd5b506101b86102c33660046126dc565b6108ac565b3480156102d457600080fd5b5061027a6102e336600461255f565b61093f565b3480156102f457600080fd5b506101b8610303366004612612565b610ab8565b34801561031457600080fd5b506101b8610b29565b34801561032957600080fd5b506101b8610338366004612410565b610c91565b34801561034957600080fd5b5061027a6103583660046126dc565b610cac565b34801561036957600080fd5b506101b861037836600461266a565b610d15565b34801561038957600080fd5b506102316103983660046126dc565b610d4b565b3480156103a957600080fd5b5061027a6103b83660046123c2565b610d5d565b3480156103c957600080fd5b506101b8610dee565b3480156103de57600080fd5b506000546001600160a01b0316610231565b3480156103fc57600080fd5b5061041061040b3660046126dc565b610e24565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016101e6565b34801561044a57600080fd5b50610204610e41565b34801561045f57600080fd5b506101b861046e366004612528565b610e50565b34801561047f57600080fd5b506101b861048e36600461244c565b610f15565b34801561049f57600080fd5b5061027a7f000000000000000000000000000000000000000000000000000000000000271081565b3480156104d357600080fd5b506102046104e23660046126dc565b610f4e565b3480156104f357600080fd5b5061027a60085481565b34801561050957600080fd5b5061027a6105183660046123c2565b61101b565b34801561052957600080fd5b506101b8610538366004612589565b611026565b34801561054957600080fd5b506101da6105583660046123dd565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561059257600080fd5b506101b86105a13660046123c2565b611170565b3480156105b257600080fd5b506101b86105c13660046123c2565b61120b565b3480156105d257600080fd5b5061027a7f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b148061062b57506001600160e01b03198216635b5e139f60e01b145b8061064657506001600160e01b0319821663780e9d6360e01b145b8061066157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461067690612930565b80601f01602080910402602001604051908101604052809291908181526020018280546106a290612930565b80156106ef5780601f106106c4576101008083540402835291602001916106ef565b820191906000526020600020905b8154815290600101906020018083116106d257829003601f168201915b5050505050905090565b6000610706826001541190565b61076d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079482610d4b565b9050806001600160a01b0316836001600160a01b031614156108035760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610764565b336001600160a01b038216148061081f575061081f8133610558565b6108915760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610764565b61089c838383611423565b505050565b61089c83838361147f565b6000546001600160a01b031633146108d65760405162461bcd60e51b8152600401610764906127b9565b600260095414156109295760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610764565b600260095561093781611807565b506001600955565b600061094a83610d5d565b82106109a35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610764565b60006109ae60015490565b905060008060005b83811015610a58576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a0957805192505b876001600160a01b0316836001600160a01b03161415610a455786841415610a375750935061066192505050565b83610a418161296b565b9450505b5080610a508161296b565b9150506109b6565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610764565b6000546001600160a01b03163314610ae25760405162461bcd60e51b8152600401610764906127b9565b8115610b0957600b80546001600160a01b0383166001600160a01b03199091161790555050565b600a80546001600160a01b0319166001600160a01b0383161790555b5050565b6000546001600160a01b03163314610b535760405162461bcd60e51b8152600401610764906127b9565b600a546001600160a01b0316610b9e5760405162461bcd60e51b815260206004820152601060248201526f1dd85b1b195d080c481b9bdd081cd95d60821b6044820152606401610764565b600b546001600160a01b0316610be95760405162461bcd60e51b815260206004820152601060248201526f1dd85b1b195d080c881b9bdd081cd95d60821b6044820152606401610764565b60004790506000610c146064610c0e600c546064610c0791906128d6565b85906119f1565b90611a70565b600a546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015610c4f573d6000803e3d6000fd5b50600b546001600160a01b03166108fc610c698484611acb565b6040518115909202916000818181858888f1935050505015801561089c573d6000803e3d6000fd5b61089c83838360405180602001604052806000815250610f15565b6000610cb760015490565b8210610d115760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610764565b5090565b6000546001600160a01b03163314610d3f5760405162461bcd60e51b8152600401610764906127b9565b61089c600d83836122ca565b6000610d5682611b27565b5192915050565b60006001600160a01b038216610dc95760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610764565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610e185760405162461bcd60e51b8152600401610764906127b9565b610e226000611cd1565b565b604080518082019091526000808252602082015261066182611b27565b60606003805461067690612930565b6001600160a01b038216331415610ea95760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610764565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f2084848461147f565b610f2c84848484611d21565b610f485760405162461bcd60e51b8152600401610764906127ee565b50505050565b6060610f5b826001541190565b610fbf5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610764565b6000610fc9611e2f565b90506000815111610fe95760405180602001604052806000815250611014565b80610ff384611e3e565b60405160200161100492919061273a565b6040516020818303038152906040525b9392505050565b600061066182611f3c565b6000546001600160a01b031633146110505760405162461bcd60e51b8152600401610764906127b9565b60005b83811015611169577f000000000000000000000000000000000000000000000000000000000000271083838381811061108e5761108e6129c6565b9050602002013561109e60015490565b6110a89190612863565b111561110f5760405162461bcd60e51b815260206004820152603060248201527f4e6f7420656e6f7567682072656d61696e696e6720696e20746f74616c20636f60448201526f1b1b1958dd1a5bdb881d1bc81b5a5b9d60821b6064820152608401610764565b611157858583818110611124576111246129c6565b905060200201602081019061113991906123c2565b84848481811061114b5761114b6129c6565b90506020020135611fda565b806111618161296b565b915050611053565b5050505050565b6000546001600160a01b0316331461119a5760405162461bcd60e51b8152600401610764906127b9565b6001600160a01b0381166111ff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610764565b61120881611cd1565b50565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a082319060240160206040518083038186803b15801561124f57600080fd5b505afa158015611263573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128791906126f5565b905060006112a56064610c0e600c54856119f190919063ffffffff16565b9050600082116112ed5760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974686472617760681b6044820152606401610764565b600b546040516323b872dd60e01b81523060048201526001600160a01b03918216602482015260448101839052908416906323b872dd90606401602060405180830381600087803b15801561134157600080fd5b505af1158015611355573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137991906125f5565b50600a546001600160a01b03808516916323b872dd9130911661139c8686611acb565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b1580156113eb57600080fd5b505af11580156113ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116991906125f5565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061148a82611b27565b80519091506000906001600160a01b0316336001600160a01b031614806114c15750336114b6846106f9565b6001600160a01b0316145b806114d3575081516114d39033610558565b90508061153d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610764565b846001600160a01b031682600001516001600160a01b0316146115b15760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610764565b6001600160a01b0384166116155760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610764565b6116256000848460000151611423565b6001600160a01b03851660009081526005602052604081208054600192906116579084906001600160801b03166128ae565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926116a391859116612841565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561172b846001612863565b6000818152600460205260409020549091506001600160a01b03166117bd57611755816001541190565b156117bd5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816118575760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610764565b600060016118658484612863565b61186f91906128d6565b905061189c60017f00000000000000000000000000000000000000000000000000000000000027106128d6565b8111156118d1576118ce60017f00000000000000000000000000000000000000000000000000000000000027106128d6565b90505b6118dc816001541190565b6119375760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610764565b815b8181116119dd576000818152600460205260409020546001600160a01b03166119cb57600061196782611b27565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806119d58161296b565b915050611939565b506119e9816001612863565b600855505050565b600082611a0057506000610661565b6000611a0c838561288f565b905082611a19858361287b565b146110145760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610764565b6000808211611ac15760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610764565b611014828461287b565b600082821115611b1d5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610764565b61101482846128d6565b6040805180820190915260008082526020820152611b46826001541190565b611ba55760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610764565b60007f00000000000000000000000000000000000000000000000000000000000027108310611c0657611bf87f0000000000000000000000000000000000000000000000000000000000002710846128d6565b611c03906001612863565b90505b825b818110611c70576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c5d57949350505050565b5080611c6881612919565b915050611c08565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610764565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611e2357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d65903390899088908890600401612769565b602060405180830381600087803b158015611d7f57600080fd5b505af1925050508015611daf575060408051601f3d908101601f19168201909252611dac9181019061264d565b60015b611e09573d808015611ddd576040519150601f19603f3d011682016040523d82523d6000602084013e611de2565b606091505b508051611e015760405162461bcd60e51b8152600401610764906127ee565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e27565b5060015b949350505050565b6060600d805461067690612930565b606081611e625750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e8c5780611e768161296b565b9150611e859050600a8361287b565b9150611e66565b60008167ffffffffffffffff811115611ea757611ea76129dc565b6040519080825280601f01601f191660200182016040528015611ed1576020820181803683370190505b5090505b8415611e2757611ee66001836128d6565b9150611ef3600a86612986565b611efe906030612863565b60f81b818381518110611f1357611f136129c6565b60200101906001600160f81b031916908160001a905350611f35600a8661287b565b9450611ed5565b60006001600160a01b038216611fae5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610764565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b610b258282604051806020016040528060008152506001546001600160a01b0384166120525760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610764565b61205d816001541190565b156120aa5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610764565b7f00000000000000000000000000000000000000000000000000000000000027108311156121255760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610764565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612181908790612841565b6001600160801b0316815260200185836020015161219f9190612841565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122bf5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122836000888488611d21565b61229f5760405162461bcd60e51b8152600401610764906127ee565b816122a98161296b565b92505080806122b79061296b565b915050612236565b5060018190556117ff565b8280546122d690612930565b90600052602060002090601f0160209004810192826122f8576000855561233e565b82601f106123115782800160ff1982351617855561233e565b8280016001018555821561233e579182015b8281111561233e578235825591602001919060010190612323565b50610d119291505b80821115610d115760008155600101612346565b80356001600160a01b038116811461237157600080fd5b919050565b60008083601f84011261238857600080fd5b50813567ffffffffffffffff8111156123a057600080fd5b6020830191508360208260051b85010111156123bb57600080fd5b9250929050565b6000602082840312156123d457600080fd5b6110148261235a565b600080604083850312156123f057600080fd5b6123f98361235a565b91506124076020840161235a565b90509250929050565b60008060006060848603121561242557600080fd5b61242e8461235a565b925061243c6020850161235a565b9150604084013590509250925092565b6000806000806080858703121561246257600080fd5b61246b8561235a565b93506124796020860161235a565b925060408501359150606085013567ffffffffffffffff8082111561249d57600080fd5b818701915087601f8301126124b157600080fd5b8135818111156124c3576124c36129dc565b604051601f8201601f19908116603f011681019083821181831017156124eb576124eb6129dc565b816040528281528a602084870101111561250457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561253b57600080fd5b6125448361235a565b91506020830135612554816129f2565b809150509250929050565b6000806040838503121561257257600080fd5b61257b8361235a565b946020939093013593505050565b6000806000806040858703121561259f57600080fd5b843567ffffffffffffffff808211156125b757600080fd5b6125c388838901612376565b909650945060208701359150808211156125dc57600080fd5b506125e987828801612376565b95989497509550505050565b60006020828403121561260757600080fd5b8151611014816129f2565b6000806040838503121561262557600080fd5b82356123f9816129f2565b60006020828403121561264257600080fd5b813561101481612a00565b60006020828403121561265f57600080fd5b815161101481612a00565b6000806020838503121561267d57600080fd5b823567ffffffffffffffff8082111561269557600080fd5b818501915085601f8301126126a957600080fd5b8135818111156126b857600080fd5b8660208285010111156126ca57600080fd5b60209290920196919550909350505050565b6000602082840312156126ee57600080fd5b5035919050565b60006020828403121561270757600080fd5b5051919050565b600081518084526127268160208601602086016128ed565b601f01601f19169290920160200192915050565b6000835161274c8184602088016128ed565b8351908301906127608183602088016128ed565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061279c9083018461270e565b9695505050505050565b602081526000611014602083018461270e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156127605761276061299a565b600082198211156128765761287661299a565b500190565b60008261288a5761288a6129b0565b500490565b60008160001904831182151516156128a9576128a961299a565b500290565b60006001600160801b03838116908316818110156128ce576128ce61299a565b039392505050565b6000828210156128e8576128e861299a565b500390565b60005b838110156129085781810151838201526020016128f0565b83811115610f485750506000910152565b6000816129285761292861299a565b506000190190565b600181811c9082168061294457607f821691505b6020821081141561296557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561297f5761297f61299a565b5060010190565b600082612995576129956129b0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461120857600080fd5b6001600160e01b03198116811461120857600080fdfea2646970667358221220cdf866aca1248e516866e16b892d923538688c69d40b38e6abf4d79b0d378cf264736f6c63430008060033

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

0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10000
Arg [1] : collectionSize_ (uint256): 10000
Arg [2] : amountForAuctionAndDev_ (uint256): 10000
Arg [3] : amountForDevs_ (uint256): 0

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45027:3557:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32723:370;;;;;;;;;;-1:-1:-1;32723:370:0;;;;;:::i;:::-;;:::i;:::-;;;7881:14:1;;7874:22;7856:41;;7844:2;7829:18;32723:370:0;;;;;;;;34449:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35974:204::-;;;;;;;;;;-1:-1:-1;35974:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6799:32:1;;;6781:51;;6769:2;6754:18;35974:204:0;6736:102:1;35537:379:0;;;;;;;;;;-1:-1:-1;35537:379:0;;;;;:::i;:::-;;:::i;31284:94::-;;;;;;;;;;-1:-1:-1;31360:12:0;;31284:94;;;20812:25:1;;;20800:2;20785:18;31284:94:0;20767:76:1;36824:142:0;;;;;;;;;;-1:-1:-1;36824:142:0;;;;;:::i;:::-;;:::i;48197:118::-;;;;;;;;;;-1:-1:-1;48197:118:0;;;;;:::i;:::-;;:::i;31915:744::-;;;;;;;;;;-1:-1:-1;31915:744:0;;;;;:::i;:::-;;:::i;46204:227::-;;;;;;;;;;-1:-1:-1;46204:227:0;;;;;:::i;:::-;;:::i;47108:440::-;;;;;;;;;;;;;:::i;37029:157::-;;;;;;;;;;-1:-1:-1;37029:157:0;;;;;:::i;:::-;;:::i;31447:177::-;;;;;;;;;;-1:-1:-1;31447:177:0;;;;;:::i;:::-;;:::i;46924:100::-;;;;;;;;;;-1:-1:-1;46924:100:0;;;;;:::i;:::-;;:::i;34272:118::-;;;;;;;;;;-1:-1:-1;34272:118:0;;;;;:::i;:::-;;:::i;33149:211::-;;;;;;;;;;-1:-1:-1;33149:211:0;;;;;:::i;:::-;;:::i;2376:94::-;;;;;;;;;;;;;:::i;1725:87::-;;;;;;;;;;-1:-1:-1;1771:7:0;1798:6;-1:-1:-1;;;;;1798:6:0;1725:87;;48434:147;;;;;;;;;;-1:-1:-1;48434:147:0;;;;;:::i;:::-;;:::i;:::-;;;;20531:13:1;;-1:-1:-1;;;;;20527:39:1;20509:58;;20627:4;20615:17;;;20609:24;20635:18;20605:49;20583:20;;;20576:79;;;;20482:18;48434:147:0;20464:197:1;34604:98:0;;;;;;;;;;;;;:::i;36242:274::-;;;;;;;;;;-1:-1:-1;36242:274:0;;;;;:::i;:::-;;:::i;37249:311::-;;;;;;;;;;-1:-1:-1;37249:311:0;;;;;:::i;:::-;;:::i;45169:44::-;;;;;;;;;;;;;;;34765:394;;;;;;;;;;-1:-1:-1;34765:394:0;;;;;:::i;:::-;;:::i;41664:43::-;;;;;;;;;;;;;;;;48321:107;;;;;;;;;;-1:-1:-1;48321:107:0;;;;;:::i;:::-;;:::i;46437:313::-;;;;;;;;;;-1:-1:-1;46437:313:0;;;;;:::i;:::-;;:::i;36579:186::-;;;;;;;;;;-1:-1:-1;36579:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;36724:25:0;;;36701:4;36724:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36579:186;2625:192;;;;;;;;;;-1:-1:-1;2625:192:0;;;;;:::i;:::-;;:::i;47719:472::-;;;;;;;;;;-1:-1:-1;47719:472:0;;;;;:::i;:::-;;:::i;45126:38::-;;;;;;;;;;;;;;;32723:370;32850:4;-1:-1:-1;;;;;;32880:40:0;;-1:-1:-1;;;32880:40:0;;:99;;-1:-1:-1;;;;;;;32931:48:0;;-1:-1:-1;;;32931:48:0;32880:99;:160;;;-1:-1:-1;;;;;;;32990:50:0;;-1:-1:-1;;;32990:50:0;32880:160;:207;;;-1:-1:-1;;;;;;;;;;21919:40:0;;;33051:36;32866:221;32723:370;-1:-1:-1;;32723:370:0:o;34449:94::-;34503:13;34532:5;34525:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34449:94;:::o;35974:204::-;36042:7;36066:16;36074:7;37886:12;;-1:-1:-1;37876:22:0;37799:105;36066:16;36058:74;;;;-1:-1:-1;;;36058:74:0;;19684:2:1;36058:74:0;;;19666:21:1;19723:2;19703:18;;;19696:30;19762:34;19742:18;;;19735:62;-1:-1:-1;;;19813:18:1;;;19806:43;19866:19;;36058:74:0;;;;;;;;;-1:-1:-1;36148:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36148:24:0;;35974:204::o;35537:379::-;35606:13;35622:24;35638:7;35622:15;:24::i;:::-;35606:40;;35667:5;-1:-1:-1;;;;;35661:11:0;:2;-1:-1:-1;;;;;35661:11:0;;;35653:58;;;;-1:-1:-1;;;35653:58:0;;16158:2:1;35653:58:0;;;16140:21:1;16197:2;16177:18;;;16170:30;16236:34;16216:18;;;16209:62;-1:-1:-1;;;16287:18:1;;;16280:32;16329:19;;35653:58:0;16130:224:1;35653:58:0;681:10;-1:-1:-1;;;;;35736:21:0;;;;:62;;-1:-1:-1;35761:37:0;35778:5;681:10;36579:186;:::i;35761:37::-;35720:153;;;;-1:-1:-1;;;35720:153:0;;12190:2:1;35720:153:0;;;12172:21:1;12229:2;12209:18;;;12202:30;12268:34;12248:18;;;12241:62;12339:27;12319:18;;;12312:55;12384:19;;35720:153:0;12162:247:1;35720:153:0;35882:28;35891:2;35895:7;35904:5;35882:8;:28::i;:::-;35599:317;35537:379;;:::o;36824:142::-;36932:28;36942:4;36948:2;36952:7;36932:9;:28::i;48197:118::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;19413:1:::1;20009:7;;:19;;20001:63;;;::::0;-1:-1:-1;;;20001:63:0;;18908:2:1;20001:63:0::1;::::0;::::1;18890:21:1::0;18947:2;18927:18;;;18920:30;18986:33;18966:18;;;18959:61;19037:18;;20001:63:0::1;18880:181:1::0;20001:63:0::1;19413:1;20142:7;:18:::0;48281:28:::2;48300:8:::0;48281:18:::2;:28::i;:::-;-1:-1:-1::0;19369:1:0::1;20321:7;:22:::0;48197:118::o;31915:744::-;32024:7;32059:16;32069:5;32059:9;:16::i;:::-;32051:5;:24;32043:71;;;;-1:-1:-1;;;32043:71:0;;8334:2:1;32043:71:0;;;8316:21:1;8373:2;8353:18;;;8346:30;8412:34;8392:18;;;8385:62;-1:-1:-1;;;8463:18:1;;;8456:32;8505:19;;32043:71:0;8306:224:1;32043:71:0;32121:22;32146:13;31360:12;;;31284:94;32146:13;32121:38;;32166:19;32196:25;32246:9;32241:350;32265:14;32261:1;:18;32241:350;;;32295:31;32329:14;;;:11;:14;;;;;;;;;32295:48;;;;;;;;;-1:-1:-1;;;;;32295:48:0;;;;;-1:-1:-1;;;32295:48:0;;;;;;;;;;;;32356:28;32352:89;;32417:14;;;-1:-1:-1;32352:89:0;32474:5;-1:-1:-1;;;;;32453:26:0;:17;-1:-1:-1;;;;;32453:26:0;;32449:135;;;32511:5;32496:11;:20;32492:59;;;-1:-1:-1;32538:1:0;-1:-1:-1;32531:8:0;;-1:-1:-1;;;32531:8:0;32492:59;32561:13;;;;:::i;:::-;;;;32449:135;-1:-1:-1;32281:3:0;;;;:::i;:::-;;;;32241:350;;;-1:-1:-1;32597:56:0;;-1:-1:-1;;;32597:56:0;;18086:2:1;32597:56:0;;;18068:21:1;18125:2;18105:18;;;18098:30;18164:34;18144:18;;;18137:62;-1:-1:-1;;;18215:18:1;;;18208:44;18269:19;;32597:56:0;18058:236:1;46204:227:0;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;46302:9:::1;46299:127;;;46327:13;:32:::0;;-1:-1:-1;;;;;46327:32:0;::::1;-1:-1:-1::0;;;;;;46327:32:0;;::::1;;::::0;;46204:227;;:::o;46299:127::-:1;46386:13;:32:::0;;-1:-1:-1;;;;;;46386:32:0::1;-1:-1:-1::0;;;;;46386:32:0;::::1;;::::0;;46299:127:::1;46204:227:::0;;:::o;47108:440::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;47166:13:::1;::::0;-1:-1:-1;;;;;47166:13:0::1;47158:56;;;::::0;-1:-1:-1;;;47158:56:0;;17339:2:1;47158:56:0::1;::::0;::::1;17321:21:1::0;17378:2;17358:18;;;17351:30;-1:-1:-1;;;17397:18:1;;;17390:46;17453:18;;47158:56:0::1;17311:166:1::0;47158:56:0::1;47233:13;::::0;-1:-1:-1;;;;;47233:13:0::1;47225:56;;;::::0;-1:-1:-1;;;47225:56:0;;10713:2:1;47225:56:0::1;::::0;::::1;10695:21:1::0;10752:2;10732:18;;;10725:30;-1:-1:-1;;;10771:18:1;;;10764:46;10827:18;;47225:56:0::1;10685:166:1::0;47225:56:0::1;47292:15;47310:21;47292:39;;47342:21;47366:47;47409:3;47366:38;47384:19;;47378:3;:25;;;;:::i;:::-;47366:7:::0;;:11:::1;:38::i;:::-;:42:::0;::::1;:47::i;:::-;47432:13;::::0;47424:46:::1;::::0;47342:71;;-1:-1:-1;;;;;;47432:13:0::1;::::0;47424:46;::::1;;;::::0;47342:71;;47432:13:::1;47424:46:::0;47432:13;47424:46;47342:71;47432:13;47424:46;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;47489:13:0::1;::::0;-1:-1:-1;;;;;47489:13:0::1;47481:59;47513:26;:7:::0;47525:13;47513:11:::1;:26::i;:::-;47481:59;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;37029:157:::0;37141:39;37158:4;37164:2;37168:7;37141:39;;;;;;;;;;;;:16;:39::i;31447:177::-;31514:7;31546:13;31360:12;;;31284:94;31546:13;31538:5;:21;31530:69;;;;-1:-1:-1;;;31530:69:0;;9903:2:1;31530:69:0;;;9885:21:1;9942:2;9922:18;;;9915:30;9981:34;9961:18;;;9954:62;-1:-1:-1;;;10032:18:1;;;10025:33;10075:19;;31530:69:0;9875:225:1;31530:69:0;-1:-1:-1;31613:5:0;31447:177::o;46924:100::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;46995:23:::1;:13;47011:7:::0;;46995:23:::1;:::i;34272:118::-:0;34336:7;34359:20;34371:7;34359:11;:20::i;:::-;:25;;34272:118;-1:-1:-1;;34272:118:0:o;33149:211::-;33213:7;-1:-1:-1;;;;;33237:19:0;;33229:75;;;;-1:-1:-1;;;33229:75:0;;12969:2:1;33229:75:0;;;12951:21:1;13008:2;12988:18;;;12981:30;13047:34;13027:18;;;13020:62;-1:-1:-1;;;13098:18:1;;;13091:41;13149:19;;33229:75:0;12941:233:1;33229:75:0;-1:-1:-1;;;;;;33326:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;33326:27:0;;33149:211::o;2376:94::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;2441:21:::1;2459:1;2441:9;:21::i;:::-;2376:94::o:0;48434:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;48555:20:0;48567:7;48555:11;:20::i;34604:98::-;34660:13;34689:7;34682:14;;;;;:::i;36242:274::-;-1:-1:-1;;;;;36333:24:0;;681:10;36333:24;;36325:63;;;;-1:-1:-1;;;36325:63:0;;15384:2:1;36325:63:0;;;15366:21:1;15423:2;15403:18;;;15396:30;15462:28;15442:18;;;15435:56;15508:18;;36325:63:0;15356:176:1;36325:63:0;681:10;36397:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36397:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36397:53:0;;;;;;;;;;36462:48;;7856:41:1;;;36397:42:0;;681:10;36462:48;;7829:18:1;36462:48:0;;;;;;;36242:274;;:::o;37249:311::-;37386:28;37396:4;37402:2;37406:7;37386:9;:28::i;:::-;37437:48;37460:4;37466:2;37470:7;37479:5;37437:22;:48::i;:::-;37421:133;;;;-1:-1:-1;;;37421:133:0;;;;;;;:::i;:::-;37249:311;;;;:::o;34765:394::-;34863:13;34904:16;34912:7;37886:12;;-1:-1:-1;37876:22:0;37799:105;34904:16;34888:97;;;;-1:-1:-1;;;34888:97:0;;14968:2:1;34888:97:0;;;14950:21:1;15007:2;14987:18;;;14980:30;15046:34;15026:18;;;15019:62;-1:-1:-1;;;15097:18:1;;;15090:45;15152:19;;34888:97:0;14940:237:1;34888:97:0;34994:21;35018:10;:8;:10::i;:::-;34994:34;;35073:1;35055:7;35049:21;:25;:104;;;;;;;;;;;;;;;;;35110:7;35119:18;:7;:16;:18::i;:::-;35093:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35049:104;35035:118;34765:394;-1:-1:-1;;;34765:394:0:o;48321:107::-;48379:7;48402:20;48416:5;48402:13;:20::i;46437:313::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;46541:9:::1;46537:209;46556:13:::0;;::::1;46537:209;;;46630:14;46617:6;;46624:1;46617:9;;;;;;;:::i;:::-;;;;;;;46601:13;31360:12:::0;;;31284:94;46601:13:::1;:25;;;;:::i;:::-;:43;;46593:104;;;::::0;-1:-1:-1;;;46593:104:0;;13381:2:1;46593:104:0::1;::::0;::::1;13363:21:1::0;13420:2;13400:18;;;13393:30;13459:34;13439:18;;;13432:62;-1:-1:-1;;;13510:18:1;;;13503:46;13566:19;;46593:104:0::1;13353:238:1::0;46593:104:0::1;46710:27;46720:2;;46723:1;46720:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;46727:6;;46734:1;46727:9;;;;;;;:::i;:::-;;;;;;;46710;:27::i;:::-;46571:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46537:209;;;;46437:313:::0;;;;:::o;2625:192::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2714:22:0;::::1;2706:73;;;::::0;-1:-1:-1;;;2706:73:0;;9085:2:1;2706:73:0::1;::::0;::::1;9067:21:1::0;9124:2;9104:18;;;9097:30;9163:34;9143:18;;;9136:62;-1:-1:-1;;;9214:18:1;;;9207:36;9260:19;;2706:73:0::1;9057:228:1::0;2706:73:0::1;2790:19;2800:8;2790:9;:19::i;:::-;2625:192:::0;:::o;47719:472::-;47842:36;;-1:-1:-1;;;47842:36:0;;47872:4;47842:36;;;6781:51:1;47806:6:0;;47778:18;;-1:-1:-1;;;;;47842:21:0;;;;;6754:18:1;;47842:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47824:54;;47889:21;47913:41;47950:3;47913:32;47925:19;;47913:7;:11;;:32;;;;:::i;:41::-;47889:65;;47983:1;47973:7;:11;47965:43;;;;-1:-1:-1;;;47965:43:0;;8737:2:1;47965:43:0;;;8719:21:1;8776:2;8756:18;;;8749:30;-1:-1:-1;;;8795:18:1;;;8788:49;8854:18;;47965:43:0;8709:169:1;47965:43:0;48061:13;;48021:69;;-1:-1:-1;;;48021:69:0;;48054:4;48021:69;;;7083:34:1;-1:-1:-1;;;;;48061:13:0;;;7133:18:1;;;7126:43;7185:18;;;7178:34;;;48021:24:0;;;;;;7018:18:1;;48021:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;48141:13:0;;-1:-1:-1;;;;;48101:24:0;;;;;;48134:4;;48141:13;48156:26;:7;48168:13;48156:11;:26::i;:::-;48101:82;;-1:-1:-1;;;;;;48101:82:0;;;;;;;-1:-1:-1;;;;;7101:15:1;;;48101:82:0;;;7083:34:1;7153:15;;;;7133:18;;;7126:43;7185:18;;;7178:34;7018:18;;48101:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;41486:172::-;41583:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41583:29:0;-1:-1:-1;;;;;41583:29:0;;;;;;;;;41624:28;;41583:24;;41624:28;;;;;;;41486:172;;;:::o;39851:1529::-;39948:35;39986:20;39998:7;39986:11;:20::i;:::-;40057:18;;39948:58;;-1:-1:-1;40015:22:0;;-1:-1:-1;;;;;40041:34:0;681:10;-1:-1:-1;;;;;40041:34:0;;:81;;;-1:-1:-1;681:10:0;40086:20;40098:7;40086:11;:20::i;:::-;-1:-1:-1;;;;;40086:36:0;;40041:81;:142;;;-1:-1:-1;40150:18:0;;40133:50;;681:10;36579:186;:::i;40133:50::-;40015:169;;40209:17;40193:101;;;;-1:-1:-1;;;40193:101:0;;15739:2:1;40193:101:0;;;15721:21:1;15778:2;15758:18;;;15751:30;15817:34;15797:18;;;15790:62;-1:-1:-1;;;15868:18:1;;;15861:48;15926:19;;40193:101:0;15711:240:1;40193:101:0;40341:4;-1:-1:-1;;;;;40319:26:0;:13;:18;;;-1:-1:-1;;;;;40319:26:0;;40303:98;;;;-1:-1:-1;;;40303:98:0;;14200:2:1;40303:98:0;;;14182:21:1;14239:2;14219:18;;;14212:30;14278:34;14258:18;;;14251:62;-1:-1:-1;;;14329:18:1;;;14322:36;14375:19;;40303:98:0;14172:228:1;40303:98:0;-1:-1:-1;;;;;40416:16:0;;40408:66;;;;-1:-1:-1;;;40408:66:0;;10307:2:1;40408:66:0;;;10289:21:1;10346:2;10326:18;;;10319:30;10385:34;10365:18;;;10358:62;-1:-1:-1;;;10436:18:1;;;10429:35;10481:19;;40408:66:0;10279:227:1;40408:66:0;40583:49;40600:1;40604:7;40613:13;:18;;;40583:8;:49::i;:::-;-1:-1:-1;;;;;40641:18:0;;;;;;:12;:18;;;;;:31;;40671:1;;40641:18;:31;;40671:1;;-1:-1:-1;;;;;40641:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;40641:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40679:16:0;;-1:-1:-1;40679:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;40679:16:0;;:29;;-1:-1:-1;;40679:29:0;;:::i;:::-;;;-1:-1:-1;;;;;40679:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40738:43:0;;;;;;;;-1:-1:-1;;;;;40738:43:0;;;;;;40764:15;40738:43;;;;;;;;;-1:-1:-1;40715:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;40715:66:0;-1:-1:-1;;;;;;40715:66:0;;;;;;;;;;;41031:11;40727:7;-1:-1:-1;41031:11:0;:::i;:::-;41094:1;41053:24;;;:11;:24;;;;;:29;41009:33;;-1:-1:-1;;;;;;41053:29:0;41049:236;;41111:20;41119:11;37886:12;;-1:-1:-1;37876:22:0;37799:105;41111:20;41107:171;;;41171:97;;;;;;;;41198:18;;-1:-1:-1;;;;;41171:97:0;;;;;;41229:28;;;;41171:97;;;;;;;;;;-1:-1:-1;41144:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;41144:124:0;-1:-1:-1;;;;;;41144:124:0;;;;;;;;;;;;41107:171;41317:7;41313:2;-1:-1:-1;;;;;41298:27:0;41307:4;-1:-1:-1;;;;;41298:27:0;;;;;;;;;;;41332:42;39941:1439;;;39851:1529;;;:::o;41812:846::-;41902:24;;41941:12;41933:49;;;;-1:-1:-1;;;41933:49:0;;12616:2:1;41933:49:0;;;12598:21:1;12655:2;12635:18;;;12628:30;12694:26;12674:18;;;12667:54;12738:18;;41933:49:0;12588:174:1;41933:49:0;41989:16;42039:1;42008:28;42028:8;42008:17;:28;:::i;:::-;:32;;;;:::i;:::-;41989:51;-1:-1:-1;42062:18:0;42079:1;42062:14;:18;:::i;:::-;42051:8;:29;42047:81;;;42102:18;42119:1;42102:14;:18;:::i;:::-;42091:29;;42047:81;42243:17;42251:8;37886:12;;-1:-1:-1;37876:22:0;37799:105;42243:17;42235:68;;;;-1:-1:-1;;;42235:68:0;;18501:2:1;42235:68:0;;;18483:21:1;18540:2;18520:18;;;18513:30;18579:34;18559:18;;;18552:62;-1:-1:-1;;;18630:18:1;;;18623:36;18676:19;;42235:68:0;18473:228:1;42235:68:0;42327:17;42310:297;42351:8;42346:1;:13;42310:297;;42410:1;42379:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;42379:19:0;42375:225;;42425:31;42459:14;42471:1;42459:11;:14::i;:::-;42501:89;;;;;;;;42528:14;;-1:-1:-1;;;;;42501:89:0;;;;;;42555:24;;;;42501:89;;;;;;;;;;-1:-1:-1;42484:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;42484:106:0;-1:-1:-1;;;;;;42484:106:0;;;;;;;;;;;;-1:-1:-1;42375:225:0;42361:3;;;;:::i;:::-;;;;42310:297;;;-1:-1:-1;42640:12:0;:8;42651:1;42640:12;:::i;:::-;42613:24;:39;-1:-1:-1;;;41812:846:0:o;16904:220::-;16962:7;16986:6;16982:20;;-1:-1:-1;17001:1:0;16994:8;;16982:20;17013:9;17025:5;17029:1;17025;:5;:::i;:::-;17013:17;-1:-1:-1;17058:1:0;17049:5;17053:1;17013:17;17049:5;:::i;:::-;:10;17041:56;;;;-1:-1:-1;;;17041:56:0;;13798:2:1;17041:56:0;;;13780:21:1;13837:2;13817:18;;;13810:30;13876:34;13856:18;;;13849:62;-1:-1:-1;;;13927:18:1;;;13920:31;13968:19;;17041:56:0;13770:223:1;17602:153:0;17660:7;17692:1;17688;:5;17680:44;;;;-1:-1:-1;;;17680:44:0;;11835:2:1;17680:44:0;;;11817:21:1;11874:2;11854:18;;;11847:30;11913:28;11893:18;;;11886:56;11959:18;;17680:44:0;11807:176:1;17680:44:0;17742:5;17746:1;17742;:5;:::i;16487:158::-;16545:7;16578:1;16573;:6;;16565:49;;;;-1:-1:-1;;;16565:49:0;;11476:2:1;16565:49:0;;;11458:21:1;11515:2;11495:18;;;11488:30;11554:32;11534:18;;;11527:60;11604:18;;16565:49:0;11448:180:1;16565:49:0;16632:5;16636:1;16632;:5;:::i;33612:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;33729:16:0;33737:7;37886:12;;-1:-1:-1;37876:22:0;37799:105;33729:16;33721:71;;;;-1:-1:-1;;;33721:71:0;;9492:2:1;33721:71:0;;;9474:21:1;9531:2;9511:18;;;9504:30;9570:34;9550:18;;;9543:62;-1:-1:-1;;;9621:18:1;;;9614:40;9671:19;;33721:71:0;9464:232:1;33721:71:0;33801:26;33849:12;33838:7;:23;33834:93;;33893:22;33903:12;33893:7;:22;:::i;:::-;:26;;33918:1;33893:26;:::i;:::-;33872:47;;33834:93;33955:7;33935:212;33972:18;33964:4;:26;33935:212;;34009:31;34043:17;;;:11;:17;;;;;;;;;34009:51;;;;;;;;;-1:-1:-1;;;;;34009:51:0;;;;;-1:-1:-1;;;34009:51:0;;;;;;;;;;;;34073:28;34069:71;;34121:9;33612:606;-1:-1:-1;;;;33612:606:0:o;34069:71::-;-1:-1:-1;33992:6:0;;;;:::i;:::-;;;;33935:212;;;-1:-1:-1;34155:57:0;;-1:-1:-1;;;34155:57:0;;19268:2:1;34155:57:0;;;19250:21:1;19307:2;19287:18;;;19280:30;19346:34;19326:18;;;19319:62;-1:-1:-1;;;19397:18:1;;;19390:45;19452:19;;34155:57:0;19240:237:1;2825:173:0;2881:16;2900:6;;-1:-1:-1;;;;;2917:17:0;;;-1:-1:-1;;;;;;2917:17:0;;;;;;2950:40;;2900:6;;;;;;;2950:40;;2881:16;2950:40;2870:128;2825:173;:::o;43201:690::-;43338:4;-1:-1:-1;;;;;43355:13:0;;6722:20;6770:8;43351:535;;43394:72;;-1:-1:-1;;;43394:72:0;;-1:-1:-1;;;;;43394:36:0;;;;;:72;;681:10;;43445:4;;43451:7;;43460:5;;43394:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43394:72:0;;;;;;;;-1:-1:-1;;43394:72:0;;;;;;;;;;;;:::i;:::-;;;43381:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43625:13:0;;43621:215;;43658:61;;-1:-1:-1;;;43658:61:0;;;;;;;:::i;43621:215::-;43804:6;43798:13;43789:6;43785:2;43781:15;43774:38;43381:464;-1:-1:-1;;;;;;43516:55:0;-1:-1:-1;;;43516:55:0;;-1:-1:-1;43509:62:0;;43351:535;-1:-1:-1;43874:4:0;43351:535;43201:690;;;;;;:::o;46810:108::-;46870:13;46899;46892:20;;;;;:::i;13739:723::-;13795:13;14016:10;14012:53;;-1:-1:-1;;14043:10:0;;;;;;;;;;;;-1:-1:-1;;;14043:10:0;;;;;13739:723::o;14012:53::-;14090:5;14075:12;14131:78;14138:9;;14131:78;;14164:8;;;;:::i;:::-;;-1:-1:-1;14187:10:0;;-1:-1:-1;14195:2:0;14187:10;;:::i;:::-;;;14131:78;;;14219:19;14251:6;14241:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14241:17:0;;14219:39;;14269:154;14276:10;;14269:154;;14303:11;14313:1;14303:11;;:::i;:::-;;-1:-1:-1;14372:10:0;14380:2;14372:5;:10;:::i;:::-;14359:24;;:2;:24;:::i;:::-;14346:39;;14329:6;14336;14329:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;14329:56:0;;;;;;;;-1:-1:-1;14400:11:0;14409:2;14400:11;;:::i;:::-;;;14269:154;;33366:240;33427:7;-1:-1:-1;;;;;33459:19:0;;33443:102;;;;-1:-1:-1;;;33443:102:0;;11058:2:1;33443:102:0;;;11040:21:1;11097:2;11077:18;;;11070:30;11136:34;11116:18;;;11109:62;-1:-1:-1;;;11187:18:1;;;11180:47;11244:19;;33443:102:0;11030:239:1;33443:102:0;-1:-1:-1;;;;;;33567:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;33567:32:0;;-1:-1:-1;;;;;33567:32:0;;33366:240::o;37910:98::-;37975:27;37985:2;37989:8;37975:27;;;;;;;;;;;;38475:12;;-1:-1:-1;;;;;38502:16:0;;38494:62;;;;-1:-1:-1;;;38494:62:0;;17684:2:1;38494:62:0;;;17666:21:1;17723:2;17703:18;;;17696:30;17762:34;17742:18;;;17735:62;-1:-1:-1;;;17813:18:1;;;17806:31;17854:19;;38494:62:0;17656:223:1;38494:62:0;38693:21;38701:12;37886;;-1:-1:-1;37876:22:0;37799:105;38693:21;38692:22;38684:64;;;;-1:-1:-1;;;38684:64:0;;16981:2:1;38684:64:0;;;16963:21:1;17020:2;17000:18;;;16993:30;17059:31;17039:18;;;17032:59;17108:18;;38684:64:0;16953:179:1;38684:64:0;38775:12;38763:8;:24;;38755:71;;;;-1:-1:-1;;;38755:71:0;;20098:2:1;38755:71:0;;;20080:21:1;20137:2;20117:18;;;20110:30;20176:34;20156:18;;;20149:62;-1:-1:-1;;;20227:18:1;;;20220:32;20269:19;;38755:71:0;20070:224:1;38755:71:0;-1:-1:-1;;;;;38938:16:0;;38905:30;38938:16;;;:12;:16;;;;;;;;;38905:49;;;;;;;;;-1:-1:-1;;;;;38905:49:0;;;;;-1:-1:-1;;;38905:49:0;;;;;;;;;;;38980:119;;;;;;;;39000:19;;38905:49;;38980:119;;;39000:39;;39030:8;;39000:39;:::i;:::-;-1:-1:-1;;;;;38980:119:0;;;;;39083:8;39048:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;38980:119:0;;;;;;-1:-1:-1;;;;;38961:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;38961:138:0;;;;;;;;;;;;39134:43;;;;;;;;;;;39160:15;39134:43;;;;;;;;39106:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;39106:71:0;-1:-1:-1;;;;;;39106:71:0;;;;;;;;;;;;;;;;;;39118:12;;39230:281;39254:8;39250:1;:12;39230:281;;;39283:38;;39308:12;;-1:-1:-1;;;;;39283:38:0;;;39300:1;;39283:38;;39300:1;;39283:38;39348:59;39379:1;39383:2;39387:12;39401:5;39348:22;:59::i;:::-;39330:150;;;;-1:-1:-1;;;39330:150:0;;;;;;;:::i;:::-;39489:14;;;;:::i;:::-;;;;39264:3;;;;;:::i;:::-;;;;39230:281;;;-1:-1:-1;39519:12:0;:27;;;39553:60;37249:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:367::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:2;;337:1;334;327:12;286:2;-1:-1:-1;360:20:1;;403:18;392:30;;389:2;;;435:1;432;425:12;389:2;472:4;464:6;460:17;448:29;;532:3;525:4;515:6;512:1;508:14;500:6;496:27;492:38;489:47;486:2;;;549:1;546;539:12;486:2;276:283;;;;;:::o;564:186::-;623:6;676:2;664:9;655:7;651:23;647:32;644:2;;;692:1;689;682:12;644:2;715:29;734:9;715:29;:::i;755:260::-;823:6;831;884:2;872:9;863:7;859:23;855:32;852:2;;;900:1;897;890:12;852:2;923:29;942:9;923:29;:::i;:::-;913:39;;971:38;1005:2;994:9;990:18;971:38;:::i;:::-;961:48;;842:173;;;;;:::o;1020:328::-;1097:6;1105;1113;1166:2;1154:9;1145:7;1141:23;1137:32;1134:2;;;1182:1;1179;1172:12;1134:2;1205:29;1224:9;1205:29;:::i;:::-;1195:39;;1253:38;1287:2;1276:9;1272:18;1253:38;:::i;:::-;1243:48;;1338:2;1327:9;1323:18;1310:32;1300:42;;1124:224;;;;;:::o;1353:1138::-;1448:6;1456;1464;1472;1525:3;1513:9;1504:7;1500:23;1496:33;1493:2;;;1542:1;1539;1532:12;1493:2;1565:29;1584:9;1565:29;:::i;:::-;1555:39;;1613:38;1647:2;1636:9;1632:18;1613:38;:::i;:::-;1603:48;;1698:2;1687:9;1683:18;1670:32;1660:42;;1753:2;1742:9;1738:18;1725:32;1776:18;1817:2;1809:6;1806:14;1803:2;;;1833:1;1830;1823:12;1803:2;1871:6;1860:9;1856:22;1846:32;;1916:7;1909:4;1905:2;1901:13;1897:27;1887:2;;1938:1;1935;1928:12;1887:2;1974;1961:16;1996:2;1992;1989:10;1986:2;;;2002:18;;:::i;:::-;2077:2;2071:9;2045:2;2131:13;;-1:-1:-1;;2127:22:1;;;2151:2;2123:31;2119:40;2107:53;;;2175:18;;;2195:22;;;2172:46;2169:2;;;2221:18;;:::i;:::-;2261:10;2257:2;2250:22;2296:2;2288:6;2281:18;2336:7;2331:2;2326;2322;2318:11;2314:20;2311:33;2308:2;;;2357:1;2354;2347:12;2308:2;2413;2408;2404;2400:11;2395:2;2387:6;2383:15;2370:46;2458:1;2453:2;2448;2440:6;2436:15;2432:24;2425:35;2479:6;2469:16;;;;;;;1483:1008;;;;;;;:::o;2496:315::-;2561:6;2569;2622:2;2610:9;2601:7;2597:23;2593:32;2590:2;;;2638:1;2635;2628:12;2590:2;2661:29;2680:9;2661:29;:::i;:::-;2651:39;;2740:2;2729:9;2725:18;2712:32;2753:28;2775:5;2753:28;:::i;:::-;2800:5;2790:15;;;2580:231;;;;;:::o;2816:254::-;2884:6;2892;2945:2;2933:9;2924:7;2920:23;2916:32;2913:2;;;2961:1;2958;2951:12;2913:2;2984:29;3003:9;2984:29;:::i;:::-;2974:39;3060:2;3045:18;;;;3032:32;;-1:-1:-1;;;2903:167:1:o;3075:773::-;3197:6;3205;3213;3221;3274:2;3262:9;3253:7;3249:23;3245:32;3242:2;;;3290:1;3287;3280:12;3242:2;3330:9;3317:23;3359:18;3400:2;3392:6;3389:14;3386:2;;;3416:1;3413;3406:12;3386:2;3455:70;3517:7;3508:6;3497:9;3493:22;3455:70;:::i;:::-;3544:8;;-1:-1:-1;3429:96:1;-1:-1:-1;3632:2:1;3617:18;;3604:32;;-1:-1:-1;3648:16:1;;;3645:2;;;3677:1;3674;3667:12;3645:2;;3716:72;3780:7;3769:8;3758:9;3754:24;3716:72;:::i;:::-;3232:616;;;;-1:-1:-1;3807:8:1;-1:-1:-1;;;;3232:616:1:o;3853:245::-;3920:6;3973:2;3961:9;3952:7;3948:23;3944:32;3941:2;;;3989:1;3986;3979:12;3941:2;4021:9;4015:16;4040:28;4062:5;4040:28;:::i;4103:315::-;4168:6;4176;4229:2;4217:9;4208:7;4204:23;4200:32;4197:2;;;4245:1;4242;4235:12;4197:2;4284:9;4271:23;4303:28;4325:5;4303:28;:::i;4423:245::-;4481:6;4534:2;4522:9;4513:7;4509:23;4505:32;4502:2;;;4550:1;4547;4540:12;4502:2;4589:9;4576:23;4608:30;4632:5;4608:30;:::i;4673:249::-;4742:6;4795:2;4783:9;4774:7;4770:23;4766:32;4763:2;;;4811:1;4808;4801:12;4763:2;4843:9;4837:16;4862:30;4886:5;4862:30;:::i;4927:592::-;4998:6;5006;5059:2;5047:9;5038:7;5034:23;5030:32;5027:2;;;5075:1;5072;5065:12;5027:2;5115:9;5102:23;5144:18;5185:2;5177:6;5174:14;5171:2;;;5201:1;5198;5191:12;5171:2;5239:6;5228:9;5224:22;5214:32;;5284:7;5277:4;5273:2;5269:13;5265:27;5255:2;;5306:1;5303;5296:12;5255:2;5346;5333:16;5372:2;5364:6;5361:14;5358:2;;;5388:1;5385;5378:12;5358:2;5433:7;5428:2;5419:6;5415:2;5411:15;5407:24;5404:37;5401:2;;;5454:1;5451;5444:12;5401:2;5485;5477:11;;;;;5507:6;;-1:-1:-1;5017:502:1;;-1:-1:-1;;;;5017:502:1:o;5524:180::-;5583:6;5636:2;5624:9;5615:7;5611:23;5607:32;5604:2;;;5652:1;5649;5642:12;5604:2;-1:-1:-1;5675:23:1;;5594:110;-1:-1:-1;5594:110:1:o;5709:184::-;5779:6;5832:2;5820:9;5811:7;5807:23;5803:32;5800:2;;;5848:1;5845;5838:12;5800:2;-1:-1:-1;5871:16:1;;5790:103;-1:-1:-1;5790:103:1:o;5898:257::-;5939:3;5977:5;5971:12;6004:6;5999:3;5992:19;6020:63;6076:6;6069:4;6064:3;6060:14;6053:4;6046:5;6042:16;6020:63;:::i;:::-;6137:2;6116:15;-1:-1:-1;;6112:29:1;6103:39;;;;6144:4;6099:50;;5947:208;-1:-1:-1;;5947:208:1:o;6160:470::-;6339:3;6377:6;6371:13;6393:53;6439:6;6434:3;6427:4;6419:6;6415:17;6393:53;:::i;:::-;6509:13;;6468:16;;;;6531:57;6509:13;6468:16;6565:4;6553:17;;6531:57;:::i;:::-;6604:20;;6347:283;-1:-1:-1;;;;6347:283:1:o;7223:488::-;-1:-1:-1;;;;;7492:15:1;;;7474:34;;7544:15;;7539:2;7524:18;;7517:43;7591:2;7576:18;;7569:34;;;7639:3;7634:2;7619:18;;7612:31;;;7417:4;;7660:45;;7685:19;;7677:6;7660:45;:::i;:::-;7652:53;7426:285;-1:-1:-1;;;;;;7426:285:1:o;7908:219::-;8057:2;8046:9;8039:21;8020:4;8077:44;8117:2;8106:9;8102:18;8094:6;8077:44;:::i;14405:356::-;14607:2;14589:21;;;14626:18;;;14619:30;14685:34;14680:2;14665:18;;14658:62;14752:2;14737:18;;14579:182::o;16359:415::-;16561:2;16543:21;;;16600:2;16580:18;;;16573:30;16639:34;16634:2;16619:18;;16612:62;-1:-1:-1;;;16705:2:1;16690:18;;16683:49;16764:3;16749:19;;16533:241::o;20848:253::-;20888:3;-1:-1:-1;;;;;20977:2:1;20974:1;20970:10;21007:2;21004:1;21000:10;21038:3;21034:2;21030:12;21025:3;21022:21;21019:2;;;21046:18;;:::i;21106:128::-;21146:3;21177:1;21173:6;21170:1;21167:13;21164:2;;;21183:18;;:::i;:::-;-1:-1:-1;21219:9:1;;21154:80::o;21239:120::-;21279:1;21305;21295:2;;21310:18;;:::i;:::-;-1:-1:-1;21344:9:1;;21285:74::o;21364:168::-;21404:7;21470:1;21466;21462:6;21458:14;21455:1;21452:21;21447:1;21440:9;21433:17;21429:45;21426:2;;;21477:18;;:::i;:::-;-1:-1:-1;21517:9:1;;21416:116::o;21537:246::-;21577:4;-1:-1:-1;;;;;21690:10:1;;;;21660;;21712:12;;;21709:2;;;21727:18;;:::i;:::-;21764:13;;21586:197;-1:-1:-1;;;21586:197:1:o;21788:125::-;21828:4;21856:1;21853;21850:8;21847:2;;;21861:18;;:::i;:::-;-1:-1:-1;21898:9:1;;21837:76::o;21918:258::-;21990:1;22000:113;22014:6;22011:1;22008:13;22000:113;;;22090:11;;;22084:18;22071:11;;;22064:39;22036:2;22029:10;22000:113;;;22131:6;22128:1;22125:13;22122:2;;;-1:-1:-1;;22166:1:1;22148:16;;22141:27;21971:205::o;22181:136::-;22220:3;22248:5;22238:2;;22257:18;;:::i;:::-;-1:-1:-1;;;22293:18:1;;22228:89::o;22322:380::-;22401:1;22397:12;;;;22444;;;22465:2;;22519:4;22511:6;22507:17;22497:27;;22465:2;22572;22564:6;22561:14;22541:18;22538:38;22535:2;;;22618:10;22613:3;22609:20;22606:1;22599:31;22653:4;22650:1;22643:15;22681:4;22678:1;22671:15;22535:2;;22377:325;;;:::o;22707:135::-;22746:3;-1:-1:-1;;22767:17:1;;22764:2;;;22787:18;;:::i;:::-;-1:-1:-1;22834:1:1;22823:13;;22754:88::o;22847:112::-;22879:1;22905;22895:2;;22910:18;;:::i;:::-;-1:-1:-1;22944:9:1;;22885:74::o;22964:127::-;23025:10;23020:3;23016:20;23013:1;23006:31;23056:4;23053:1;23046:15;23080:4;23077:1;23070:15;23096:127;23157:10;23152:3;23148:20;23145:1;23138:31;23188:4;23185:1;23178:15;23212:4;23209:1;23202:15;23228:127;23289:10;23284:3;23280:20;23277:1;23270:31;23320:4;23317:1;23310:15;23344:4;23341:1;23334:15;23360:127;23421:10;23416:3;23412:20;23409:1;23402:31;23452:4;23449:1;23442:15;23476:4;23473:1;23466:15;23492:118;23578:5;23571:13;23564:21;23557:5;23554:32;23544:2;;23600:1;23597;23590:12;23615:131;-1:-1:-1;;;;;;23689:32:1;;23679:43;;23669:2;;23736:1;23733;23726:12

Swarm Source

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