ETH Price: $3,265.25 (+1.32%)

Token

OpenStarter Primate Evolution (OPE)
 

Overview

Max Total Supply

21 OPE

Holders

13

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 OPE
0x4fd95c6fa765e64ec9313e465f4d2b88cbf8deaa
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:
OpenStarterNft

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 50 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-22
*/

// File: contracts/lib/SafeMath.sol

pragma solidity ^0.6.12;

// File: @openzeppelin/contracts/math/SafeMath.sol

/**
 * @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.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

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

        return c;
    }

    /**
     * @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) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        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. Reverts 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) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. 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 mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. 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 mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: contracts/interfaces/IERC165.sol


pragma solidity ^0.6.12;

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

// File: contracts/interfaces/IERC721.sol


pragma solidity ^0.6.12;


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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/interfaces/IERC721Metadata.sol


pragma solidity ^0.6.12;


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

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

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

// File: contracts/interfaces/IERC721Enumerable.sol


pragma solidity ^0.6.12;


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

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

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

// File: contracts/interfaces/IERC721Receiver.sol


pragma solidity ^0.6.12;

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

// File: contracts/lib/Context.sol

pragma solidity ^0.6.12;

/*
 * @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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: contracts/lib/ERC165.sol


pragma solidity ^0.6.12;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor() internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: contracts/lib/Address.sol


pragma solidity ^0.6.12;

/**
 * @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 in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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"
        );
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(
            data
        );
        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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: contracts/lib/EnumerableSet.sol



pragma solidity ^0.6.12;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256`
 * (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value)
        private
        view
        returns (bool)
    {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index)
        private
        view
        returns (bytes32)
    {
        require(
            set._values.length > index,
            "EnumerableSet: index out of bounds"
        );
        return set._values[index];
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index)
        internal
        view
        returns (address)
    {
        return address(uint256(_at(set._inner, index)));
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index)
        internal
        view
        returns (uint256)
    {
        return uint256(_at(set._inner, index));
    }
}

// File: contracts/lib/EnumerableMap.sol


pragma solidity ^0.6.12;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;
        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(
        Map storage map,
        bytes32 key,
        bytes32 value
    ) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) {
            // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({_key: key, _value: value}));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) {
            // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key)
        private
        view
        returns (bool)
    {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

    /**
     * @dev Returns the key-value pair stored at position `index` in the map. O(1).
     *
     * Note that there are no guarantees on the ordering of entries inside the
     * array, and it may change when more entries are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Map storage map, uint256 index)
        private
        view
        returns (bytes32, bytes32)
    {
        require(
            map._entries.length > index,
            "EnumerableMap: index out of bounds"
        );

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        return _get(map, key, "EnumerableMap: nonexistent key");
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     */
    function _get(
        Map storage map,
        bytes32 key,
        string memory errorMessage
    ) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(
        UintToAddressMap storage map,
        uint256 key,
        address value
    ) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key)
        internal
        returns (bool)
    {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (bool)
    {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map)
        internal
        view
        returns (uint256)
    {
        return _length(map._inner);
    }

    /**
     * @dev Returns the element stored at position `index` in the set. O(1).
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintToAddressMap storage map, uint256 index)
        internal
        view
        returns (uint256, address)
    {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint256(value)));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (address)
    {
        return address(uint256(_get(map._inner, bytes32(key))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     */
    function get(
        UintToAddressMap storage map,
        uint256 key,
        string memory errorMessage
    ) internal view returns (address) {
        return address(uint256(_get(map._inner, bytes32(key), errorMessage)));
    }
}

// File: contracts/lib/Strings.sol



pragma solidity ^0.6.12;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + (temp % 10)));
            temp /= 10;
        }
        return string(buffer);
    }
}

// File: contracts/lib/ERC721.sol


pragma solidity ^0.6.12;












/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 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;

    // Base URL
    string private _baseUri;
    // 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_
    ) public {
        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 _baseUri;
    }

    function _setBaseURI(string memory _uri) internal {
        _baseUri = _uri;
    }

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

        uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

// File: contracts/lib/Ownable.sol


pragma solidity ^0.6.12;

/**
 * @title Owned
 * @dev Basic contract for authorization control.
 * @author dicether
 */
contract Ownable {
    address public owner;
    address public pendingOwner;

    event LogOwnerShipTransferred(address indexed previousOwner, address indexed newOwner);
    event LogOwnerShipTransferInitiated(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Modifier, which throws if called by other account than owner.
     */
    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    /**
     * @dev Modifier throws if called by any account other than the pendingOwner.
     */
    modifier onlyPendingOwner() {
        require(msg.sender == pendingOwner);
        _;
    }

    /**
     * @dev Set contract creator as initial owner
     */
    constructor() public {
        owner = msg.sender;
        pendingOwner = address(0);
    }

    /**
     * @dev Allows the current owner to set the pendingOwner address.
     * @param _newOwner The address to transfer ownership to.
     */
    function transferOwnership(address _newOwner) public onlyOwner {
        pendingOwner = _newOwner;
        emit LogOwnerShipTransferInitiated(owner, _newOwner);
    }

    /**
     * @dev PendingOwner can accept ownership.
     */
    function claimOwnership() public onlyPendingOwner {
        owner = pendingOwner;
        pendingOwner = address(0);
        emit LogOwnerShipTransferred(owner, pendingOwner);
    }
}

// File: contracts/interfaces/IERC2981Royalties.sol

pragma solidity ^0.6.12;

interface IERC2981Royalties {
    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _value - the sale price of the NFT asset specified by _tokenId
    /// @return _receiver - address of who should be sent the royalty payment
    /// @return _royaltyAmount - the royalty payment amount for value sale price
    function royaltyInfo(uint256 _tokenId, uint256 _value)
        external
        view
        returns (address _receiver, uint256 _royaltyAmount);
}

// File: contracts/lib/ERC2981PerTokenRoyalties.sol

pragma solidity ^0.6.12;



/// @dev Used to add ERC2981 support to ERC721 and 1155 on a per-token basis inside of a collection
abstract contract ERC2981PerTokenRoyalties is ERC165, IERC2981Royalties {
    struct RoyaltyInfo {
        address recipient;
        uint256 amount;
    }
    // map of known royalties; tokenID => RoyaltyInfo; #0 => collection-wide royalty
    mapping(uint256 => RoyaltyInfo) internal _royalties;

    /// @inheritdoc	ERC165
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC2981Royalties).interfaceId;
    }

    /// @dev Sets token royalties
    /// @param _tokenId the token id for which we register the royalties
    /// @param _recipient recipient of the royalties
    /// @param _value percentage (using 2 decimals - 10000 = 100, 0 = 0)
    function _setTokenRoyalty(
        uint256 _tokenId,
        address _recipient,
        uint256 _value
    ) internal {
        require(_value <= 10000, "ERC2981PerTokenRoyalties: Royalty Too high");

        RoyaltyInfo memory royalty = _royalties[_tokenId];
        require(royalty.recipient == address(0), "ERC2981PerTokenRoyalties: Royalty already set");

        _royalties[_tokenId] = RoyaltyInfo(_recipient, _value);
    }

    /// @dev Sets a new royalty recipient for the given tokenID. Only existing recipient can make the change.
    function setTokenRoyaltyRecipient(uint256 _tokenId, address _recipient) external {
        // the royalty must be set and the caller must be the current recipient of the royalty
        RoyaltyInfo memory royalty = _royalties[_tokenId];
        require(royalty.recipient != address(0) && royalty.recipient == msg.sender, "ERC2981PerTokenRoyalties: Current recipient only");

        _royalties[_tokenId].recipient = _recipient;
    }

    /// @dev Sets collection-wide royalty
    /// @param _recipient recipient of the royalties
    /// @param _value percentage (using 2 decimals - 10000 = 100, 0 = 0)
    function _setDefaultRoyalty(address _recipient, uint256 _value) internal {
        require(_value <= 10000, "ERC2981PerTokenRoyalties: Royalty too high");
        _royalties[0] = RoyaltyInfo(_recipient, uint256(_value));
    }

    /// @dev Provides value and recipient for a royalty of the given token and for the given price.
    /// @param _tokenId the token id fir which we register the royalties
    /// @param _salePrice The base amount used to calculate the royalty.
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view override returns (address _receiver, uint256 _royaltyAmount) {
        RoyaltyInfo memory royalty = _royalties[_tokenId];

        // fallback to collection-wide royalty, if set
        if (royalty.recipient == address(0)) {
            royalty = _royalties[0];
        }

        // do the math and return results
        _receiver = royalty.recipient;
        _royaltyAmount = (_salePrice * royalty.amount) / 10000;
        return (_receiver, _royaltyAmount);
    }
}

// File: contracts/OpenStarterNft.sol

// SPDX-License-Identifier: LicenseRef-StarterLabs-Business-Source
/*
-----------------------------------------------------------------------------
The Licensed Work is (c) 2022 Starter Labs, LLC
Licensor:             Starter Labs, LLC
Licensed Work:        OpenStarter v1
Effective Date:       2022 March 1
Full License Text:    https://github.com/StarterXyz/LICENSE
-----------------------------------------------------------------------------
 */
pragma solidity 0.6.12;





/**
 * @title OpenStarterNft
 * OpenStarterNft - ERC721 contract that has minting functionality.
 */
contract OpenStarterNft is ERC721, ERC2981PerTokenRoyalties, Ownable {
    using SafeMath for uint256;
    struct Attributes {
        string sName;
        uint256 uMin;
        uint256 uMax;
        uint256 uType;
    }
    /// @dev Events of the contract
    event Minted(uint256 tokenId, address beneficiary, address minter);

    string public logo; // Preview Logo File
    string public collection; // Collection Name
    string public description; // Description
    string public utility; // Description
    uint256 public royalty; // royalty percentage
    address public royaltyReceiver; // royalty receiver address

    uint256 public maxQuantityMinted; // total maxQuantityMinted of NFTs

    bytes32 public website; // url of website
    bytes32 public discord; // url of discord
    bytes32 public twitter; // url of twitter
    bytes32 public medium; // url of medium
    bytes32 public telegram; // url of telegram
    string public logoUrl; // url of Logo
    string public unlockable; // Unlockable content
    bool public isExplicit; // is Explicit Content

    mapping(uint256 => Attributes) public levels;

    uint256 private _nextTokenId = 0;

    address public nftFactory; // nftFactory address
    address public saleFactory; // saleFactory address
    address public creator; // creator address

    mapping(address => bool) public minters; // minter addresses
    string public baseUri;

    modifier onlyMinter() {
        require(owner == msg.sender || minters[msg.sender], "1");
        _;
    }

    modifier onlyFactory() {
        require(
            owner == msg.sender ||
                nftFactory == msg.sender ||
                saleFactory == msg.sender,
            "2"
        );
        _;
    }

    /// @notice Contract constructor
    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _maxQuantityMinted
    ) public ERC721(_name, _symbol, _maxQuantityMinted, _maxQuantityMinted) {
        maxQuantityMinted = _maxQuantityMinted;
    }

    /// @inheritdoc	ERC165
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721, ERC2981PerTokenRoyalties)
        returns (bool)
    {
        return
            ERC721.supportsInterface(interfaceId) ||
            ERC2981PerTokenRoyalties.supportsInterface(interfaceId);
    }

    function setAddressInfo(
        address _creator,
        address _nftFactory,
        address _saleFactory,
        address _owner
    ) external onlyOwner {
        creator = _creator;
        nftFactory = _nftFactory;
        saleFactory = _saleFactory;
        owner = _owner;
    }

    /**
     *  @dev Set Preview Infos (Logo, Collection Name, Description and Utility)
     *
     */
    function setPreviewInfo(
        string memory _logo,
        string memory _collection,
        string memory _description,
        string memory _utility,
        uint256 _royalty,
        address _royaltyReceiver
    ) external onlyFactory {
        logo = _logo;
        collection = _collection;
        description = _description;
        utility = _utility;
        royalty = _royalty;
        royaltyReceiver = _royaltyReceiver;
    }

    /**
     *  @dev Set Social Information
     *
     */
    function setSocialInfo(
        bytes32 _website,
        bytes32 _discord,
        bytes32 _twitter,
        bytes32 _medium,
        bytes32 _telegram,
        string calldata _logoUrl,
        string calldata _unlockable,
        bool _isExplicit
    ) external onlyFactory {
        website = _website;
        discord = _discord;
        twitter = _twitter;
        medium = _medium;
        telegram = _telegram;
        logoUrl = _logoUrl;
        unlockable = _unlockable;
        isExplicit = _isExplicit;
    }

    /**
     *  @dev Set Level Information
     *
     */
    function setLevelInfo(
        uint256 _level,
        string memory _name,
        uint256 _min,
        uint256 _max,
        uint256 _type
    ) external onlyFactory {
        levels[_level].sName = _name;
        levels[_level].uMin = _min;
        levels[_level].uMax = _max;
        levels[_level].uType = _type;
    }

    /**
     * @dev Set Minter Address
     */

    function setMinter(address _newMinter) external onlyFactory {
        minters[_newMinter] = true;
    }

    function removeMinter(address _minter) external onlyFactory {
        minters[_minter] = false;
    }

    function setBaseUrl(string memory _baseUrl) external onlyFactory {
        super._setBaseURI(_baseUrl);
        baseUri = _baseUrl;
    }

    /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    function mint(address _to) external onlyMinter returns (uint256) {
        uint256 newTokenId = getNextTokenId();
        _safeMint(_to, 1);
        if (royalty > 0) {
            _setTokenRoyalty(newTokenId, royaltyReceiver, royalty); // royalty = percentage of minting price
        }
        _incrementTokenId();
        emit Minted(newTokenId, _to, _msgSender());

        return newTokenId;
    }

    /**
     * @dev calculates the next token ID based on value of _nextTokenId
     * @return uint256 for the next token ID
     */
    function getNextTokenId() public view returns (uint256) {
        return _nextTokenId;
    }

    /**
     * @dev increments the value of _nextTokenId
     */
    function _incrementTokenId() private {
        require(_nextTokenId < maxQuantityMinted, "sold out");
        _nextTokenId++;
    }

    /**
     * @dev checks the given token ID is approved either for all or the single token ID
     */
    function isApproved(uint256 _tokenId, address _operator)
        public
        view
        returns (bool)
    {
        return
            isApprovedForAll(ownerOf(_tokenId), _operator) ||
            getApproved(_tokenId) == _operator;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_maxQuantityMinted","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":"LogOwnerShipTransferInitiated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"LogOwnerShipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"address","name":"minter","type":"address"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collection","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"description","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"discord","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApproved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isExplicit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"levels","outputs":[{"internalType":"string","name":"sName","type":"string"},{"internalType":"uint256","name":"uMin","type":"uint256"},{"internalType":"uint256","name":"uMax","type":"uint256"},{"internalType":"uint256","name":"uType","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"logo","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"logoUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxQuantityMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"medium","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","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":[],"name":"nftFactory","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleFactory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_creator","type":"address"},{"internalType":"address","name":"_nftFactory","type":"address"},{"internalType":"address","name":"_saleFactory","type":"address"},{"internalType":"address","name":"_owner","type":"address"}],"name":"setAddressInfo","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":"_baseUrl","type":"string"}],"name":"setBaseUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_level","type":"uint256"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"},{"internalType":"uint256","name":"_type","type":"uint256"}],"name":"setLevelInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newMinter","type":"address"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_logo","type":"string"},{"internalType":"string","name":"_collection","type":"string"},{"internalType":"string","name":"_description","type":"string"},{"internalType":"string","name":"_utility","type":"string"},{"internalType":"uint256","name":"_royalty","type":"uint256"},{"internalType":"address","name":"_royaltyReceiver","type":"address"}],"name":"setPreviewInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_website","type":"bytes32"},{"internalType":"bytes32","name":"_discord","type":"bytes32"},{"internalType":"bytes32","name":"_twitter","type":"bytes32"},{"internalType":"bytes32","name":"_medium","type":"bytes32"},{"internalType":"bytes32","name":"_telegram","type":"bytes32"},{"internalType":"string","name":"_logoUrl","type":"string"},{"internalType":"string","name":"_unlockable","type":"string"},{"internalType":"bool","name":"_isExplicit","type":"bool"}],"name":"setSocialInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"setTokenRoyaltyRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"telegram","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"twitter","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlockable","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"utility","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"website","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}]

60c0604052600060015560006009556000601d553480156200002057600080fd5b506040516200370938038062003709833981810160405260608110156200004657600080fd5b81019080805160405193929190846401000000008211156200006757600080fd5b9083019060208201858111156200007d57600080fd5b82516401000000008111828201881017156200009857600080fd5b82525081516020918201929091019080838360005b83811015620000c7578181015183820152602001620000ad565b50505050905090810190601f168015620000f55780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011957600080fd5b9083019060208201858111156200012f57600080fd5b82516401000000008111828201881017156200014a57600080fd5b82525081516020918201929091019080838360005b83811015620001795781810151838201526020016200015f565b50505050905090810190601f168015620001a75780820380516001836020036101000a031916815260200191505b50604052602001519150839050828280620001c96301ffc9a760e01b620002ac565b600081116200020a5760405162461bcd60e51b815260040180806020018281038252602e815260200180620036db602e913960400191505060405180910390fd5b600082116200024b5760405162461bcd60e51b8152600401808060200182810382526027815260200180620036b46027913960400191505060405180910390fd5b83516200026090600290602087019062000331565b5082516200027690600390602086019062000331565b5060a0919091526080525050600b80546001600160a01b03199081163317909155600c8054909116905560135550620003cd9050565b6001600160e01b031980821614156200030c576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200037457805160ff1916838001178555620003a4565b82800160010185558215620003a4579182015b82811115620003a457825182559160200191906001019062000387565b50620003b2929150620003b6565b5090565b5b80821115620003b25760008155600101620003b7565b60805160a0516132be620003f660003980612525528061254f5280612b495250506132be6000f3fe608060405234801561001057600080fd5b50600436106102a25760003560e01c80639406bb4d11610168578063caa0f92a116100d4578063caa0f92a146108ed578063ccbfa7b8146108f5578063d59dcffe146109ab578063d63843cd14610bec578063d7224ba014610bf4578063dbef5fbf14610bfc578063e30c397814610c04578063e8bd71e114610c0c578063e985e9c514610c14578063f2fde38b14610c42578063f46eccc414610c68578063fa1d749c14610c8e578063fb7f21eb14610d6e578063fca3b5aa14610d76576102a2565b80639406bb4d1461065057806395d89b411461065857806397ccd07b14610660578063993d77af146106685780639abc8320146106705780639fbc871314610678578063a22cb46514610680578063abfaeee0146106ae578063b2596a67146106b6578063b88d4fde14610760578063beb0a41614610824578063c7c3268b1461082c578063c87b56dd146108d0576102a2565b806342842e0e1161021257806342842e0e146104ce57806347ecb665146105045780634e71e0c81461050c5780634f6ccce71461051457806356c31637146105315780636352211e1461055d57806367b4db531461057a5780636a6278421461058257806370a08231146105a85780637284e416146105ce5780637de1e536146105d657806380e2bc27146105de5780638b82d6931461061c5780638da5cb5b14610648576102a2565b806301ffc9a7146102a757806302d05d3f146102e257806306fdde0314610306578063081812fc14610383578063095ea7b3146103a057806317de3c84146103ce57806318160ddd146103d657806323b872dd146103f057806329ee566c146104265780632a55205a1461042e5780632f745c59146104745780633092afd5146104a057806340b2f5b5146104c6575b600080fd5b6102ce600480360360208110156102bd57600080fd5b50356001600160e01b031916610d9c565b604080519115158252519081900360200190f35b6102ea610dbe565b604080516001600160a01b039092168252519081900360200190f35b61030e610dcd565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610348578181015183820152602001610330565b50505050905090810190601f1680156103755780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ea6004803603602081101561039957600080fd5b5035610e60565b6103cc600480360360408110156103b657600080fd5b506001600160a01b038135169060200135610ec2565b005b6102ea610f9e565b6103de610fad565b60408051918252519081900360200190f35b6103cc6004803603606081101561040657600080fd5b506001600160a01b03813581169160208101359091169060400135610fb3565b6103de610fbe565b6104516004803603604081101561044457600080fd5b5080359060200135610fc4565b604080516001600160a01b03909316835260208301919091528051918290030190f35b6103de6004803603604081101561048a57600080fd5b506001600160a01b038135169060200135611091565b6103cc600480360360208110156104b657600080fd5b50356001600160a01b03166111c2565b61030e611250565b6103cc600480360360608110156104e457600080fd5b506001600160a01b038135811691602081013590911690604001356112de565b6103de6112f9565b6103cc6112ff565b6103de6004803603602081101561052a57600080fd5b5035611370565b6102ce6004803603604081101561054757600080fd5b50803590602001356001600160a01b03166113bb565b6102ea6004803603602081101561057357600080fd5b50356113fa565b6103de61140c565b6103de6004803603602081101561059857600080fd5b50356001600160a01b0316611412565b6103de600480360360208110156105be57600080fd5b50356001600160a01b031661150e565b61030e61157a565b61030e6115d5565b6103cc600480360360808110156105f457600080fd5b506001600160a01b038135811691602081013582169160408201358116916060013516611630565b6103cc6004803603604081101561063257600080fd5b50803590602001356001600160a01b0316611697565b6102ea611756565b6102ce611765565b61030e61176e565b6103de6117cf565b61030e6117d5565b61030e611830565b6102ea61188b565b6103cc6004803603604081101561069657600080fd5b506001600160a01b038135169060200135151561189a565b6103de61199c565b6106d3600480360360208110156106cc57600080fd5b50356119a2565b6040518080602001858152602001848152602001838152602001828103825286818151815260200191508051906020019080838360005b8381101561072257818101518382015260200161070a565b50505050905090810190601f16801561074f5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390f35b6103cc6004803603608081101561077657600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b8111156107b057600080fd5b8201836020820111156107c257600080fd5b803590602001918460018302840111600160201b831117156107e357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611a55945050505050565b6103de611aad565b6103cc6004803603602081101561084257600080fd5b810190602081018135600160201b81111561085c57600080fd5b82018360208201111561086e57600080fd5b803590602001918460018302840111600160201b8311171561088f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611ab3945050505050565b61030e600480360360208110156108e657600080fd5b5035611b40565b6103de611c70565b6103cc600480360360a081101561090b57600080fd5b81359190810190604081016020820135600160201b81111561092c57600080fd5b82018360208201111561093e57600080fd5b803590602001918460018302840111600160201b8311171561095f57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505082359350505060208101359060400135611c76565b6103cc600480360360c08110156109c157600080fd5b810190602081018135600160201b8111156109db57600080fd5b8201836020820111156109ed57600080fd5b803590602001918460018302840111600160201b83111715610a0e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610a6057600080fd5b820183602082011115610a7257600080fd5b803590602001918460018302840111600160201b83111715610a9357600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610ae557600080fd5b820183602082011115610af757600080fd5b803590602001918460018302840111600160201b83111715610b1857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610b6a57600080fd5b820183602082011115610b7c57600080fd5b803590602001918460018302840111600160201b83111715610b9d57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955050823593505050602001356001600160a01b0316611d29565b6102ea611e11565b6103de611e20565b61030e611e26565b6102ea611e81565b6103de611e90565b6102ce60048036036040811015610c2a57600080fd5b506001600160a01b0381358116916020013516611e96565b6103cc60048036036020811015610c5857600080fd5b50356001600160a01b0316611ec4565b6102ce60048036036020811015610c7e57600080fd5b50356001600160a01b0316611f2d565b6103cc6004803603610100811015610ca557600080fd5b8135916020810135916040820135916060810135916080820135919081019060c0810160a0820135600160201b811115610cde57600080fd5b820183602082011115610cf057600080fd5b803590602001918460018302840111600160201b83111715610d1157600080fd5b919390929091602081019035600160201b811115610d2e57600080fd5b820183602082011115610d4057600080fd5b803590602001918460018302840111600160201b83111715610d6157600080fd5b9193509150351515611f42565b61030e611ffe565b6103cc60048036036020811015610d8c57600080fd5b50356001600160a01b0316612059565b6000610da7826120ea565b80610db65750610db682612145565b90505b919050565b6020546001600160a01b031681565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610e565780601f10610e2b57610100808354040283529160200191610e56565b820191906000526020600020905b815481529060010190602001808311610e3957829003601f168201915b5050505050905090565b6000610e6b8261215e565b610ea65760405162461bcd60e51b815260040180806020018281038252602d81526020018061323a602d913960400191505060405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610ecd826113fa565b9050806001600160a01b0316836001600160a01b03161415610f205760405162461bcd60e51b81526004018080602001828103825260228152602001806131376022913960400191505060405180910390fd5b806001600160a01b0316610f32612165565b6001600160a01b03161480610f535750610f5381610f4e612165565b611e96565b610f8e5760405162461bcd60e51b81526004018080602001828103825260398152602001806130226039913960400191505060405180910390fd5b610f99838383612169565b505050565b601f546001600160a01b031681565b60015490565b610f998383836121c5565b60115481565b600080610fcf612e4c565b506000848152600a6020908152604091829020825180840190935280546001600160a01b031680845260019091015491830191909152611076575060008052600a6020908152604080518082019091527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e3546001600160a01b031681527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e454918101919091525b80516020820151909350612710908502049150509250929050565b600061109c8361150e565b82106110d95760405162461bcd60e51b8152600401808060200182810382526022815260200180612f616022913960400191505060405180910390fd5b60006110e3610fad565b905060008060005b83811015611184576110fb612e4c565b506000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561114657805192505b876001600160a01b0316836001600160a01b0316141561117b5786841415611174575093506111bc92505050565b6001909301925b506001016110eb565b5060405162461bcd60e51b815260040180806020018281038252602e8152602001806131dd602e913960400191505060405180910390fd5b92915050565b600b546001600160a01b03163314806111e55750601e546001600160a01b031633145b806111fa5750601f546001600160a01b031633145b61122f576040805162461bcd60e51b81526020600482015260016024820152601960f91b604482015290519081900360640190fd5b6001600160a01b03166000908152602160205260409020805460ff19169055565b6010805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156112d65780601f106112ab576101008083540402835291602001916112d6565b820191906000526020600020905b8154815290600101906020018083116112b957829003601f168201915b505050505081565b610f9983838360405180602001604052806000815250611a55565b60185481565b600c546001600160a01b0316331461131657600080fd5b600c8054600b80546001600160a01b038084166001600160a01b031992831617928390559216909255604051600092909116907f897d3c8bbea11029ba3b26eb993fe8edb14c2c4c0d2ecceccce41d1d83d3e359908390a3565b600061137a610fad565b82106113b75760405162461bcd60e51b8152600401808060200182810382526023815260200180612fad6023913960400191505060405180910390fd5b5090565b60006113cf6113c9846113fa565b83611e96565b806113f35750816001600160a01b03166113e884610e60565b6001600160a01b0316145b9392505050565b6000611405826124d5565b5192915050565b60135481565b600b546000906001600160a01b031633148061143d57503360009081526021602052604090205460ff165b611472576040805162461bcd60e51b81526020600482015260016024820152603160f81b604482015290519081900360640190fd5b600061147c611c70565b9050611489836001612615565b601154156114ae576012546011546114ae9183916001600160a01b039091169061262f565b6114b6612733565b7f5758c4c0a4d007ca9768a0a574eedc39af88c4423f4ad0f8895b1b8fd1e7613381846114e1612165565b604080519384526001600160a01b039283166020850152911682820152519081900360600190a192915050565b60006001600160a01b0382166115555760405162461bcd60e51b815260040180806020018281038252602b815260200180613085602b913960400191505060405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160801b031690565b600f805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156112d65780601f106112ab576101008083540402835291602001916112d6565b600e805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156112d65780601f106112ab576101008083540402835291602001916112d6565b600b546001600160a01b0316331461164757600080fd5b602080546001600160a01b039586166001600160a01b031991821617909155601e805494861694821694909417909355601f805492851692841692909217909155600b8054919093169116179055565b61169f612e4c565b506000828152600a6020908152604091829020825180840190935280546001600160a01b031680845260019091015491830191909152158015906116ec575080516001600160a01b031633145b6117275760405162461bcd60e51b81526004018080602001828103825260308152602001806131596030913960400191505060405180910390fd5b506000918252600a602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b600b546001600160a01b031681565b601b5460ff1681565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e565780601f10610e2b57610100808354040283529160200191610e56565b60175481565b6019805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156112d65780601f106112ab576101008083540402835291602001916112d6565b6022805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156112d65780601f106112ab576101008083540402835291602001916112d6565b6012546001600160a01b031681565b6118a2612165565b6001600160a01b0316826001600160a01b03161415611905576040805162461bcd60e51b815260206004820152601a60248201527922a9219b9918a09d1030b8383937bb32903a379031b0b63632b960311b604482015290519081900360640190fd5b8060086000611912612165565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611956612165565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b60165481565b601c6020908152600091825260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452909291839190830182828015611a395780601f10611a0e57610100808354040283529160200191611a39565b820191906000526020600020905b815481529060010190602001808311611a1c57829003601f168201915b5050505050908060010154908060020154908060030154905084565b611a608484846121c5565b611a6c84848484612781565b611aa75760405162461bcd60e51b81526004018080602001828103825260338152602001806131896033913960400191505060405180910390fd5b50505050565b60145481565b600b546001600160a01b0316331480611ad65750601e546001600160a01b031633145b80611aeb5750601f546001600160a01b031633145b611b20576040805162461bcd60e51b81526020600482015260016024820152601960f91b604482015290519081900360640190fd5b611b2981612937565b8051611b3c906022906020840190612e63565b5050565b6060611b4b8261215e565b611b865760405162461bcd60e51b815260040180806020018281038252602f8152602001806130d6602f913960400191505060405180910390fd5b6060611b9061294a565b90506000815111611bb057604051806020016040528060008152506113f3565b80611bba846129ab565b6040516020018083805190602001908083835b60208310611bec5780518252601f199092019160209182019101611bcd565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310611c345780518252601f199092019160209182019101611c15565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529392505050565b601d5490565b600b546001600160a01b0316331480611c995750601e546001600160a01b031633145b80611cae5750601f546001600160a01b031633145b611ce3576040805162461bcd60e51b81526020600482015260016024820152601960f91b604482015290519081900360640190fd5b6000858152601c602090815260409091208551611d0292870190612e63565b506000948552601c6020526040909420600181019290925560028201556003019190915550565b600b546001600160a01b0316331480611d4c5750601e546001600160a01b031633145b80611d615750601f546001600160a01b031633145b611d96576040805162461bcd60e51b81526020600482015260016024820152601960f91b604482015290519081900360640190fd5b8551611da990600d906020890190612e63565b508451611dbd90600e906020880190612e63565b508351611dd190600f906020870190612e63565b508251611de5906010906020860190612e63565b50601191909155601280546001600160a01b0319166001600160a01b0390921691909117905550505050565b601e546001600160a01b031681565b60095481565b601a805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156112d65780601f106112ab576101008083540402835291602001916112d6565b600c546001600160a01b031681565b60155481565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b600b546001600160a01b03163314611edb57600080fd5b600c80546001600160a01b0319166001600160a01b03838116918217909255600b54604051919216907f83ada3430836f9d4bd6f7bc690ffbba5199cb19b37393dd64c2299302135359690600090a350565b60216020526000908152604090205460ff1681565b600b546001600160a01b0316331480611f655750601e546001600160a01b031633145b80611f7a5750601f546001600160a01b031633145b611faf576040805162461bcd60e51b81526020600482015260016024820152601960f91b604482015290519081900360640190fd5b60148a90556015899055601688905560178790556018869055611fd460198686612edd565b50611fe1601a8484612edd565b50601b805460ff1916911515919091179055505050505050505050565b600d805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156112d65780601f106112ab576101008083540402835291602001916112d6565b600b546001600160a01b031633148061207c5750601e546001600160a01b031633145b806120915750601f546001600160a01b031633145b6120c6576040805162461bcd60e51b81526020600482015260016024820152601960f91b604482015290519081900360640190fd5b6001600160a01b03166000908152602160205260409020805460ff19166001179055565b60006001600160e01b031982166380ac58cd60e01b148061211b57506001600160e01b03198216635b5e139f60e01b145b8061213657506001600160e01b0319821663780e9d6360e01b145b80610db65750610db682612a85565b6001600160e01b0319811663152a902d60e11b14919050565b6001541190565b3390565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6121cd612e4c565b6121d6826124d5565b9050600081600001516001600160a01b03166121f0612165565b6001600160a01b031614806122255750612208612165565b6001600160a01b031661221a84610e60565b6001600160a01b0316145b806122395750815161223990610f4e612165565b9050806122775760405162461bcd60e51b81526004018080602001828103825260328152602001806131056032913960400191505060405180910390fd5b846001600160a01b031682600001516001600160a01b0316146122cb5760405162461bcd60e51b81526004018080602001828103825260268152602001806130b06026913960400191505060405180910390fd5b6001600160a01b0384166123105760405162461bcd60e51b8152600401808060200182810382526025815260200180612fd06025913960400191505060405180910390fd5b61231d8585856001611aa7565b61232d6000848460000151612169565b6001600160a01b03858116600090815260066020908152604080832080546001600160801b03198082166001600160801b0392831660001901831617909255898616808652838620805493841693831660019081019093169390931790925582518084018452918252426001600160401b039081168386019081528a875260059095528386209251835495516001600160a01b03199096169088161767ffffffffffffffff60a01b1916600160a01b959091169490940293909317905590860180835291205490911661247f576124038161215e565b1561247f5760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526005909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124cd8686866001611aa7565b505050505050565b6124dd612e4c565b6124e68261215e565b6125215760405162461bcd60e51b815260040180806020018281038252602a815260200180612f83602a913960400191505060405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612572575060017f00000000000000000000000000000000000000000000000000000000000000008303015b825b8181106125dd57612583612e4c565b506000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156125d3579250610db9915050565b5060001901612574565b5060405162461bcd60e51b815260040180806020018281038252602f81526020018061320b602f913960400191505060405180910390fd5b611b3c828260405180602001604052806000815250612aa4565b6127108111156126705760405162461bcd60e51b815260040180806020018281038252602a81526020018061305b602a913960400191505060405180910390fd5b612678612e4c565b506000838152600a6020908152604091829020825180840190935280546001600160a01b031680845260019091015491830191909152156126ea5760405162461bcd60e51b815260040180806020018281038252602d815260200180612ff5602d913960400191505060405180910390fd5b506040805180820182526001600160a01b03938416815260208082019384526000958652600a90529320925183546001600160a01b031916921691909117825551600190910155565b601354601d5410612776576040805162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b604482015290519081900360640190fd5b601d80546001019055565b6000612795846001600160a01b0316612e46565b1561292b57836001600160a01b031663150b7a026127b1612165565b8786866040518563ffffffff1660e01b815260040180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561282457818101518382015260200161280c565b50505050905090810190601f1680156128515780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561287357600080fd5b505af192505050801561289857506040513d602081101561289357600080fd5b505160015b612911573d8080156128c6576040519150601f19603f3d011682016040523d82523d6000602084013e6128cb565b606091505b5080516129095760405162461bcd60e51b81526004018080602001828103825260338152602001806131896033913960400191505060405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061292f565b5060015b949350505050565b8051611b3c906004906020840190612e63565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e565780601f10610e2b57610100808354040283529160200191610e56565b6060816129d057506040805180820190915260018152600360fc1b6020820152610db9565b8160005b81156129e857600101600a820491506129d4565b6060816001600160401b0381118015612a0057600080fd5b506040519080825280601f01601f191660200182016040528015612a2b576020820181803683370190505b50859350905060001982015b8315612a7c57600a840660300160f81b82828060019003935081518110612a5a57fe5b60200101906001600160f81b031916908160001a905350600a84049350612a37565b50949350505050565b6001600160e01b03191660009081526020819052604090205460ff1690565b6001546001600160a01b038416612aec5760405162461bcd60e51b81526004018080602001828103825260218152602001806131bc6021913960400191505060405180910390fd5b612af58161215e565b15612b47576040805162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015290519081900360640190fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612ba65760405162461bcd60e51b81526004018080602001828103825260228152602001806132676022913960400191505060405180910390fd5b612bb36000858386611aa7565b612bbb612e4c565b60066000866001600160a01b03166001600160a01b031681526020019081526020016000206040518060400160405290816000820160009054906101000a90046001600160801b03166001600160801b03166001600160801b031681526020016000820160109054906101000a90046001600160801b03166001600160801b03166001600160801b03168152505090506040518060400160405280858360000151016001600160801b03168152602001858360200151016001600160801b031681525060066000876001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a8154816001600160801b0302191690836001600160801b0316021790555060208201518160000160106101000a8154816001600160801b0302191690836001600160801b031602179055509050506040518060400160405280866001600160a01b03168152602001426001600160401b03168152506005600084815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160000160146101000a8154816001600160401b0302191690836001600160401b03160217905550905050600082905060005b85811015612e335760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612dec6000888488612781565b612e275760405162461bcd60e51b81526004018080602001828103825260338152602001806131896033913960400191505060405180910390fd5b60019182019101612d9f565b5060018190556124cd6000878588611aa7565b3b151590565b604080518082019091526000808252602082015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612ea457805160ff1916838001178555612ed1565b82800160010185558215612ed1579182015b82811115612ed1578251825591602001919060010190612eb6565b506113b7929150612f4b565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612f1e5782800160ff19823516178555612ed1565b82800160010185558215612ed1579182015b82811115612ed1578235825591602001919060010190612f30565b5b808211156113b75760008155600101612f4c56fe455243373231413a206f776e657220696e646578206f7574206f6620626f756e6473455243373231413a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756e6473455243373231413a207472616e7366657220746f20746865207a65726f206164647265737345524332393831506572546f6b656e526f79616c746965733a20526f79616c747920616c726561647920736574455243373231413a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c45524332393831506572546f6b656e526f79616c746965733a20526f79616c747920546f6f2068696768455243373231413a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243373231413a207472616e736665722066726f6d20696e636f7272656374206f776e65724552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231413a20617070726f76616c20746f2063757272656e74206f776e657245524332393831506572546f6b656e526f79616c746965733a2043757272656e7420726563697069656e74206f6e6c79455243373231413a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572455243373231413a206d696e7420746f20746865207a65726f2061646472657373455243373231413a20756e61626c6520746f2067657420746f6b656e206f66206f776e657220627920696e646578455243373231413a20756e61626c6520746f2064657465726d696e6520746865206f776e6572206f6620746f6b656e455243373231413a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207175616e7469747920746f206d696e7420746f6f2068696768a264697066735822122096482e111e2ec5935d384e92597ebb38ec0bc3464cebc1cae43e4cf4f4bad6b264736f6c634300060c0033455243373231413a206d61782062617463682073697a65206d757374206265206e6f6e7a65726f455243373231413a20636f6c6c656374696f6e206d75737420686176652061206e6f6e7a65726f20737570706c79000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000001d4f70656e53746172746572205072696d6174652045766f6c7574696f6e00000000000000000000000000000000000000000000000000000000000000000000034f50450000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102a25760003560e01c80639406bb4d11610168578063caa0f92a116100d4578063caa0f92a146108ed578063ccbfa7b8146108f5578063d59dcffe146109ab578063d63843cd14610bec578063d7224ba014610bf4578063dbef5fbf14610bfc578063e30c397814610c04578063e8bd71e114610c0c578063e985e9c514610c14578063f2fde38b14610c42578063f46eccc414610c68578063fa1d749c14610c8e578063fb7f21eb14610d6e578063fca3b5aa14610d76576102a2565b80639406bb4d1461065057806395d89b411461065857806397ccd07b14610660578063993d77af146106685780639abc8320146106705780639fbc871314610678578063a22cb46514610680578063abfaeee0146106ae578063b2596a67146106b6578063b88d4fde14610760578063beb0a41614610824578063c7c3268b1461082c578063c87b56dd146108d0576102a2565b806342842e0e1161021257806342842e0e146104ce57806347ecb665146105045780634e71e0c81461050c5780634f6ccce71461051457806356c31637146105315780636352211e1461055d57806367b4db531461057a5780636a6278421461058257806370a08231146105a85780637284e416146105ce5780637de1e536146105d657806380e2bc27146105de5780638b82d6931461061c5780638da5cb5b14610648576102a2565b806301ffc9a7146102a757806302d05d3f146102e257806306fdde0314610306578063081812fc14610383578063095ea7b3146103a057806317de3c84146103ce57806318160ddd146103d657806323b872dd146103f057806329ee566c146104265780632a55205a1461042e5780632f745c59146104745780633092afd5146104a057806340b2f5b5146104c6575b600080fd5b6102ce600480360360208110156102bd57600080fd5b50356001600160e01b031916610d9c565b604080519115158252519081900360200190f35b6102ea610dbe565b604080516001600160a01b039092168252519081900360200190f35b61030e610dcd565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610348578181015183820152602001610330565b50505050905090810190601f1680156103755780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ea6004803603602081101561039957600080fd5b5035610e60565b6103cc600480360360408110156103b657600080fd5b506001600160a01b038135169060200135610ec2565b005b6102ea610f9e565b6103de610fad565b60408051918252519081900360200190f35b6103cc6004803603606081101561040657600080fd5b506001600160a01b03813581169160208101359091169060400135610fb3565b6103de610fbe565b6104516004803603604081101561044457600080fd5b5080359060200135610fc4565b604080516001600160a01b03909316835260208301919091528051918290030190f35b6103de6004803603604081101561048a57600080fd5b506001600160a01b038135169060200135611091565b6103cc600480360360208110156104b657600080fd5b50356001600160a01b03166111c2565b61030e611250565b6103cc600480360360608110156104e457600080fd5b506001600160a01b038135811691602081013590911690604001356112de565b6103de6112f9565b6103cc6112ff565b6103de6004803603602081101561052a57600080fd5b5035611370565b6102ce6004803603604081101561054757600080fd5b50803590602001356001600160a01b03166113bb565b6102ea6004803603602081101561057357600080fd5b50356113fa565b6103de61140c565b6103de6004803603602081101561059857600080fd5b50356001600160a01b0316611412565b6103de600480360360208110156105be57600080fd5b50356001600160a01b031661150e565b61030e61157a565b61030e6115d5565b6103cc600480360360808110156105f457600080fd5b506001600160a01b038135811691602081013582169160408201358116916060013516611630565b6103cc6004803603604081101561063257600080fd5b50803590602001356001600160a01b0316611697565b6102ea611756565b6102ce611765565b61030e61176e565b6103de6117cf565b61030e6117d5565b61030e611830565b6102ea61188b565b6103cc6004803603604081101561069657600080fd5b506001600160a01b038135169060200135151561189a565b6103de61199c565b6106d3600480360360208110156106cc57600080fd5b50356119a2565b6040518080602001858152602001848152602001838152602001828103825286818151815260200191508051906020019080838360005b8381101561072257818101518382015260200161070a565b50505050905090810190601f16801561074f5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390f35b6103cc6004803603608081101561077657600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b8111156107b057600080fd5b8201836020820111156107c257600080fd5b803590602001918460018302840111600160201b831117156107e357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611a55945050505050565b6103de611aad565b6103cc6004803603602081101561084257600080fd5b810190602081018135600160201b81111561085c57600080fd5b82018360208201111561086e57600080fd5b803590602001918460018302840111600160201b8311171561088f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611ab3945050505050565b61030e600480360360208110156108e657600080fd5b5035611b40565b6103de611c70565b6103cc600480360360a081101561090b57600080fd5b81359190810190604081016020820135600160201b81111561092c57600080fd5b82018360208201111561093e57600080fd5b803590602001918460018302840111600160201b8311171561095f57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505082359350505060208101359060400135611c76565b6103cc600480360360c08110156109c157600080fd5b810190602081018135600160201b8111156109db57600080fd5b8201836020820111156109ed57600080fd5b803590602001918460018302840111600160201b83111715610a0e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610a6057600080fd5b820183602082011115610a7257600080fd5b803590602001918460018302840111600160201b83111715610a9357600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610ae557600080fd5b820183602082011115610af757600080fd5b803590602001918460018302840111600160201b83111715610b1857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610b6a57600080fd5b820183602082011115610b7c57600080fd5b803590602001918460018302840111600160201b83111715610b9d57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955050823593505050602001356001600160a01b0316611d29565b6102ea611e11565b6103de611e20565b61030e611e26565b6102ea611e81565b6103de611e90565b6102ce60048036036040811015610c2a57600080fd5b506001600160a01b0381358116916020013516611e96565b6103cc60048036036020811015610c5857600080fd5b50356001600160a01b0316611ec4565b6102ce60048036036020811015610c7e57600080fd5b50356001600160a01b0316611f2d565b6103cc6004803603610100811015610ca557600080fd5b8135916020810135916040820135916060810135916080820135919081019060c0810160a0820135600160201b811115610cde57600080fd5b820183602082011115610cf057600080fd5b803590602001918460018302840111600160201b83111715610d1157600080fd5b919390929091602081019035600160201b811115610d2e57600080fd5b820183602082011115610d4057600080fd5b803590602001918460018302840111600160201b83111715610d6157600080fd5b9193509150351515611f42565b61030e611ffe565b6103cc60048036036020811015610d8c57600080fd5b50356001600160a01b0316612059565b6000610da7826120ea565b80610db65750610db682612145565b90505b919050565b6020546001600160a01b031681565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610e565780601f10610e2b57610100808354040283529160200191610e56565b820191906000526020600020905b815481529060010190602001808311610e3957829003601f168201915b5050505050905090565b6000610e6b8261215e565b610ea65760405162461bcd60e51b815260040180806020018281038252602d81526020018061323a602d913960400191505060405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610ecd826113fa565b9050806001600160a01b0316836001600160a01b03161415610f205760405162461bcd60e51b81526004018080602001828103825260228152602001806131376022913960400191505060405180910390fd5b806001600160a01b0316610f32612165565b6001600160a01b03161480610f535750610f5381610f4e612165565b611e96565b610f8e5760405162461bcd60e51b81526004018080602001828103825260398152602001806130226039913960400191505060405180910390fd5b610f99838383612169565b505050565b601f546001600160a01b031681565b60015490565b610f998383836121c5565b60115481565b600080610fcf612e4c565b506000848152600a6020908152604091829020825180840190935280546001600160a01b031680845260019091015491830191909152611076575060008052600a6020908152604080518082019091527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e3546001600160a01b031681527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e454918101919091525b80516020820151909350612710908502049150509250929050565b600061109c8361150e565b82106110d95760405162461bcd60e51b8152600401808060200182810382526022815260200180612f616022913960400191505060405180910390fd5b60006110e3610fad565b905060008060005b83811015611184576110fb612e4c565b506000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561114657805192505b876001600160a01b0316836001600160a01b0316141561117b5786841415611174575093506111bc92505050565b6001909301925b506001016110eb565b5060405162461bcd60e51b815260040180806020018281038252602e8152602001806131dd602e913960400191505060405180910390fd5b92915050565b600b546001600160a01b03163314806111e55750601e546001600160a01b031633145b806111fa5750601f546001600160a01b031633145b61122f576040805162461bcd60e51b81526020600482015260016024820152601960f91b604482015290519081900360640190fd5b6001600160a01b03166000908152602160205260409020805460ff19169055565b6010805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156112d65780601f106112ab576101008083540402835291602001916112d6565b820191906000526020600020905b8154815290600101906020018083116112b957829003601f168201915b505050505081565b610f9983838360405180602001604052806000815250611a55565b60185481565b600c546001600160a01b0316331461131657600080fd5b600c8054600b80546001600160a01b038084166001600160a01b031992831617928390559216909255604051600092909116907f897d3c8bbea11029ba3b26eb993fe8edb14c2c4c0d2ecceccce41d1d83d3e359908390a3565b600061137a610fad565b82106113b75760405162461bcd60e51b8152600401808060200182810382526023815260200180612fad6023913960400191505060405180910390fd5b5090565b60006113cf6113c9846113fa565b83611e96565b806113f35750816001600160a01b03166113e884610e60565b6001600160a01b0316145b9392505050565b6000611405826124d5565b5192915050565b60135481565b600b546000906001600160a01b031633148061143d57503360009081526021602052604090205460ff165b611472576040805162461bcd60e51b81526020600482015260016024820152603160f81b604482015290519081900360640190fd5b600061147c611c70565b9050611489836001612615565b601154156114ae576012546011546114ae9183916001600160a01b039091169061262f565b6114b6612733565b7f5758c4c0a4d007ca9768a0a574eedc39af88c4423f4ad0f8895b1b8fd1e7613381846114e1612165565b604080519384526001600160a01b039283166020850152911682820152519081900360600190a192915050565b60006001600160a01b0382166115555760405162461bcd60e51b815260040180806020018281038252602b815260200180613085602b913960400191505060405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160801b031690565b600f805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156112d65780601f106112ab576101008083540402835291602001916112d6565b600e805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156112d65780601f106112ab576101008083540402835291602001916112d6565b600b546001600160a01b0316331461164757600080fd5b602080546001600160a01b039586166001600160a01b031991821617909155601e805494861694821694909417909355601f805492851692841692909217909155600b8054919093169116179055565b61169f612e4c565b506000828152600a6020908152604091829020825180840190935280546001600160a01b031680845260019091015491830191909152158015906116ec575080516001600160a01b031633145b6117275760405162461bcd60e51b81526004018080602001828103825260308152602001806131596030913960400191505060405180910390fd5b506000918252600a602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b600b546001600160a01b031681565b601b5460ff1681565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e565780601f10610e2b57610100808354040283529160200191610e56565b60175481565b6019805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156112d65780601f106112ab576101008083540402835291602001916112d6565b6022805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156112d65780601f106112ab576101008083540402835291602001916112d6565b6012546001600160a01b031681565b6118a2612165565b6001600160a01b0316826001600160a01b03161415611905576040805162461bcd60e51b815260206004820152601a60248201527922a9219b9918a09d1030b8383937bb32903a379031b0b63632b960311b604482015290519081900360640190fd5b8060086000611912612165565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611956612165565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b60165481565b601c6020908152600091825260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452909291839190830182828015611a395780601f10611a0e57610100808354040283529160200191611a39565b820191906000526020600020905b815481529060010190602001808311611a1c57829003601f168201915b5050505050908060010154908060020154908060030154905084565b611a608484846121c5565b611a6c84848484612781565b611aa75760405162461bcd60e51b81526004018080602001828103825260338152602001806131896033913960400191505060405180910390fd5b50505050565b60145481565b600b546001600160a01b0316331480611ad65750601e546001600160a01b031633145b80611aeb5750601f546001600160a01b031633145b611b20576040805162461bcd60e51b81526020600482015260016024820152601960f91b604482015290519081900360640190fd5b611b2981612937565b8051611b3c906022906020840190612e63565b5050565b6060611b4b8261215e565b611b865760405162461bcd60e51b815260040180806020018281038252602f8152602001806130d6602f913960400191505060405180910390fd5b6060611b9061294a565b90506000815111611bb057604051806020016040528060008152506113f3565b80611bba846129ab565b6040516020018083805190602001908083835b60208310611bec5780518252601f199092019160209182019101611bcd565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310611c345780518252601f199092019160209182019101611c15565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529392505050565b601d5490565b600b546001600160a01b0316331480611c995750601e546001600160a01b031633145b80611cae5750601f546001600160a01b031633145b611ce3576040805162461bcd60e51b81526020600482015260016024820152601960f91b604482015290519081900360640190fd5b6000858152601c602090815260409091208551611d0292870190612e63565b506000948552601c6020526040909420600181019290925560028201556003019190915550565b600b546001600160a01b0316331480611d4c5750601e546001600160a01b031633145b80611d615750601f546001600160a01b031633145b611d96576040805162461bcd60e51b81526020600482015260016024820152601960f91b604482015290519081900360640190fd5b8551611da990600d906020890190612e63565b508451611dbd90600e906020880190612e63565b508351611dd190600f906020870190612e63565b508251611de5906010906020860190612e63565b50601191909155601280546001600160a01b0319166001600160a01b0390921691909117905550505050565b601e546001600160a01b031681565b60095481565b601a805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156112d65780601f106112ab576101008083540402835291602001916112d6565b600c546001600160a01b031681565b60155481565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b600b546001600160a01b03163314611edb57600080fd5b600c80546001600160a01b0319166001600160a01b03838116918217909255600b54604051919216907f83ada3430836f9d4bd6f7bc690ffbba5199cb19b37393dd64c2299302135359690600090a350565b60216020526000908152604090205460ff1681565b600b546001600160a01b0316331480611f655750601e546001600160a01b031633145b80611f7a5750601f546001600160a01b031633145b611faf576040805162461bcd60e51b81526020600482015260016024820152601960f91b604482015290519081900360640190fd5b60148a90556015899055601688905560178790556018869055611fd460198686612edd565b50611fe1601a8484612edd565b50601b805460ff1916911515919091179055505050505050505050565b600d805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156112d65780601f106112ab576101008083540402835291602001916112d6565b600b546001600160a01b031633148061207c5750601e546001600160a01b031633145b806120915750601f546001600160a01b031633145b6120c6576040805162461bcd60e51b81526020600482015260016024820152601960f91b604482015290519081900360640190fd5b6001600160a01b03166000908152602160205260409020805460ff19166001179055565b60006001600160e01b031982166380ac58cd60e01b148061211b57506001600160e01b03198216635b5e139f60e01b145b8061213657506001600160e01b0319821663780e9d6360e01b145b80610db65750610db682612a85565b6001600160e01b0319811663152a902d60e11b14919050565b6001541190565b3390565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6121cd612e4c565b6121d6826124d5565b9050600081600001516001600160a01b03166121f0612165565b6001600160a01b031614806122255750612208612165565b6001600160a01b031661221a84610e60565b6001600160a01b0316145b806122395750815161223990610f4e612165565b9050806122775760405162461bcd60e51b81526004018080602001828103825260328152602001806131056032913960400191505060405180910390fd5b846001600160a01b031682600001516001600160a01b0316146122cb5760405162461bcd60e51b81526004018080602001828103825260268152602001806130b06026913960400191505060405180910390fd5b6001600160a01b0384166123105760405162461bcd60e51b8152600401808060200182810382526025815260200180612fd06025913960400191505060405180910390fd5b61231d8585856001611aa7565b61232d6000848460000151612169565b6001600160a01b03858116600090815260066020908152604080832080546001600160801b03198082166001600160801b0392831660001901831617909255898616808652838620805493841693831660019081019093169390931790925582518084018452918252426001600160401b039081168386019081528a875260059095528386209251835495516001600160a01b03199096169088161767ffffffffffffffff60a01b1916600160a01b959091169490940293909317905590860180835291205490911661247f576124038161215e565b1561247f5760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526005909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124cd8686866001611aa7565b505050505050565b6124dd612e4c565b6124e68261215e565b6125215760405162461bcd60e51b815260040180806020018281038252602a815260200180612f83602a913960400191505060405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000648310612572575060017f00000000000000000000000000000000000000000000000000000000000000648303015b825b8181106125dd57612583612e4c565b506000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156125d3579250610db9915050565b5060001901612574565b5060405162461bcd60e51b815260040180806020018281038252602f81526020018061320b602f913960400191505060405180910390fd5b611b3c828260405180602001604052806000815250612aa4565b6127108111156126705760405162461bcd60e51b815260040180806020018281038252602a81526020018061305b602a913960400191505060405180910390fd5b612678612e4c565b506000838152600a6020908152604091829020825180840190935280546001600160a01b031680845260019091015491830191909152156126ea5760405162461bcd60e51b815260040180806020018281038252602d815260200180612ff5602d913960400191505060405180910390fd5b506040805180820182526001600160a01b03938416815260208082019384526000958652600a90529320925183546001600160a01b031916921691909117825551600190910155565b601354601d5410612776576040805162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b604482015290519081900360640190fd5b601d80546001019055565b6000612795846001600160a01b0316612e46565b1561292b57836001600160a01b031663150b7a026127b1612165565b8786866040518563ffffffff1660e01b815260040180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561282457818101518382015260200161280c565b50505050905090810190601f1680156128515780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561287357600080fd5b505af192505050801561289857506040513d602081101561289357600080fd5b505160015b612911573d8080156128c6576040519150601f19603f3d011682016040523d82523d6000602084013e6128cb565b606091505b5080516129095760405162461bcd60e51b81526004018080602001828103825260338152602001806131896033913960400191505060405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061292f565b5060015b949350505050565b8051611b3c906004906020840190612e63565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e565780601f10610e2b57610100808354040283529160200191610e56565b6060816129d057506040805180820190915260018152600360fc1b6020820152610db9565b8160005b81156129e857600101600a820491506129d4565b6060816001600160401b0381118015612a0057600080fd5b506040519080825280601f01601f191660200182016040528015612a2b576020820181803683370190505b50859350905060001982015b8315612a7c57600a840660300160f81b82828060019003935081518110612a5a57fe5b60200101906001600160f81b031916908160001a905350600a84049350612a37565b50949350505050565b6001600160e01b03191660009081526020819052604090205460ff1690565b6001546001600160a01b038416612aec5760405162461bcd60e51b81526004018080602001828103825260218152602001806131bc6021913960400191505060405180910390fd5b612af58161215e565b15612b47576040805162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015290519081900360640190fd5b7f0000000000000000000000000000000000000000000000000000000000000064831115612ba65760405162461bcd60e51b81526004018080602001828103825260228152602001806132676022913960400191505060405180910390fd5b612bb36000858386611aa7565b612bbb612e4c565b60066000866001600160a01b03166001600160a01b031681526020019081526020016000206040518060400160405290816000820160009054906101000a90046001600160801b03166001600160801b03166001600160801b031681526020016000820160109054906101000a90046001600160801b03166001600160801b03166001600160801b03168152505090506040518060400160405280858360000151016001600160801b03168152602001858360200151016001600160801b031681525060066000876001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a8154816001600160801b0302191690836001600160801b0316021790555060208201518160000160106101000a8154816001600160801b0302191690836001600160801b031602179055509050506040518060400160405280866001600160a01b03168152602001426001600160401b03168152506005600084815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160000160146101000a8154816001600160401b0302191690836001600160401b03160217905550905050600082905060005b85811015612e335760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612dec6000888488612781565b612e275760405162461bcd60e51b81526004018080602001828103825260338152602001806131896033913960400191505060405180910390fd5b60019182019101612d9f565b5060018190556124cd6000878588611aa7565b3b151590565b604080518082019091526000808252602082015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612ea457805160ff1916838001178555612ed1565b82800160010185558215612ed1579182015b82811115612ed1578251825591602001919060010190612eb6565b506113b7929150612f4b565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612f1e5782800160ff19823516178555612ed1565b82800160010185558215612ed1579182015b82811115612ed1578235825591602001919060010190612f30565b5b808211156113b75760008155600101612f4c56fe455243373231413a206f776e657220696e646578206f7574206f6620626f756e6473455243373231413a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756e6473455243373231413a207472616e7366657220746f20746865207a65726f206164647265737345524332393831506572546f6b656e526f79616c746965733a20526f79616c747920616c726561647920736574455243373231413a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c45524332393831506572546f6b656e526f79616c746965733a20526f79616c747920546f6f2068696768455243373231413a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243373231413a207472616e736665722066726f6d20696e636f7272656374206f776e65724552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231413a20617070726f76616c20746f2063757272656e74206f776e657245524332393831506572546f6b656e526f79616c746965733a2043757272656e7420726563697069656e74206f6e6c79455243373231413a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572455243373231413a206d696e7420746f20746865207a65726f2061646472657373455243373231413a20756e61626c6520746f2067657420746f6b656e206f66206f776e657220627920696e646578455243373231413a20756e61626c6520746f2064657465726d696e6520746865206f776e6572206f6620746f6b656e455243373231413a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207175616e7469747920746f206d696e7420746f6f2068696768a264697066735822122096482e111e2ec5935d384e92597ebb38ec0bc3464cebc1cae43e4cf4f4bad6b264736f6c634300060c0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000001d4f70656e53746172746572205072696d6174652045766f6c7574696f6e00000000000000000000000000000000000000000000000000000000000000000000034f50450000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): OpenStarter Primate Evolution
Arg [1] : _symbol (string): OPE
Arg [2] : _maxQuantityMinted (uint256): 100

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [4] : 4f70656e53746172746572205072696d6174652045766f6c7574696f6e000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4f50450000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

65489:6131:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67609:323;;;;;;;;;;;;;;;;-1:-1:-1;67609:323:0;-1:-1:-1;;;;;;67609:323:0;;:::i;:::-;;;;;;;;;;;;;;;;;;66804:22;;;:::i;:::-;;;;-1:-1:-1;;;;;66804:22:0;;;;;;;;;;;;;;47289:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49081:292;;;;;;;;;;;;;;;;-1:-1:-1;49081:292:0;;:::i;48603:412::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;48603:412:0;;;;;;;;:::i;:::-;;66748:26;;;:::i;43684:100::-;;;:::i;:::-;;;;;;;;;;;;;;;;50108:162;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50108:162:0;;;;;;;;;;;;;;;;;:::i;66021:22::-;;;:::i;64289:552::-;;;;;;;;;;;;;;;;-1:-1:-1;64289:552:0;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;64289:552:0;;;;;;;;;;;;;;;;;;;;;44392:864;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44392:864:0;;;;;;;;:::i;69995:103::-;;;;;;;;;;;;;;;;-1:-1:-1;69995:103:0;-1:-1:-1;;;;;69995:103:0;;:::i;65978:21::-;;;:::i;50341:177::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50341:177:0;;;;;;;;;;;;;;;;;:::i;66401:23::-;;;:::i;60746:185::-;;;:::i;43861:228::-;;;;;;;;;;;;;;;;-1:-1:-1;43861:228:0;;:::i;71365:252::-;;;;;;;;;;;;;;;;-1:-1:-1;71365:252:0;;;;;;-1:-1:-1;;;;;71365:252:0;;:::i;47098:124::-;;;;;;;;;;;;;;;;-1:-1:-1;47098:124:0;;:::i;66139:32::-;;;:::i;70390:411::-;;;;;;;;;;;;;;;;-1:-1:-1;70390:411:0;-1:-1:-1;;;;;70390:411:0;;:::i;45814:258::-;;;;;;;;;;;;;;;;-1:-1:-1;45814:258:0;-1:-1:-1;;;;;45814:258:0;;:::i;65931:25::-;;;:::i;65881:24::-;;;:::i;67940:297::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;67940:297:0;;;;;;;;;;;;;;;;;;;;;;;;:::i;63185:439::-;;;;;;;;;;;;;;;;-1:-1:-1;63185:439:0;;;;;;-1:-1:-1;;;;;63185:439:0;;:::i;59541:20::-;;;:::i;66546:22::-;;;:::i;47458:104::-;;;:::i;66356:21::-;;;:::i;66450:::-;;;:::i;66920:::-;;;:::i;66072:30::-;;;:::i;49445:311::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49445:311:0;;;;;;;;;;:::i;66309:22::-;;;:::i;66600:44::-;;;;;;;;;;;;;;;;-1:-1:-1;66600:44:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50589:355;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50589:355:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;50589:355:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;50589:355:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50589:355:0;;-1:-1:-1;50589:355:0;;-1:-1:-1;;;;;50589:355:0:i;66215:22::-;;;:::i;70106:140::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;70106:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;70106:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70106:140:0;;-1:-1:-1;70106:140:0;;-1:-1:-1;;;;;70106:140:0:i;47633:468::-;;;;;;;;;;;;;;;;-1:-1:-1;47633:468:0;;:::i;70946:94::-;;;:::i;69487:335::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;69487:335:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;69487:335:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69487:335:0;;-1:-1:-1;;69487:335:0;;;-1:-1:-1;;;69487:335:0;;;;;;;;;:::i;68352:456::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;68352:456:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;68352:456:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68352:456:0;;;;;;;;-1:-1:-1;68352:456:0;;-1:-1:-1;;;;;68352:456:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;68352:456:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68352:456:0;;;;;;;;-1:-1:-1;68352:456:0;;-1:-1:-1;;;;;68352:456:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;68352:456:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68352:456:0;;;;;;;;-1:-1:-1;68352:456:0;;-1:-1:-1;;;;;68352:456:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;68352:456:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68352:456:0;;-1:-1:-1;;68352:456:0;;;-1:-1:-1;;;68352:456:0;;;-1:-1:-1;;;;;68352:456:0;;:::i;66694:25::-;;;:::i;55470:43::-;;;:::i;66493:24::-;;;:::i;59568:27::-;;;:::i;66262:22::-;;;:::i;49827:214::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49827:214:0;;;;;;;;;;:::i;60503:169::-;;;;;;;;;;;;;;;;-1:-1:-1;60503:169:0;-1:-1:-1;;;;;60503:169:0;;:::i;66854:39::-;;;;;;;;;;;;;;;;-1:-1:-1;66854:39:0;-1:-1:-1;;;;;66854:39:0;;:::i;68879:538::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;68879:538:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;68879:538:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;68879:538:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;68879:538:0;;;;;;;;;;;;-1:-1:-1;68879:538:0;-1:-1:-1;68879:538:0;;;;:::i;65835:18::-;;;:::i;69882:105::-;;;;;;;;;;;;;;;;-1:-1:-1;69882:105:0;-1:-1:-1;;;;;69882:105:0;;:::i;67609:323::-;67773:4;67815:37;67840:11;67815:24;:37::i;:::-;:109;;;;67869:55;67912:11;67869:42;:55::i;:::-;67795:129;;67609:323;;;;:::o;66804:22::-;;;-1:-1:-1;;;;;66804:22:0;;:::o;47289:100::-;47376:5;47369:12;;;;;;;-1:-1:-1;;47369:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47343:13;;47369:12;;47376:5;;47369:12;;47376:5;47369:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47289:100;:::o;49081:292::-;49185:7;49232:16;49240:7;49232;:16::i;:::-;49210:111;;;;-1:-1:-1;;;49210:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49341:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;49341:24:0;;49081:292::o;48603:412::-;48676:13;48692:23;48707:7;48692:14;:23::i;:::-;48676:39;;48740:5;-1:-1:-1;;;;;48734:11:0;:2;-1:-1:-1;;;;;48734:11:0;;;48726:58;;;;-1:-1:-1;;;48726:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48835:5;-1:-1:-1;;;;;48819:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;48819:21:0;;:62;;;;48844:37;48861:5;48868:12;:10;:12::i;:::-;48844:16;:37::i;:::-;48797:169;;;;-1:-1:-1;;;48797:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48979:28;48988:2;48992:7;49001:5;48979:8;:28::i;:::-;48603:412;;;:::o;66748:26::-;;;-1:-1:-1;;;;;66748:26:0;;:::o;43684:100::-;43764:12;;43684:100;:::o;50108:162::-;50234:28;50244:4;50250:2;50254:7;50234:9;:28::i;66021:22::-;;;;:::o;64289:552::-;64380:17;64399:22;64434:26;;:::i;:::-;-1:-1:-1;64463:20:0;;;;:10;:20;;;;;;;;;64434:49;;;;;;;;;;-1:-1:-1;;;;;64434:49:0;;;;;;;;;;;;;;;;64552:87;;-1:-1:-1;64614:13:0;;;:10;:13;;;;;64604:23;;;;;;;;64614:13;64604:23;-1:-1:-1;;;;;64604:23:0;;;;;;;;;;;;64552:87;64706:17;;64765:14;;;;64706:17;;-1:-1:-1;64783:5:0;;64752:27;;64751:37;64734:54;;64799:34;64289:552;;;;;:::o;44392:864::-;44517:7;44558:16;44568:5;44558:9;:16::i;:::-;44550:5;:24;44542:71;;;;-1:-1:-1;;;44542:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44624:22;44649:13;:11;:13::i;:::-;44624:38;;44673:19;44707:25;44761:9;44756:426;44780:14;44776:1;:18;44756:426;;;44816:31;;:::i;:::-;-1:-1:-1;44850:14:0;;;;:11;:14;;;;;;;;;44816:48;;;;;;;;;-1:-1:-1;;;;;44816:48:0;;;;;-1:-1:-1;;;44816:48:0;;;-1:-1:-1;;;;;44816:48:0;;;;;;;;44883:28;44879:103;;44952:14;;;-1:-1:-1;44879:103:0;45021:5;-1:-1:-1;;;;;45000:26:0;:17;-1:-1:-1;;;;;45000:26:0;;44996:175;;;45066:5;45051:11;:20;45047:77;;;-1:-1:-1;45103:1:0;-1:-1:-1;45096:8:0;;-1:-1:-1;;;45096:8:0;45047:77;45142:13;;;;;44996:175;-1:-1:-1;44796:3:0;;44756:426;;;;45192:56;;-1:-1:-1;;;45192:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44392:864;;;;;:::o;69995:103::-;67123:5;;-1:-1:-1;;;;;67123:5:0;67132:10;67123:19;;:64;;-1:-1:-1;67163:10:0;;-1:-1:-1;;;;;67163:10:0;67177;67163:24;67123:64;:110;;;-1:-1:-1;67208:11:0;;-1:-1:-1;;;;;67208:11:0;67223:10;67208:25;67123:110;67101:161;;;;;-1:-1:-1;;;67101:161:0;;;;;;;;;;;;-1:-1:-1;;;67101:161:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;70066:16:0::1;70085:5;70066:16:::0;;;:7:::1;:16;::::0;;;;:24;;-1:-1:-1;;70066:24:0::1;::::0;;69995:103::o;65978:21::-;;;;;;;;;;;;;;;-1:-1:-1;;65978:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50341:177::-;50471:39;50488:4;50494:2;50498:7;50471:39;;;;;;;;;;;;:16;:39::i;66401:23::-;;;;:::o;60746:185::-;60139:12;;-1:-1:-1;;;;;60139:12:0;60125:10;:26;60117:35;;;;;;60815:12:::1;::::0;;60807:5:::1;:20:::0;;-1:-1:-1;;;;;60815:12:0;;::::1;-1:-1:-1::0;;;;;;60807:20:0;;::::1;;::::0;;;;60838:25;::::1;::::0;;;60879:44:::1;::::0;-1:-1:-1;;60903:5:0;;::::1;::::0;60879:44:::1;::::0;-1:-1:-1;;60879:44:0::1;60746:185::o:0;43861:228::-;43964:7;44005:13;:11;:13::i;:::-;43997:5;:21;43989:69;;;;-1:-1:-1;;;43989:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44076:5:0;43861:228::o;71365:252::-;71470:4;71512:46;71529:17;71537:8;71529:7;:17::i;:::-;71548:9;71512:16;:46::i;:::-;:97;;;;71600:9;-1:-1:-1;;;;;71575:34:0;:21;71587:8;71575:11;:21::i;:::-;-1:-1:-1;;;;;71575:34:0;;71512:97;71492:117;71365:252;-1:-1:-1;;;71365:252:0:o;47098:124::-;47162:7;47189:20;47201:7;47189:11;:20::i;:::-;:25;;47098:124;-1:-1:-1;;47098:124:0:o;66139:32::-;;;;:::o;70390:411::-;66991:5;;70446:7;;-1:-1:-1;;;;;66991:5:0;67000:10;66991:19;;:42;;-1:-1:-1;67022:10:0;67014:19;;;;:7;:19;;;;;;;;66991:42;66983:56;;;;;-1:-1:-1;;;66983:56:0;;;;;;;;;;;;-1:-1:-1;;;66983:56:0;;;;;;;;;;;;;;;70466:18:::1;70487:16;:14;:16::i;:::-;70466:37;;70514:17;70524:3;70529:1;70514:9;:17::i;:::-;70546:7;::::0;:11;70542:139:::1;;70603:15;::::0;70620:7:::1;::::0;70574:54:::1;::::0;70591:10;;-1:-1:-1;;;;;70603:15:0;;::::1;::::0;70574:16:::1;:54::i;:::-;70691:19;:17;:19::i;:::-;70726:37;70733:10;70745:3;70750:12;:10;:12::i;:::-;70726:37;::::0;;;;;-1:-1:-1;;;;;70726:37:0;;::::1;;::::0;::::1;::::0;;::::1;::::0;;;;;;;;;;;;::::1;70783:10:::0;70390:411;-1:-1:-1;;70390:411:0:o;45814:258::-;45878:7;-1:-1:-1;;;;;45920:19:0;;45898:112;;;;-1:-1:-1;;;45898:112:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;46036:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;46036:27:0;;45814:258::o;65931:25::-;;;;;;;;;;;;;;;-1:-1:-1;;65931:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65881:24;;;;;;;;;;;;;;;-1:-1:-1;;65881:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67940:297;59943:5;;-1:-1:-1;;;;;59943:5:0;59929:10;:19;59921:28;;;;;;68114:7:::1;:18:::0;;-1:-1:-1;;;;;68114:18:0;;::::1;-1:-1:-1::0;;;;;;68114:18:0;;::::1;;::::0;;;68143:10:::1;:24:::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;68178:11:::1;:26:::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;68215:5:::1;:14:::0;;;;;::::1;::::0;::::1;;::::0;;67940:297::o;63185:439::-;63373:26;;:::i;:::-;-1:-1:-1;63402:20:0;;;;:10;:20;;;;;;;;;63373:49;;;;;;;;;;-1:-1:-1;;;;;63373:49:0;;;;;;;;;;;;;;;;63441:31;;;;:66;;-1:-1:-1;63476:17:0;;-1:-1:-1;;;;;63476:31:0;63497:10;63476:31;63441:66;63433:127;;;;-1:-1:-1;;;63433:127:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63573:20:0;;;;:10;:20;;;;;;:43;;-1:-1:-1;;;;;;63573:43:0;-1:-1:-1;;;;;63573:43:0;;;;;;;;;63185:439::o;59541:20::-;;;-1:-1:-1;;;;;59541:20:0;;:::o;66546:22::-;;;;;;:::o;47458:104::-;47547:7;47540:14;;;;;;;;-1:-1:-1;;47540:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47514:13;;47540:14;;47547:7;;47540:14;;47547:7;47540:14;;;;;;;;;;;;;;;;;;;;;;;;66356:21;;;;:::o;66450:::-;;;;;;;;;;;;;;;-1:-1:-1;;66450:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66920;;;;;;;;;;;;;;;-1:-1:-1;;66920:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66072:30;;;-1:-1:-1;;;;;66072:30:0;;:::o;49445:311::-;49575:12;:10;:12::i;:::-;-1:-1:-1;;;;;49563:24:0;:8;-1:-1:-1;;;;;49563:24:0;;;49555:63;;;;;-1:-1:-1;;;49555:63:0;;;;;;;;;;;;-1:-1:-1;;;49555:63:0;;;;;;;;;;;;;;;49676:8;49631:18;:32;49650:12;:10;:12::i;:::-;-1:-1:-1;;;;;49631:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;49631:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;49631:53:0;;;;;;;;;;;49715:12;:10;:12::i;:::-;-1:-1:-1;;;;;49700:48:0;;49739:8;49700:48;;;;;;;;;;;;;;;;;;;;49445:311;;:::o;66309:22::-;;;;:::o;66600:44::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;66600:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50589:355::-;50748:28;50758:4;50764:2;50768:7;50748:9;:28::i;:::-;50809:48;50832:4;50838:2;50842:7;50851:5;50809:22;:48::i;:::-;50787:149;;;;-1:-1:-1;;;50787:149:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50589:355;;;;:::o;66215:22::-;;;;:::o;70106:140::-;67123:5;;-1:-1:-1;;;;;67123:5:0;67132:10;67123:19;;:64;;-1:-1:-1;67163:10:0;;-1:-1:-1;;;;;67163:10:0;67177;67163:24;67123:64;:110;;;-1:-1:-1;67208:11:0;;-1:-1:-1;;;;;67208:11:0;67223:10;67208:25;67123:110;67101:161;;;;;-1:-1:-1;;;67101:161:0;;;;;;;;;;;;-1:-1:-1;;;67101:161:0;;;;;;;;;;;;;;;70182:27:::1;70200:8;70182:17;:27::i;:::-;70220:18:::0;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;70106:140:::0;:::o;47633:468::-;47751:13;47804:16;47812:7;47804;:16::i;:::-;47782:113;;;;-1:-1:-1;;;47782:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47908:21;47932:10;:8;:10::i;:::-;47908:34;;47997:1;47979:7;47973:21;:25;:120;;;;;;;;;;;;;;;;;48042:7;48051:18;:7;:16;:18::i;:::-;48025:45;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48025:45:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48025:45:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48025:45:0;;;;;;;;;;;;;-1:-1:-1;;48025:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47953:140;47633:468;-1:-1:-1;;;47633:468:0:o;70946:94::-;71020:12;;70946:94;:::o;69487:335::-;67123:5;;-1:-1:-1;;;;;67123:5:0;67132:10;67123:19;;:64;;-1:-1:-1;67163:10:0;;-1:-1:-1;;;;;67163:10:0;67177;67163:24;67123:64;:110;;;-1:-1:-1;67208:11:0;;-1:-1:-1;;;;;67208:11:0;67223:10;67208:25;67123:110;67101:161;;;;;-1:-1:-1;;;67101:161:0;;;;;;;;;;;;-1:-1:-1;;;67101:161:0;;;;;;;;;;;;;;;69673:14:::1;::::0;;;:6:::1;:14;::::0;;;;;;;:28;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;69712:14:0::1;::::0;;;:6:::1;:14;::::0;;;;;:19:::1;::::0;::::1;:26:::0;;;;69749:19:::1;::::0;::::1;:26:::0;69786:20:::1;;:28:::0;;;;-1:-1:-1;69487:335:0:o;68352:456::-;67123:5;;-1:-1:-1;;;;;67123:5:0;67132:10;67123:19;;:64;;-1:-1:-1;67163:10:0;;-1:-1:-1;;;;;67163:10:0;67177;67163:24;67123:64;:110;;;-1:-1:-1;67208:11:0;;-1:-1:-1;;;;;67208:11:0;67223:10;67208:25;67123:110;67101:161;;;;;-1:-1:-1;;;67101:161:0;;;;;;;;;;;;-1:-1:-1;;;67101:161:0;;;;;;;;;;;;;;;68613:12;;::::1;::::0;:4:::1;::::0;:12:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;68636:24:0;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;68671:26:0;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;68708:18:0;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;68737:7:0::1;:18:::0;;;;68766:15:::1;:34:::0;;-1:-1:-1;;;;;;68766:34:0::1;-1:-1:-1::0;;;;;68766:34:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;;68352:456:0:o;66694:25::-;;;-1:-1:-1;;;;;66694:25:0;;:::o;55470:43::-;;;;:::o;66493:24::-;;;;;;;;;;;;;;;-1:-1:-1;;66493:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59568:27;;;-1:-1:-1;;;;;59568:27:0;;:::o;66262:22::-;;;;:::o;49827:214::-;-1:-1:-1;;;;;49998:25:0;;;49969:4;49998:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;49827:214::o;60503:169::-;59943:5;;-1:-1:-1;;;;;59943:5:0;59929:10;:19;59921:28;;;;;;60577:12:::1;:24:::0;;-1:-1:-1;;;;;;60577:24:0::1;-1:-1:-1::0;;;;;60577:24:0;;::::1;::::0;;::::1;::::0;;;60647:5:::1;::::0;60617:47:::1;::::0;60577:24;;60647:5:::1;::::0;60617:47:::1;::::0;-1:-1:-1;;60617:47:0::1;60503:169:::0;:::o;66854:39::-;;;;;;;;;;;;;;;:::o;68879:538::-;67123:5;;-1:-1:-1;;;;;67123:5:0;67132:10;67123:19;;:64;;-1:-1:-1;67163:10:0;;-1:-1:-1;;;;;67163:10:0;67177;67163:24;67123:64;:110;;;-1:-1:-1;67208:11:0;;-1:-1:-1;;;;;67208:11:0;67223:10;67208:25;67123:110;67101:161;;;;;-1:-1:-1;;;67101:161:0;;;;;;;;;;;;-1:-1:-1;;;67101:161:0;;;;;;;;;;;;;;;69176:7:::1;:18:::0;;;69205:7:::1;:18:::0;;;69234:7:::1;:18:::0;;;69263:6:::1;:16:::0;;;69290:8:::1;:20:::0;;;69321:18:::1;:7;69331:8:::0;;69321:18:::1;:::i;:::-;-1:-1:-1::0;69350:24:0::1;:10;69363:11:::0;;69350:24:::1;:::i;:::-;-1:-1:-1::0;69385:10:0::1;:24:::0;;-1:-1:-1;;69385:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;;;;;;;;;68879:538:0:o;65835:18::-;;;;;;;;;;;;;;;-1:-1:-1;;65835:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69882:105;67123:5;;-1:-1:-1;;;;;67123:5:0;67132:10;67123:19;;:64;;-1:-1:-1;67163:10:0;;-1:-1:-1;;;;;67163:10:0;67177;67163:24;67123:64;:110;;;-1:-1:-1;67208:11:0;;-1:-1:-1;;;;;67208:11:0;67223:10;67208:25;67123:110;67101:161;;;;;-1:-1:-1;;;67101:161:0;;;;;;;;;;;;-1:-1:-1;;;67101:161:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;69953:19:0::1;;::::0;;;:7:::1;:19;::::0;;;;:26;;-1:-1:-1;;69953:26:0::1;69975:4;69953:26;::::0;;69882:105::o;45328:422::-;45475:4;-1:-1:-1;;;;;;45517:40:0;;-1:-1:-1;;;45517:40:0;;:105;;-1:-1:-1;;;;;;;45574:48:0;;-1:-1:-1;;;45574:48:0;45517:105;:172;;;-1:-1:-1;;;;;;;45639:50:0;;-1:-1:-1;;;45639:50:0;45517:172;:225;;;;45706:36;45730:11;45706:23;:36::i;62163:217::-;-1:-1:-1;;;;;;62322:50:0;;-1:-1:-1;;;62322:50:0;62163:217;;;:::o;51199:111::-;51290:12;;-1:-1:-1;51280:22:0;51199:111::o;14536:106::-;14624:10;14536:106;:::o;55266:196::-;55381:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;55381:29:0;-1:-1:-1;;;;;55381:29:0;;;;;;;;;55426:28;;55381:24;;55426:28;;;;;;;55266:196;;;:::o;53439:1709::-;53554:35;;:::i;:::-;53592:20;53604:7;53592:11;:20::i;:::-;53554:58;;53625:22;53667:13;:18;;;-1:-1:-1;;;;;53651:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;53651:34:0;;:87;;;;53726:12;:10;:12::i;:::-;-1:-1:-1;;;;;53702:36:0;:20;53714:7;53702:11;:20::i;:::-;-1:-1:-1;;;;;53702:36:0;;53651:87;:154;;;-1:-1:-1;53772:18:0;;53755:50;;53792:12;:10;:12::i;53755:50::-;53625:181;;53841:17;53819:117;;;;-1:-1:-1;;;53819:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53993:4;-1:-1:-1;;;;;53971:26:0;:13;:18;;;-1:-1:-1;;;;;53971:26:0;;53949:114;;;;-1:-1:-1;;;53949:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54082:16:0;;54074:66;;;;-1:-1:-1;;;54074:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54153:43;54175:4;54181:2;54185:7;54194:1;54153:21;:43::i;:::-;54261:49;54278:1;54282:7;54291:13;:18;;;54261:8;:49::i;:::-;-1:-1:-1;;;;;54323:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;54323:31:0;;;-1:-1:-1;;;;;54323:31:0;;;-1:-1:-1;;54323:31:0;;;;;;;54365:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;54365:29:0;;;;;;;;;;;;;54428:43;;;;;;;;;;54454:15;-1:-1:-1;;;;;54428:43:0;;;;;;;;;54405:20;;;:11;:20;;;;;;:66;;;;;;-1:-1:-1;;;;;;54405:66:0;;;;;;;-1:-1:-1;;;;54405:66:0;-1:-1:-1;;;54405:66:0;;;;;;;;;;;;;;54733:11;;;54759:24;;;;;:29;54733:11;;54759:29;54755:288;;54823:20;54831:11;54823:7;:20::i;:::-;54819:213;;;54891:125;;;;;;;;54928:18;;-1:-1:-1;;;;;54891:125:0;;;;;;54969:28;;;;-1:-1:-1;;;;;54891:125:0;;;;;;;;;-1:-1:-1;54864:24:0;;;:11;:24;;;;;;;:152;;;;;;-1:-1:-1;;;;;;54864:152:0;;;;;;;;;-1:-1:-1;;;;54864:152:0;-1:-1:-1;;;54864:152:0;;;;;;;;;;;;;;54819:213;55079:7;55075:2;-1:-1:-1;;;;;55060:27:0;55069:4;-1:-1:-1;;;;;55060:27:0;;;;;;;;;;;55098:42;55119:4;55125:2;55129:7;55138:1;55098:20;:42::i;:::-;53439:1709;;;;;;:::o;46354:682::-;46442:21;;:::i;:::-;46489:16;46497:7;46489;:16::i;:::-;46481:71;;;;-1:-1:-1;;;46481:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46565:26;46617:12;46606:7;:23;46602:103;;-1:-1:-1;46692:1:0;46677:12;46667:22;;:26;46602:103;46737:7;46717:242;46754:18;46746:4;:26;46717:242;;46797:31;;:::i;:::-;-1:-1:-1;46831:17:0;;;;:11;:17;;;;;;;;;46797:51;;;;;;;;;-1:-1:-1;;;;;46797:51:0;;;;;-1:-1:-1;;;46797:51:0;;;-1:-1:-1;;;;;46797:51:0;;;;;;;;46867:28;46863:85;;46923:9;-1:-1:-1;46916:16:0;;-1:-1:-1;;46916:16:0;46863:85;-1:-1:-1;;;46774:6:0;46717:242;;;;46971:57;;-1:-1:-1;;;46971:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51318:104;51387:27;51397:2;51401:8;51387:27;;;;;;;;;;;;:9;:27::i;62625:441::-;62777:5;62767:6;:15;;62759:70;;;;-1:-1:-1;;;62759:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62842:26;;:::i;:::-;-1:-1:-1;62871:20:0;;;;:10;:20;;;;;;;;;62842:49;;;;;;;;;;-1:-1:-1;;;;;62842:49:0;;;;;;;;;;;;;;;;62910:31;62902:89;;;;-1:-1:-1;;;62902:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63027:31:0;;;;;;;;-1:-1:-1;;;;;63027:31:0;;;;;;;;;;;;-1:-1:-1;63004:20:0;;;:10;:20;;;;:54;;;;-1:-1:-1;;;;;;63004:54:0;;;;;;;;;;-1:-1:-1;63004:54:0;;;;62625:441::o;71116:134::-;71187:17;;71172:12;;:32;71164:53;;;;;-1:-1:-1;;;71164:53:0;;;;;;;;;;;;-1:-1:-1;;;71164:53:0;;;;;;;;;;;;;;;71228:12;:14;;;;;;71116:134::o;57141:985::-;57296:4;57317:15;:2;-1:-1:-1;;;;;57317:13:0;;:15::i;:::-;57313:806;;;57386:2;-1:-1:-1;;;;;57370:36:0;;57429:12;:10;:12::i;:::-;57464:4;57491:7;57521:5;57370:175;;;;;;;;;;;;;-1:-1:-1;;;;;57370:175:0;;;;;;-1:-1:-1;;;;;57370:175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57370:175:0;;;57349:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57732:13:0;;57728:321;;57775:109;;-1:-1:-1;;;57775:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57728:321;57999:6;57993:13;57984:6;57980:2;57976:15;57969:38;57349:715;-1:-1:-1;;;;;;57609:55:0;-1:-1:-1;;;57609:55:0;;-1:-1:-1;57602:62:0;;57313:806;-1:-1:-1;58103:4:0;57313:806;57141:985;;;;;;:::o;48457:84::-;48518:15;;;;:8;;:15;;;;;:::i;48349:100::-;48433:8;48426:15;;;;;;;;-1:-1:-1;;48426:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48400:13;;48426:15;;48433:8;;48426:15;;48433:8;48426:15;;;;;;;;;;;;;;;;;;;;;;;;40726:748;40782:13;41003:10;40999:53;;-1:-1:-1;41030:10:0;;;;;;;;;;;;-1:-1:-1;;;41030:10:0;;;;;;40999:53;41077:5;41062:12;41118:78;41125:9;;41118:78;;41151:8;;41182:2;41174:10;;;;41118:78;;;41206:19;41238:6;-1:-1:-1;;;;;41228:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41228:17:0;-1:-1:-1;41300:5:0;;-1:-1:-1;41206:39:0;-1:-1:-1;;;41272:10:0;;41316:119;41323:9;;41316:119;;41393:2;41386:4;:9;41380:2;:16;41367:31;;41349:6;41356:7;;;;;;;41349:15;;;;;;;;;;;:49;-1:-1:-1;;;;;41349:49:0;;;;;;;;-1:-1:-1;41421:2:0;41413:10;;;;41316:119;;;-1:-1:-1;41459:6:0;40726:748;-1:-1:-1;;;;40726:748:0:o;15851:200::-;-1:-1:-1;;;;;;16010:33:0;15981:4;16010:33;;;;;;;;;;;;;;15851:200::o;51785:1400::-;51931:12;;-1:-1:-1;;;;;51962:16:0;;51954:62;;;;-1:-1:-1;;;51954:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52161:21;52169:12;52161:7;:21::i;:::-;52160:22;52152:64;;;;;-1:-1:-1;;;52152:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;52247:12;52235:8;:24;;52227:71;;;;-1:-1:-1;;;52227:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52311:61;52341:1;52345:2;52349:12;52363:8;52311:21;:61::i;:::-;52385:30;;:::i;:::-;52418:12;:16;52431:2;-1:-1:-1;;;;;52418:16:0;-1:-1:-1;;;;;52418:16:0;;;;;;;;;;;;52385:49;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52385:49:0;-1:-1:-1;;;;;52385:49:0;-1:-1:-1;;;;;52385:49:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52385:49:0;-1:-1:-1;;;;;52385:49:0;-1:-1:-1;;;;;52385:49:0;;;;;;;52464:135;;;;;;;;52520:8;52490:11;:19;;;:39;-1:-1:-1;;;;;52464:135:0;;;;;52579:8;52544:11;:24;;;:44;-1:-1:-1;;;;;52464:135:0;;;;52445:12;:16;52458:2;-1:-1:-1;;;;;52445:16:0;-1:-1:-1;;;;;52445:16:0;;;;;;;;;;;;:154;;;;;;;;;;;;;-1:-1:-1;;;;;52445:154:0;;;;;-1:-1:-1;;;;;52445:154:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52445:154:0;;;;;-1:-1:-1;;;;;52445:154:0;;;;;;;;;52638:43;;;;;;;;52653:2;-1:-1:-1;;;;;52638:43:0;;;;;52664:15;-1:-1:-1;;;;;52638:43:0;;;;52610:11;:25;52622:12;52610:25;;;;;;;;;;;:71;;;;;;;;;;;;;-1:-1:-1;;;;;52610:71:0;;;;;-1:-1:-1;;;;;52610:71:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52610:71:0;;;;;-1:-1:-1;;;;;52610:71:0;;;;;;;;;52694:20;52717:12;52694:35;;52747:9;52742:325;52766:8;52762:1;:12;52742:325;;;52801:38;;52826:12;;-1:-1:-1;;;;;52801:38:0;;;52818:1;;52801:38;;52818:1;;52801:38;52880:59;52911:1;52915:2;52919:12;52933:5;52880:22;:59::i;:::-;52854:172;;;;-1:-1:-1;;;52854:172:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53041:14;;;;;52776:3;52742:325;;;-1:-1:-1;53079:12:0;:27;;;53117:60;53146:1;53150:2;53154:12;53168:8;53117:20;:60::i;17415:444::-;17795:20;17843:8;;;17415:444::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

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