ETH Price: $2,340.44 (-0.34%)

Hollywood Punks (PUNKS)
 

Overview

TokenID

2

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
HollywoodPunks

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/interfaces/IERC165.sol


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

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/interfaces/IERC2981.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev 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 salePrice - 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 `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/hollywoodpunks.sol


pragma solidity 0.8.4;





contract HollywoodPunks is ERC721Enumerable, Ownable, IERC2981 {
    using Strings for uint256;
    using SafeMath for uint256;
    
    string baseURI;
    string baseExtension = ".json";
    string public contractUri;
    string public notRevealedUri;
    
    uint256 public preSaleCost = 0.135 ether;
    uint256 public publicSaleCost = 0.2 ether;
    uint256 public maxSupply = 8877;
    uint256 public maxPreSaleMintAmount = 5;
    uint256 public maxMintAmount = 15;
    uint256 public maxPreSale = 1500;
    uint256 public preSaleStart = 1643153580;
    uint256 public publicSaleStart = 1643412780;
    bool public paused = false;
    bool public revealed = false;
    bool public onlyWhiteList = true;
    address public immutable multisig;
    mapping(address => bool) public whitelistedAddresses;

    // emit when royalties recieved
    event RoyaltiesReceived(
        address indexed _royaltyRecipient,
        address indexed _buyer,
        uint256 indexed _tokenId,
        address _tokenPaid,
        uint256 _amount,
        bytes32 _metadata
    );

    modifier onlyMultisig() {
        require(msg.sender == multisig, "Only multisig wallet can perfrom this action");
        _;
    }

    constructor(
        string memory name,
        string memory symbol,
        string memory initBaseURI, 
        string memory initNotRevealedUri,
        string memory initContractUri,
        address multisigAddr
    ) ERC721(name, symbol) {
        baseURI = initBaseURI;
        notRevealedUri = initNotRevealedUri;
        multisig = multisigAddr;
        contractUri = initContractUri;
    }

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

    function contractURI() public view returns (string memory) {
        return contractUri;
    }

    function mint(uint256 mintAmount) external payable {
        require(!paused, "Minting is paused");
        require(block.timestamp > preSaleStart, "Not started");
        require(mintAmount > 0, "Mint amount should be greater than 0");
        uint256 supply = totalSupply();
        require(supply + mintAmount <= maxSupply, "Max supply overflow");
        
        if (block.timestamp < publicSaleStart) {
            require(!onlyWhiteList || isWhitelisted(msg.sender), "Account is not whitelisted");
            require(supply + mintAmount <= maxPreSale, "Only 1500 tokens are allowed for presale");
            require(balanceOf(msg.sender) + mintAmount <= maxPreSaleMintAmount, "Limit for presale is 5 tokens per one wallet");
            require(msg.value == preSaleCost * mintAmount, "wrong ETH value");
        } else {
            require(balanceOf(msg.sender) + mintAmount <= maxMintAmount, "Limit is 15 tokens per one wallet");
            require(msg.value == publicSaleCost * mintAmount, "wrong ETH value");
        }
        for (uint256 i = 1; i <= mintAmount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function mintWithOwner(address to, uint256 mintAmount) external onlyMultisig {
        require(to != address(0), "Can not mint to zero");
        require(block.timestamp > preSaleStart, "Not allowed yet");
        uint256 supply = totalSupply();
        require(maxSupply > supply, "Max supply is reached");
        if (maxSupply - supply > mintAmount) {
            for (uint256 i = 1; i <= mintAmount; i++) {
                _mint(to, supply + i);
            }
        } else {
            for (uint256 i = 1; i <= maxSupply - supply; i++) {
                _mint(to, supply + i);
            }
        }
    }

    function setMaxPreSale(uint256 max) external onlyMultisig {
        maxPreSale = max;
    }

    function isWhitelisted(address user) public view returns (bool) {
        return whitelistedAddresses[user];
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        if (revealed == false) {
            return notRevealedUri;
        }
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : "";
    }

    function reveal() external onlyMultisig {
        revealed = true;
    }

    function setCost(uint256 _preSaleCost, uint256 _publicSaleCost) external onlyMultisig {
        preSaleCost = _preSaleCost;
        publicSaleCost = _publicSaleCost;
    }

    function setMaxSupply(uint256 newMaxSupply) external onlyMultisig {
        maxSupply = newMaxSupply;
    }

    function setMaxMintAmount(uint256 newmaxMintAmount, uint256 newmaxPresaleMintAmount) external onlyMultisig {
        maxMintAmount = newmaxMintAmount;
        maxPreSaleMintAmount = newmaxPresaleMintAmount;
    }

    function setNotRevealedURI(string memory notRevealedURI) public onlyMultisig {
        notRevealedUri = notRevealedURI;
    }

    function setBaseURI(string memory newBaseURI) public onlyMultisig {
        baseURI = newBaseURI;
    }

    function setBaseExtension(string memory newBaseExtension) external onlyMultisig {
        baseExtension = newBaseExtension;
    }

    function pause(bool state) external onlyMultisig {
        paused = state;
    }

    function setOnlyWhiteList(bool state) external onlyMultisig {
        onlyWhiteList = state;
    }

    function setDates(uint256 _preSaleStart, uint256 _publicSaleStart) external onlyMultisig {
        preSaleStart = _preSaleStart;
        publicSaleStart = _publicSaleStart;
    }

    function whitelistUsers(address[] calldata users) external onlyOwner {
        for (uint256 i; i < users.length; i++) {
            whitelistedAddresses[users[i]] = true;
        }
    }

    function deleteFromWhitelist(address user) external onlyOwner {
        whitelistedAddresses[user] = false;
    }

    function withdraw() external onlyMultisig {
        require(payable(msg.sender).send(address(this).balance));
    }

    /**
    * @notice Returns royalty reciever address and royalty amount
    * @param _tokenId Token Id
    * @param _salePrice Value to calculate royalty from
    * @return receiver Royalty reciever address
    * @return amount Royalty amount
    */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view override returns (address receiver, uint256 amount) {
        require(_tokenId > 0);
        receiver = this.owner();
        if(_salePrice <= 100) {
            amount = 0;
        } else {
            amount = _salePrice.mul(5).div(100);
        }
    }

    /**
    * @notice Calls when royalty recieved
    */
    function onRoyaltiesReceived(address _royaltyRecipient, address _buyer, uint256 _tokenId, address _tokenPaid, uint256 _amount, bytes32 _metadata) external returns (bytes4) {
        emit RoyaltiesReceived(_royaltyRecipient, _buyer, _tokenId, _tokenPaid, _amount, _metadata);
        return bytes4(keccak256("onRoyaltiesReceived(address,address,uint256,address,uint256,bytes32)"));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"string","name":"initNotRevealedUri","type":"string"},{"internalType":"string","name":"initContractUri","type":"string"},{"internalType":"address","name":"multisigAddr","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_royaltyRecipient","type":"address"},{"indexed":true,"internalType":"address","name":"_buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"_tokenPaid","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"_metadata","type":"bytes32"}],"name":"RoyaltiesReceived","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"deleteFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreSaleMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mintWithOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"multisig","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyRecipient","type":"address"},{"internalType":"address","name":"_buyer","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_tokenPaid","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32","name":"_metadata","type":"bytes32"}],"name":"onRoyaltiesReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"onlyWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleCost","type":"uint256"},{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleStart","type":"uint256"},{"internalType":"uint256","name":"_publicSaleStart","type":"uint256"}],"name":"setDates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newmaxMintAmount","type":"uint256"},{"internalType":"uint256","name":"newmaxPresaleMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setOnlyWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052600560a081905264173539b7b760d91b60c09081526200002891600c9190620001aa565b506701df9dc8e4ad8000600f9081556702c68af0bb1400006010556122ad60115560056012556013556105dc6014556361f088ac6015556361f47d2c6016556017805462ffffff1916620100001790553480156200008557600080fd5b50604051620037b5380380620037b5833981016040819052620000a89162000320565b855186908690620000c1906000906020850190620001aa565b508051620000d7906001906020840190620001aa565b505050620000f4620000ee6200015460201b60201c565b62000158565b83516200010990600b906020870190620001aa565b5082516200011f90600e906020860190620001aa565b506001600160601b0319606082901b1660805281516200014790600d906020850190620001aa565b505050505050506200045f565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001b8906200040c565b90600052602060002090601f016020900481019282620001dc576000855562000227565b82601f10620001f757805160ff191683800117855562000227565b8280016001018555821562000227579182015b82811115620002275782518255916020019190600101906200020a565b506200023592915062000239565b5090565b5b808211156200023557600081556001016200023a565b80516001600160a01b03811681146200026857600080fd5b919050565b600082601f8301126200027e578081fd5b81516001600160401b03808211156200029b576200029b62000449565b604051601f8301601f19908116603f01168101908282118183101715620002c657620002c662000449565b81604052838152602092508683858801011115620002e2578485fd5b8491505b83821015620003055785820183015181830184015290820190620002e6565b838211156200031657848385830101525b9695505050505050565b60008060008060008060c0878903121562000339578182fd5b86516001600160401b038082111562000350578384fd5b6200035e8a838b016200026d565b9750602089015191508082111562000374578384fd5b620003828a838b016200026d565b9650604089015191508082111562000398578384fd5b620003a68a838b016200026d565b95506060890151915080821115620003bc578384fd5b620003ca8a838b016200026d565b94506080890151915080821115620003e0578384fd5b50620003ef89828a016200026d565b9250506200040060a0880162000250565b90509295509295509295565b600181811c908216806200042157607f821691505b602082108114156200044357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c6132dc620004d9600039600081816105fb01528181610a9701528181610f400152818161106a01528181611140015281816112ef015281816113f70152818161144a01528181611555015281816119a5015281816119fe01528181611c2001528181611c7b0152611e5501526132dc6000f3fe6080604052600436106103505760003560e01c806370a08231116101c6578063c0e24d5e116100f7578063e8cb9d9911610095578063edec5f271161006f578063edec5f27146109eb578063f2c4ce1e14610a0b578063f2fde38b14610a2b578063fad3f8f714610a4b57600080fd5b8063e8cb9d9914610949578063e985e9c514610982578063ecfb5d17146109cb57600080fd5b8063d5abeb01116100d1578063d5abeb01146108de578063da3ef23f146108f4578063dedf141e14610914578063e8a3d4851461093457600080fd5b8063c0e24d5e14610893578063c87b56dd146108a8578063cc9ff9c6146108c857600080fd5b806395d89b4111610164578063a22cb4651161013e578063a22cb4651461081e578063a475b5dd1461083e578063b4fe0a9414610853578063b88d4fde1461087357600080fd5b806395d89b41146107d65780639f182cd1146107eb578063a0712d681461080b57600080fd5b806381221c14116101a057806381221c141461074b5780638462151c1461076b5780638da5cb5b14610798578063957dd6a3146107b657600080fd5b806370a08231146106f6578063715018a6146107165780637696e0881461072b57600080fd5b80633360caa0116102a05780634f6ccce71161023e5780635c975abb116102185780635c975abb1461067c5780636352211e146106965780636a3dcfa3146106b65780636f8b44b0146106d657600080fd5b80634f6ccce71461061d578063518302271461063d57806355f804b31461065c57600080fd5b8063410ccef11161027a578063410ccef11461059d57806342842e0e146105b3578063453afb0f146105d35780634783c35b146105e957600080fd5b80633360caa0146105395780633af32abf1461054f5780633ccfd60b1461058857600080fd5b8063095ea7b31161030d578063239c70ae116102e7578063239c70ae146104a457806323b872dd146104ba5780632a55205a146104da5780632f745c591461051957600080fd5b8063095ea7b31461044b5780630d5624b31461046b57806318160ddd1461048f57600080fd5b806301ffc9a71461035557806302329a291461038a57806306c933d8146103ac57806306fdde03146103dc578063081812fc146103fe578063081c8c4414610436575b600080fd5b34801561036157600080fd5b50610375610370366004612de4565b610a61565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b506103aa6103a5366004612dca565b610a8c565b005b3480156103b857600080fd5b506103756103c7366004612b73565b60186020526000908152604090205460ff1681565b3480156103e857600080fd5b506103f1610af0565b604051610381919061300a565b34801561040a57600080fd5b5061041e610419366004612e62565b610b82565b6040516001600160a01b039091168152602001610381565b34801561044257600080fd5b506103f1610c17565b34801561045757600080fd5b506103aa610466366004612d2f565b610ca5565b34801561047757600080fd5b5061048160155481565b604051908152602001610381565b34801561049b57600080fd5b50600854610481565b3480156104b057600080fd5b5061048160135481565b3480156104c657600080fd5b506103aa6104d5366004612be3565b610dbb565b3480156104e657600080fd5b506104fa6104f5366004612e7a565b610dec565b604080516001600160a01b039093168352602083019190915201610381565b34801561052557600080fd5b50610481610534366004612d2f565b610e9f565b34801561054557600080fd5b5061048160165481565b34801561055b57600080fd5b5061037561056a366004612b73565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561059457600080fd5b506103aa610f35565b3480156105a957600080fd5b5061048160125481565b3480156105bf57600080fd5b506103aa6105ce366004612be3565b610fa3565b3480156105df57600080fd5b5061048160105481565b3480156105f557600080fd5b5061041e7f000000000000000000000000000000000000000000000000000000000000000081565b34801561062957600080fd5b50610481610638366004612e62565b610fbe565b34801561064957600080fd5b5060175461037590610100900460ff1681565b34801561066857600080fd5b506103aa610677366004612e1c565b61105f565b34801561068857600080fd5b506017546103759060ff1681565b3480156106a257600080fd5b5061041e6106b1366004612e62565b6110be565b3480156106c257600080fd5b506103aa6106d1366004612d2f565b611135565b3480156106e257600080fd5b506103aa6106f1366004612e62565b6112e4565b34801561070257600080fd5b50610481610711366004612b73565b611331565b34801561072257600080fd5b506103aa6113b8565b34801561073757600080fd5b506103aa610746366004612e7a565b6113ec565b34801561075757600080fd5b506103aa610766366004612e62565b61143f565b34801561077757600080fd5b5061078b610786366004612b73565b61148c565b6040516103819190612fc6565b3480156107a457600080fd5b50600a546001600160a01b031661041e565b3480156107c257600080fd5b506103aa6107d1366004612e7a565b61154a565b3480156107e257600080fd5b506103f161159d565b3480156107f757600080fd5b506017546103759062010000900460ff1681565b6103aa610819366004612e62565b6115ac565b34801561082a57600080fd5b506103aa610839366004612d04565b61198f565b34801561084a57600080fd5b506103aa61199a565b34801561085f57600080fd5b506103aa61086e366004612dca565b6119f3565b34801561087f57600080fd5b506103aa61088e366004612c87565b611a57565b34801561089f57600080fd5b506103f1611a89565b3480156108b457600080fd5b506103f16108c3366004612e62565b611a96565b3480156108d457600080fd5b50610481600f5481565b3480156108ea57600080fd5b5061048160115481565b34801561090057600080fd5b506103aa61090f366004612e1c565b611c15565b34801561092057600080fd5b506103aa61092f366004612e7a565b611c70565b34801561094057600080fd5b506103f1611cc3565b34801561095557600080fd5b50610969610964366004612c23565b611cd2565b6040516001600160e01b03199091168152602001610381565b34801561098e57600080fd5b5061037561099d366004612bab565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109d757600080fd5b506103aa6109e6366004612b73565b611d55565b3480156109f757600080fd5b506103aa610a06366004612d5a565b611da0565b348015610a1757600080fd5b506103aa610a26366004612e1c565b611e4a565b348015610a3757600080fd5b506103aa610a46366004612b73565b611ea5565b348015610a5757600080fd5b5061048160145481565b60006001600160e01b0319821663780e9d6360e01b1480610a865750610a8682611f40565b92915050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610add5760405162461bcd60e51b8152600401610ad49061306f565b60405180910390fd5b6017805460ff1916911515919091179055565b606060008054610aff906131cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2b906131cf565b8015610b785780601f10610b4d57610100808354040283529160200191610b78565b820191906000526020600020905b815481529060010190602001808311610b5b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bfb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ad4565b506000908152600460205260409020546001600160a01b031690565b600e8054610c24906131cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610c50906131cf565b8015610c9d5780601f10610c7257610100808354040283529160200191610c9d565b820191906000526020600020905b815481529060010190602001808311610c8057829003601f168201915b505050505081565b6000610cb0826110be565b9050806001600160a01b0316836001600160a01b03161415610d1e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610ad4565b336001600160a01b0382161480610d3a5750610d3a813361099d565b610dac5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ad4565b610db68383611f90565b505050565b610dc53382611ffe565b610de15760405162461bcd60e51b8152600401610ad4906130f0565b610db68383836120f5565b60008060008411610dfc57600080fd5b306001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610e3557600080fd5b505afa158015610e49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6d9190612b8f565b915060648311610e7f57506000610e98565b610e956064610e8f8560056122a0565b906122ac565b90505b9250929050565b6000610eaa83611331565b8210610f0c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ad4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f7d5760405162461bcd60e51b8152600401610ad49061306f565b60405133904780156108fc02916000818181858888f19350505050610fa157600080fd5b565b610db683838360405180602001604052806000815250611a57565b6000610fc960085490565b821061102c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ad4565b6008828154811061104d57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146110a75760405162461bcd60e51b8152600401610ad49061306f565b80516110ba90600b906020840190612a4f565b5050565b6000818152600260205260408120546001600160a01b031680610a865760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610ad4565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461117d5760405162461bcd60e51b8152600401610ad49061306f565b6001600160a01b0382166111ca5760405162461bcd60e51b815260206004820152601460248201527343616e206e6f74206d696e7420746f207a65726f60601b6044820152606401610ad4565b601554421161120d5760405162461bcd60e51b815260206004820152600f60248201526e139bdd08185b1b1bddd959081e595d608a1b6044820152606401610ad4565b600061121860085490565b905080601154116112635760405162461bcd60e51b815260206004820152601560248201527413585e081cdd5c1c1b1e481a5cc81c995858da1959605a1b6044820152606401610ad4565b8181601154611272919061318c565b11156112ad5760015b8281116112a757611295846112908385613141565b6122b8565b8061129f8161320a565b91505061127b565b50505050565b60015b816011546112be919061318c565b81116112a7576112d2846112908385613141565b806112dc8161320a565b9150506112b0565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461132c5760405162461bcd60e51b8152600401610ad49061306f565b601155565b60006001600160a01b03821661139c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610ad4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113e25760405162461bcd60e51b8152600401610ad4906130bb565b610fa16000612406565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146114345760405162461bcd60e51b8152600401610ad49061306f565b600f91909155601055565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146114875760405162461bcd60e51b8152600401610ad49061306f565b601455565b6060600061149983611331565b905060008167ffffffffffffffff8111156114c457634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156114ed578160200160208202803683370190505b50905060005b82811015611542576115058582610e9f565b82828151811061152557634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061153a8161320a565b9150506114f3565b509392505050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146115925760405162461bcd60e51b8152600401610ad49061306f565b601391909155601255565b606060018054610aff906131cf565b60175460ff16156115f35760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b6044820152606401610ad4565b60155442116116325760405162461bcd60e51b815260206004820152600b60248201526a139bdd081cdd185c9d195960aa1b6044820152606401610ad4565b6000811161168e5760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b6064820152608401610ad4565b600061169960085490565b6011549091506116a98383613141565b11156116ed5760405162461bcd60e51b81526020600482015260136024820152724d617820737570706c79206f766572666c6f7760681b6044820152606401610ad4565b6016544210156118a35760175462010000900460ff16158061171e57503360009081526018602052604090205460ff165b61176a5760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f742077686974656c69737465640000000000006044820152606401610ad4565b6014546117778383613141565b11156117d65760405162461bcd60e51b815260206004820152602860248201527f4f6e6c79203135303020746f6b656e732061726520616c6c6f77656420666f726044820152672070726573616c6560c01b6064820152608401610ad4565b601254826117e333611331565b6117ed9190613141565b11156118505760405162461bcd60e51b815260206004820152602c60248201527f4c696d697420666f722070726573616c65206973203520746f6b656e7320706560448201526b1c881bdb99481dd85b1b195d60a21b6064820152608401610ad4565b81600f5461185e919061316d565b341461189e5760405162461bcd60e51b815260206004820152600f60248201526e77726f6e67204554482076616c756560881b6044820152606401610ad4565b611960565b601354826118b033611331565b6118ba9190613141565b11156119125760405162461bcd60e51b815260206004820152602160248201527f4c696d697420697320313520746f6b656e7320706572206f6e652077616c6c656044820152601d60fa1b6064820152608401610ad4565b81601054611920919061316d565b34146119605760405162461bcd60e51b815260206004820152600f60248201526e77726f6e67204554482076616c756560881b6044820152606401610ad4565b60015b828111610db65761197d336119788385613141565b612458565b806119878161320a565b915050611963565b6110ba338383612472565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146119e25760405162461bcd60e51b8152600401610ad49061306f565b6017805461ff001916610100179055565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611a3b5760405162461bcd60e51b8152600401610ad49061306f565b60178054911515620100000262ff000019909216919091179055565b611a613383611ffe565b611a7d5760405162461bcd60e51b8152600401610ad4906130f0565b6112a784848484612541565b600d8054610c24906131cf565b6000818152600260205260409020546060906001600160a01b0316611b155760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ad4565b601754610100900460ff16611bb657600e8054611b31906131cf565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5d906131cf565b8015611baa5780601f10611b7f57610100808354040283529160200191611baa565b820191906000526020600020905b815481529060010190602001808311611b8d57829003601f168201915b50505050509050919050565b6000611bc0612574565b90506000815111611be05760405180602001604052806000815250611c0e565b80611bea84612583565b600c604051602001611bfe93929190612ec7565b6040516020818303038152906040525b9392505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611c5d5760405162461bcd60e51b8152600401610ad49061306f565b80516110ba90600c906020840190612a4f565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611cb85760405162461bcd60e51b8152600401610ad49061306f565b601591909155601655565b6060600d8054610aff906131cf565b604080516001600160a01b038581168252602082018590529181018390526000918691818916918a16907f0fb6148a1327df610b19fe6e8b3721091048fabcee4e029d0fc14af6ac6b98469060600160405180910390a4507fe8cb9d992e917b09efbea9011da19409f5d85d7ec2a0d2b9861b32ef44c757c89695505050505050565b600a546001600160a01b03163314611d7f5760405162461bcd60e51b8152600401610ad4906130bb565b6001600160a01b03166000908152601860205260409020805460ff19169055565b600a546001600160a01b03163314611dca5760405162461bcd60e51b8152600401610ad4906130bb565b60005b81811015610db657600160186000858585818110611dfb57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611e109190612b73565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611e428161320a565b915050611dcd565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611e925760405162461bcd60e51b8152600401610ad49061306f565b80516110ba90600e906020840190612a4f565b600a546001600160a01b03163314611ecf5760405162461bcd60e51b8152600401610ad4906130bb565b6001600160a01b038116611f345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ad4565b611f3d81612406565b50565b60006001600160e01b031982166380ac58cd60e01b1480611f7157506001600160e01b03198216635b5e139f60e01b145b80610a8657506301ffc9a760e01b6001600160e01b0319831614610a86565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fc5826110be565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166120775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ad4565b6000612082836110be565b9050806001600160a01b0316846001600160a01b031614806120bd5750836001600160a01b03166120b284610b82565b6001600160a01b0316145b806120ed57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612108826110be565b6001600160a01b0316146121705760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610ad4565b6001600160a01b0382166121d25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ad4565b6121dd83838361269d565b6121e8600082611f90565b6001600160a01b038316600090815260036020526040812080546001929061221190849061318c565b90915550506001600160a01b038216600090815260036020526040812080546001929061223f908490613141565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611c0e828461316d565b6000611c0e8284613159565b6001600160a01b03821661230e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ad4565b6000818152600260205260409020546001600160a01b0316156123735760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ad4565b61237f6000838361269d565b6001600160a01b03821660009081526003602052604081208054600192906123a8908490613141565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6110ba828260405180602001604052806000815250612755565b816001600160a01b0316836001600160a01b031614156124d45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ad4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61254c8484846120f5565b61255884848484612788565b6112a75760405162461bcd60e51b8152600401610ad49061301d565b6060600b8054610aff906131cf565b6060816125a75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125d157806125bb8161320a565b91506125ca9050600a83613159565b91506125ab565b60008167ffffffffffffffff8111156125fa57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612624576020820181803683370190505b5090505b84156120ed5761263960018361318c565b9150612646600a86613225565b612651906030613141565b60f81b81838151811061267457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612696600a86613159565b9450612628565b6001600160a01b0383166126f8576126f381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61271b565b816001600160a01b0316836001600160a01b03161461271b5761271b8382612895565b6001600160a01b03821661273257610db681612932565b826001600160a01b0316826001600160a01b031614610db657610db68282612a0b565b61275f83836122b8565b61276c6000848484612788565b610db65760405162461bcd60e51b8152600401610ad49061301d565b60006001600160a01b0384163b1561288a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906127cc903390899088908890600401612f89565b602060405180830381600087803b1580156127e657600080fd5b505af1925050508015612816575060408051601f3d908101601f1916820190925261281391810190612e00565b60015b612870573d808015612844576040519150601f19603f3d011682016040523d82523d6000602084013e612849565b606091505b5080516128685760405162461bcd60e51b8152600401610ad49061301d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120ed565b506001949350505050565b600060016128a284611331565b6128ac919061318c565b6000838152600760205260409020549091508082146128ff576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906129449060019061318c565b6000838152600960205260408120546008805493945090928490811061297a57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106129a957634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806129ef57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612a1683611331565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612a5b906131cf565b90600052602060002090601f016020900481019282612a7d5760008555612ac3565b82601f10612a9657805160ff1916838001178555612ac3565b82800160010185558215612ac3579182015b82811115612ac3578251825591602001919060010190612aa8565b50612acf929150612ad3565b5090565b5b80821115612acf5760008155600101612ad4565b600067ffffffffffffffff80841115612b0357612b03613265565b604051601f8501601f19908116603f01168101908282118183101715612b2b57612b2b613265565b81604052809350858152868686011115612b4457600080fd5b858560208301376000602087830101525050509392505050565b80358015158114612b6e57600080fd5b919050565b600060208284031215612b84578081fd5b8135611c0e8161327b565b600060208284031215612ba0578081fd5b8151611c0e8161327b565b60008060408385031215612bbd578081fd5b8235612bc88161327b565b91506020830135612bd88161327b565b809150509250929050565b600080600060608486031215612bf7578081fd5b8335612c028161327b565b92506020840135612c128161327b565b929592945050506040919091013590565b60008060008060008060c08789031215612c3b578182fd5b8635612c468161327b565b95506020870135612c568161327b565b9450604087013593506060870135612c6d8161327b565b9598949750929560808101359460a0909101359350915050565b60008060008060808587031215612c9c578384fd5b8435612ca78161327b565b93506020850135612cb78161327b565b925060408501359150606085013567ffffffffffffffff811115612cd9578182fd5b8501601f81018713612ce9578182fd5b612cf887823560208401612ae8565b91505092959194509250565b60008060408385031215612d16578182fd5b8235612d218161327b565b9150610e9560208401612b5e565b60008060408385031215612d41578182fd5b8235612d4c8161327b565b946020939093013593505050565b60008060208385031215612d6c578182fd5b823567ffffffffffffffff80821115612d83578384fd5b818501915085601f830112612d96578384fd5b813581811115612da4578485fd5b8660208260051b8501011115612db8578485fd5b60209290920196919550909350505050565b600060208284031215612ddb578081fd5b611c0e82612b5e565b600060208284031215612df5578081fd5b8135611c0e81613290565b600060208284031215612e11578081fd5b8151611c0e81613290565b600060208284031215612e2d578081fd5b813567ffffffffffffffff811115612e43578182fd5b8201601f81018413612e53578182fd5b6120ed84823560208401612ae8565b600060208284031215612e73578081fd5b5035919050565b60008060408385031215612e8c578182fd5b50508035926020909101359150565b60008151808452612eb38160208601602086016131a3565b601f01601f19169290920160200192915050565b600084516020612eda8285838a016131a3565b855191840191612eed8184848a016131a3565b85549201918390600181811c9080831680612f0957607f831692505b858310811415612f2757634e487b7160e01b88526022600452602488fd5b808015612f3b5760018114612f4c57612f78565b60ff19851688528388019550612f78565b60008b815260209020895b85811015612f705781548a820152908401908801612f57565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612fbc90830184612e9b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ffe57835183529284019291840191600101612fe2565b50909695505050505050565b602081526000611c0e6020830184612e9b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602c908201527f4f6e6c79206d756c74697369672077616c6c65742063616e2070657266726f6d60408201526b103a3434b99030b1ba34b7b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561315457613154613239565b500190565b6000826131685761316861324f565b500490565b600081600019048311821515161561318757613187613239565b500290565b60008282101561319e5761319e613239565b500390565b60005b838110156131be5781810151838201526020016131a6565b838111156112a75750506000910152565b600181811c908216806131e357607f821691505b6020821081141561320457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561321e5761321e613239565b5060010190565b6000826132345761323461324f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611f3d57600080fd5b6001600160e01b031981168114611f3d57600080fdfea264697066735822122053d7cc8832122aa5a40f968349b724934ab9518f834386dce2e3493b455a575864736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000200000000000000000000000000d6a4521461c1c1b1e298a0a963550139e4e6eeb4000000000000000000000000000000000000000000000000000000000000000f486f6c6c79776f6f642050756e6b730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000550554e4b5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000076261736575726900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f686f6c6c79776f6f6470756e6b732e6d7970696e6174612e636c6f75642f697066732f516d56326e4e6634705237393162504a6b796d466b4b434378756746674a584439327271655153726e4d6e6f505600000000000000000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f686f6c6c79776f6f6470756e6b732e6d7970696e6174612e636c6f75642f697066732f516d58467466584866654874676a555a35714c70783831536655613261483633596d39336d6f5146765834436a3700000000000000

Deployed Bytecode

0x6080604052600436106103505760003560e01c806370a08231116101c6578063c0e24d5e116100f7578063e8cb9d9911610095578063edec5f271161006f578063edec5f27146109eb578063f2c4ce1e14610a0b578063f2fde38b14610a2b578063fad3f8f714610a4b57600080fd5b8063e8cb9d9914610949578063e985e9c514610982578063ecfb5d17146109cb57600080fd5b8063d5abeb01116100d1578063d5abeb01146108de578063da3ef23f146108f4578063dedf141e14610914578063e8a3d4851461093457600080fd5b8063c0e24d5e14610893578063c87b56dd146108a8578063cc9ff9c6146108c857600080fd5b806395d89b4111610164578063a22cb4651161013e578063a22cb4651461081e578063a475b5dd1461083e578063b4fe0a9414610853578063b88d4fde1461087357600080fd5b806395d89b41146107d65780639f182cd1146107eb578063a0712d681461080b57600080fd5b806381221c14116101a057806381221c141461074b5780638462151c1461076b5780638da5cb5b14610798578063957dd6a3146107b657600080fd5b806370a08231146106f6578063715018a6146107165780637696e0881461072b57600080fd5b80633360caa0116102a05780634f6ccce71161023e5780635c975abb116102185780635c975abb1461067c5780636352211e146106965780636a3dcfa3146106b65780636f8b44b0146106d657600080fd5b80634f6ccce71461061d578063518302271461063d57806355f804b31461065c57600080fd5b8063410ccef11161027a578063410ccef11461059d57806342842e0e146105b3578063453afb0f146105d35780634783c35b146105e957600080fd5b80633360caa0146105395780633af32abf1461054f5780633ccfd60b1461058857600080fd5b8063095ea7b31161030d578063239c70ae116102e7578063239c70ae146104a457806323b872dd146104ba5780632a55205a146104da5780632f745c591461051957600080fd5b8063095ea7b31461044b5780630d5624b31461046b57806318160ddd1461048f57600080fd5b806301ffc9a71461035557806302329a291461038a57806306c933d8146103ac57806306fdde03146103dc578063081812fc146103fe578063081c8c4414610436575b600080fd5b34801561036157600080fd5b50610375610370366004612de4565b610a61565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b506103aa6103a5366004612dca565b610a8c565b005b3480156103b857600080fd5b506103756103c7366004612b73565b60186020526000908152604090205460ff1681565b3480156103e857600080fd5b506103f1610af0565b604051610381919061300a565b34801561040a57600080fd5b5061041e610419366004612e62565b610b82565b6040516001600160a01b039091168152602001610381565b34801561044257600080fd5b506103f1610c17565b34801561045757600080fd5b506103aa610466366004612d2f565b610ca5565b34801561047757600080fd5b5061048160155481565b604051908152602001610381565b34801561049b57600080fd5b50600854610481565b3480156104b057600080fd5b5061048160135481565b3480156104c657600080fd5b506103aa6104d5366004612be3565b610dbb565b3480156104e657600080fd5b506104fa6104f5366004612e7a565b610dec565b604080516001600160a01b039093168352602083019190915201610381565b34801561052557600080fd5b50610481610534366004612d2f565b610e9f565b34801561054557600080fd5b5061048160165481565b34801561055b57600080fd5b5061037561056a366004612b73565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561059457600080fd5b506103aa610f35565b3480156105a957600080fd5b5061048160125481565b3480156105bf57600080fd5b506103aa6105ce366004612be3565b610fa3565b3480156105df57600080fd5b5061048160105481565b3480156105f557600080fd5b5061041e7f000000000000000000000000d6a4521461c1c1b1e298a0a963550139e4e6eeb481565b34801561062957600080fd5b50610481610638366004612e62565b610fbe565b34801561064957600080fd5b5060175461037590610100900460ff1681565b34801561066857600080fd5b506103aa610677366004612e1c565b61105f565b34801561068857600080fd5b506017546103759060ff1681565b3480156106a257600080fd5b5061041e6106b1366004612e62565b6110be565b3480156106c257600080fd5b506103aa6106d1366004612d2f565b611135565b3480156106e257600080fd5b506103aa6106f1366004612e62565b6112e4565b34801561070257600080fd5b50610481610711366004612b73565b611331565b34801561072257600080fd5b506103aa6113b8565b34801561073757600080fd5b506103aa610746366004612e7a565b6113ec565b34801561075757600080fd5b506103aa610766366004612e62565b61143f565b34801561077757600080fd5b5061078b610786366004612b73565b61148c565b6040516103819190612fc6565b3480156107a457600080fd5b50600a546001600160a01b031661041e565b3480156107c257600080fd5b506103aa6107d1366004612e7a565b61154a565b3480156107e257600080fd5b506103f161159d565b3480156107f757600080fd5b506017546103759062010000900460ff1681565b6103aa610819366004612e62565b6115ac565b34801561082a57600080fd5b506103aa610839366004612d04565b61198f565b34801561084a57600080fd5b506103aa61199a565b34801561085f57600080fd5b506103aa61086e366004612dca565b6119f3565b34801561087f57600080fd5b506103aa61088e366004612c87565b611a57565b34801561089f57600080fd5b506103f1611a89565b3480156108b457600080fd5b506103f16108c3366004612e62565b611a96565b3480156108d457600080fd5b50610481600f5481565b3480156108ea57600080fd5b5061048160115481565b34801561090057600080fd5b506103aa61090f366004612e1c565b611c15565b34801561092057600080fd5b506103aa61092f366004612e7a565b611c70565b34801561094057600080fd5b506103f1611cc3565b34801561095557600080fd5b50610969610964366004612c23565b611cd2565b6040516001600160e01b03199091168152602001610381565b34801561098e57600080fd5b5061037561099d366004612bab565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109d757600080fd5b506103aa6109e6366004612b73565b611d55565b3480156109f757600080fd5b506103aa610a06366004612d5a565b611da0565b348015610a1757600080fd5b506103aa610a26366004612e1c565b611e4a565b348015610a3757600080fd5b506103aa610a46366004612b73565b611ea5565b348015610a5757600080fd5b5061048160145481565b60006001600160e01b0319821663780e9d6360e01b1480610a865750610a8682611f40565b92915050565b336001600160a01b037f000000000000000000000000d6a4521461c1c1b1e298a0a963550139e4e6eeb41614610add5760405162461bcd60e51b8152600401610ad49061306f565b60405180910390fd5b6017805460ff1916911515919091179055565b606060008054610aff906131cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2b906131cf565b8015610b785780601f10610b4d57610100808354040283529160200191610b78565b820191906000526020600020905b815481529060010190602001808311610b5b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bfb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ad4565b506000908152600460205260409020546001600160a01b031690565b600e8054610c24906131cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610c50906131cf565b8015610c9d5780601f10610c7257610100808354040283529160200191610c9d565b820191906000526020600020905b815481529060010190602001808311610c8057829003601f168201915b505050505081565b6000610cb0826110be565b9050806001600160a01b0316836001600160a01b03161415610d1e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610ad4565b336001600160a01b0382161480610d3a5750610d3a813361099d565b610dac5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ad4565b610db68383611f90565b505050565b610dc53382611ffe565b610de15760405162461bcd60e51b8152600401610ad4906130f0565b610db68383836120f5565b60008060008411610dfc57600080fd5b306001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610e3557600080fd5b505afa158015610e49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6d9190612b8f565b915060648311610e7f57506000610e98565b610e956064610e8f8560056122a0565b906122ac565b90505b9250929050565b6000610eaa83611331565b8210610f0c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ad4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b336001600160a01b037f000000000000000000000000d6a4521461c1c1b1e298a0a963550139e4e6eeb41614610f7d5760405162461bcd60e51b8152600401610ad49061306f565b60405133904780156108fc02916000818181858888f19350505050610fa157600080fd5b565b610db683838360405180602001604052806000815250611a57565b6000610fc960085490565b821061102c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ad4565b6008828154811061104d57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b336001600160a01b037f000000000000000000000000d6a4521461c1c1b1e298a0a963550139e4e6eeb416146110a75760405162461bcd60e51b8152600401610ad49061306f565b80516110ba90600b906020840190612a4f565b5050565b6000818152600260205260408120546001600160a01b031680610a865760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610ad4565b336001600160a01b037f000000000000000000000000d6a4521461c1c1b1e298a0a963550139e4e6eeb4161461117d5760405162461bcd60e51b8152600401610ad49061306f565b6001600160a01b0382166111ca5760405162461bcd60e51b815260206004820152601460248201527343616e206e6f74206d696e7420746f207a65726f60601b6044820152606401610ad4565b601554421161120d5760405162461bcd60e51b815260206004820152600f60248201526e139bdd08185b1b1bddd959081e595d608a1b6044820152606401610ad4565b600061121860085490565b905080601154116112635760405162461bcd60e51b815260206004820152601560248201527413585e081cdd5c1c1b1e481a5cc81c995858da1959605a1b6044820152606401610ad4565b8181601154611272919061318c565b11156112ad5760015b8281116112a757611295846112908385613141565b6122b8565b8061129f8161320a565b91505061127b565b50505050565b60015b816011546112be919061318c565b81116112a7576112d2846112908385613141565b806112dc8161320a565b9150506112b0565b336001600160a01b037f000000000000000000000000d6a4521461c1c1b1e298a0a963550139e4e6eeb4161461132c5760405162461bcd60e51b8152600401610ad49061306f565b601155565b60006001600160a01b03821661139c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610ad4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113e25760405162461bcd60e51b8152600401610ad4906130bb565b610fa16000612406565b336001600160a01b037f000000000000000000000000d6a4521461c1c1b1e298a0a963550139e4e6eeb416146114345760405162461bcd60e51b8152600401610ad49061306f565b600f91909155601055565b336001600160a01b037f000000000000000000000000d6a4521461c1c1b1e298a0a963550139e4e6eeb416146114875760405162461bcd60e51b8152600401610ad49061306f565b601455565b6060600061149983611331565b905060008167ffffffffffffffff8111156114c457634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156114ed578160200160208202803683370190505b50905060005b82811015611542576115058582610e9f565b82828151811061152557634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061153a8161320a565b9150506114f3565b509392505050565b336001600160a01b037f000000000000000000000000d6a4521461c1c1b1e298a0a963550139e4e6eeb416146115925760405162461bcd60e51b8152600401610ad49061306f565b601391909155601255565b606060018054610aff906131cf565b60175460ff16156115f35760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b6044820152606401610ad4565b60155442116116325760405162461bcd60e51b815260206004820152600b60248201526a139bdd081cdd185c9d195960aa1b6044820152606401610ad4565b6000811161168e5760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b6064820152608401610ad4565b600061169960085490565b6011549091506116a98383613141565b11156116ed5760405162461bcd60e51b81526020600482015260136024820152724d617820737570706c79206f766572666c6f7760681b6044820152606401610ad4565b6016544210156118a35760175462010000900460ff16158061171e57503360009081526018602052604090205460ff165b61176a5760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f742077686974656c69737465640000000000006044820152606401610ad4565b6014546117778383613141565b11156117d65760405162461bcd60e51b815260206004820152602860248201527f4f6e6c79203135303020746f6b656e732061726520616c6c6f77656420666f726044820152672070726573616c6560c01b6064820152608401610ad4565b601254826117e333611331565b6117ed9190613141565b11156118505760405162461bcd60e51b815260206004820152602c60248201527f4c696d697420666f722070726573616c65206973203520746f6b656e7320706560448201526b1c881bdb99481dd85b1b195d60a21b6064820152608401610ad4565b81600f5461185e919061316d565b341461189e5760405162461bcd60e51b815260206004820152600f60248201526e77726f6e67204554482076616c756560881b6044820152606401610ad4565b611960565b601354826118b033611331565b6118ba9190613141565b11156119125760405162461bcd60e51b815260206004820152602160248201527f4c696d697420697320313520746f6b656e7320706572206f6e652077616c6c656044820152601d60fa1b6064820152608401610ad4565b81601054611920919061316d565b34146119605760405162461bcd60e51b815260206004820152600f60248201526e77726f6e67204554482076616c756560881b6044820152606401610ad4565b60015b828111610db65761197d336119788385613141565b612458565b806119878161320a565b915050611963565b6110ba338383612472565b336001600160a01b037f000000000000000000000000d6a4521461c1c1b1e298a0a963550139e4e6eeb416146119e25760405162461bcd60e51b8152600401610ad49061306f565b6017805461ff001916610100179055565b336001600160a01b037f000000000000000000000000d6a4521461c1c1b1e298a0a963550139e4e6eeb41614611a3b5760405162461bcd60e51b8152600401610ad49061306f565b60178054911515620100000262ff000019909216919091179055565b611a613383611ffe565b611a7d5760405162461bcd60e51b8152600401610ad4906130f0565b6112a784848484612541565b600d8054610c24906131cf565b6000818152600260205260409020546060906001600160a01b0316611b155760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ad4565b601754610100900460ff16611bb657600e8054611b31906131cf565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5d906131cf565b8015611baa5780601f10611b7f57610100808354040283529160200191611baa565b820191906000526020600020905b815481529060010190602001808311611b8d57829003601f168201915b50505050509050919050565b6000611bc0612574565b90506000815111611be05760405180602001604052806000815250611c0e565b80611bea84612583565b600c604051602001611bfe93929190612ec7565b6040516020818303038152906040525b9392505050565b336001600160a01b037f000000000000000000000000d6a4521461c1c1b1e298a0a963550139e4e6eeb41614611c5d5760405162461bcd60e51b8152600401610ad49061306f565b80516110ba90600c906020840190612a4f565b336001600160a01b037f000000000000000000000000d6a4521461c1c1b1e298a0a963550139e4e6eeb41614611cb85760405162461bcd60e51b8152600401610ad49061306f565b601591909155601655565b6060600d8054610aff906131cf565b604080516001600160a01b038581168252602082018590529181018390526000918691818916918a16907f0fb6148a1327df610b19fe6e8b3721091048fabcee4e029d0fc14af6ac6b98469060600160405180910390a4507fe8cb9d992e917b09efbea9011da19409f5d85d7ec2a0d2b9861b32ef44c757c89695505050505050565b600a546001600160a01b03163314611d7f5760405162461bcd60e51b8152600401610ad4906130bb565b6001600160a01b03166000908152601860205260409020805460ff19169055565b600a546001600160a01b03163314611dca5760405162461bcd60e51b8152600401610ad4906130bb565b60005b81811015610db657600160186000858585818110611dfb57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611e109190612b73565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611e428161320a565b915050611dcd565b336001600160a01b037f000000000000000000000000d6a4521461c1c1b1e298a0a963550139e4e6eeb41614611e925760405162461bcd60e51b8152600401610ad49061306f565b80516110ba90600e906020840190612a4f565b600a546001600160a01b03163314611ecf5760405162461bcd60e51b8152600401610ad4906130bb565b6001600160a01b038116611f345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ad4565b611f3d81612406565b50565b60006001600160e01b031982166380ac58cd60e01b1480611f7157506001600160e01b03198216635b5e139f60e01b145b80610a8657506301ffc9a760e01b6001600160e01b0319831614610a86565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fc5826110be565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166120775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ad4565b6000612082836110be565b9050806001600160a01b0316846001600160a01b031614806120bd5750836001600160a01b03166120b284610b82565b6001600160a01b0316145b806120ed57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612108826110be565b6001600160a01b0316146121705760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610ad4565b6001600160a01b0382166121d25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ad4565b6121dd83838361269d565b6121e8600082611f90565b6001600160a01b038316600090815260036020526040812080546001929061221190849061318c565b90915550506001600160a01b038216600090815260036020526040812080546001929061223f908490613141565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611c0e828461316d565b6000611c0e8284613159565b6001600160a01b03821661230e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ad4565b6000818152600260205260409020546001600160a01b0316156123735760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ad4565b61237f6000838361269d565b6001600160a01b03821660009081526003602052604081208054600192906123a8908490613141565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6110ba828260405180602001604052806000815250612755565b816001600160a01b0316836001600160a01b031614156124d45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ad4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61254c8484846120f5565b61255884848484612788565b6112a75760405162461bcd60e51b8152600401610ad49061301d565b6060600b8054610aff906131cf565b6060816125a75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125d157806125bb8161320a565b91506125ca9050600a83613159565b91506125ab565b60008167ffffffffffffffff8111156125fa57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612624576020820181803683370190505b5090505b84156120ed5761263960018361318c565b9150612646600a86613225565b612651906030613141565b60f81b81838151811061267457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612696600a86613159565b9450612628565b6001600160a01b0383166126f8576126f381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61271b565b816001600160a01b0316836001600160a01b03161461271b5761271b8382612895565b6001600160a01b03821661273257610db681612932565b826001600160a01b0316826001600160a01b031614610db657610db68282612a0b565b61275f83836122b8565b61276c6000848484612788565b610db65760405162461bcd60e51b8152600401610ad49061301d565b60006001600160a01b0384163b1561288a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906127cc903390899088908890600401612f89565b602060405180830381600087803b1580156127e657600080fd5b505af1925050508015612816575060408051601f3d908101601f1916820190925261281391810190612e00565b60015b612870573d808015612844576040519150601f19603f3d011682016040523d82523d6000602084013e612849565b606091505b5080516128685760405162461bcd60e51b8152600401610ad49061301d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120ed565b506001949350505050565b600060016128a284611331565b6128ac919061318c565b6000838152600760205260409020549091508082146128ff576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906129449060019061318c565b6000838152600960205260408120546008805493945090928490811061297a57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106129a957634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806129ef57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612a1683611331565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612a5b906131cf565b90600052602060002090601f016020900481019282612a7d5760008555612ac3565b82601f10612a9657805160ff1916838001178555612ac3565b82800160010185558215612ac3579182015b82811115612ac3578251825591602001919060010190612aa8565b50612acf929150612ad3565b5090565b5b80821115612acf5760008155600101612ad4565b600067ffffffffffffffff80841115612b0357612b03613265565b604051601f8501601f19908116603f01168101908282118183101715612b2b57612b2b613265565b81604052809350858152868686011115612b4457600080fd5b858560208301376000602087830101525050509392505050565b80358015158114612b6e57600080fd5b919050565b600060208284031215612b84578081fd5b8135611c0e8161327b565b600060208284031215612ba0578081fd5b8151611c0e8161327b565b60008060408385031215612bbd578081fd5b8235612bc88161327b565b91506020830135612bd88161327b565b809150509250929050565b600080600060608486031215612bf7578081fd5b8335612c028161327b565b92506020840135612c128161327b565b929592945050506040919091013590565b60008060008060008060c08789031215612c3b578182fd5b8635612c468161327b565b95506020870135612c568161327b565b9450604087013593506060870135612c6d8161327b565b9598949750929560808101359460a0909101359350915050565b60008060008060808587031215612c9c578384fd5b8435612ca78161327b565b93506020850135612cb78161327b565b925060408501359150606085013567ffffffffffffffff811115612cd9578182fd5b8501601f81018713612ce9578182fd5b612cf887823560208401612ae8565b91505092959194509250565b60008060408385031215612d16578182fd5b8235612d218161327b565b9150610e9560208401612b5e565b60008060408385031215612d41578182fd5b8235612d4c8161327b565b946020939093013593505050565b60008060208385031215612d6c578182fd5b823567ffffffffffffffff80821115612d83578384fd5b818501915085601f830112612d96578384fd5b813581811115612da4578485fd5b8660208260051b8501011115612db8578485fd5b60209290920196919550909350505050565b600060208284031215612ddb578081fd5b611c0e82612b5e565b600060208284031215612df5578081fd5b8135611c0e81613290565b600060208284031215612e11578081fd5b8151611c0e81613290565b600060208284031215612e2d578081fd5b813567ffffffffffffffff811115612e43578182fd5b8201601f81018413612e53578182fd5b6120ed84823560208401612ae8565b600060208284031215612e73578081fd5b5035919050565b60008060408385031215612e8c578182fd5b50508035926020909101359150565b60008151808452612eb38160208601602086016131a3565b601f01601f19169290920160200192915050565b600084516020612eda8285838a016131a3565b855191840191612eed8184848a016131a3565b85549201918390600181811c9080831680612f0957607f831692505b858310811415612f2757634e487b7160e01b88526022600452602488fd5b808015612f3b5760018114612f4c57612f78565b60ff19851688528388019550612f78565b60008b815260209020895b85811015612f705781548a820152908401908801612f57565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612fbc90830184612e9b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ffe57835183529284019291840191600101612fe2565b50909695505050505050565b602081526000611c0e6020830184612e9b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602c908201527f4f6e6c79206d756c74697369672077616c6c65742063616e2070657266726f6d60408201526b103a3434b99030b1ba34b7b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561315457613154613239565b500190565b6000826131685761316861324f565b500490565b600081600019048311821515161561318757613187613239565b500290565b60008282101561319e5761319e613239565b500390565b60005b838110156131be5781810151838201526020016131a6565b838111156112a75750506000910152565b600181811c908216806131e357607f821691505b6020821081141561320457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561321e5761321e613239565b5060010190565b6000826132345761323461324f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611f3d57600080fd5b6001600160e01b031981168114611f3d57600080fdfea264697066735822122053d7cc8832122aa5a40f968349b724934ab9518f834386dce2e3493b455a575864736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000200000000000000000000000000d6a4521461c1c1b1e298a0a963550139e4e6eeb4000000000000000000000000000000000000000000000000000000000000000f486f6c6c79776f6f642050756e6b730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000550554e4b5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000076261736575726900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f686f6c6c79776f6f6470756e6b732e6d7970696e6174612e636c6f75642f697066732f516d56326e4e6634705237393162504a6b796d466b4b434378756746674a584439327271655153726e4d6e6f505600000000000000000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f686f6c6c79776f6f6470756e6b732e6d7970696e6174612e636c6f75642f697066732f516d58467466584866654874676a555a35714c70783831536655613261483633596d39336d6f5146765834436a3700000000000000

-----Decoded View---------------
Arg [0] : name (string): Hollywood Punks
Arg [1] : symbol (string): PUNKS
Arg [2] : initBaseURI (string): baseuri
Arg [3] : initNotRevealedUri (string): https://hollywoodpunks.mypinata.cloud/ipfs/QmV2nNf4pR791bPJkymFkKCCxugFgJXD92rqeQSrnMnoPV
Arg [4] : initContractUri (string): https://hollywoodpunks.mypinata.cloud/ipfs/QmXFtfXHfeHtgjUZ5qLpx81SfUa2aH63Ym93moQFvX4Cj7
Arg [5] : multisigAddr (address): 0xd6a4521461C1C1b1E298a0a963550139e4E6eeb4

-----Encoded View---------------
20 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [5] : 000000000000000000000000d6a4521461c1c1b1e298a0a963550139e4e6eeb4
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [7] : 486f6c6c79776f6f642050756e6b730000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 50554e4b53000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [11] : 6261736575726900000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [13] : 68747470733a2f2f686f6c6c79776f6f6470756e6b732e6d7970696e6174612e
Arg [14] : 636c6f75642f697066732f516d56326e4e6634705237393162504a6b796d466b
Arg [15] : 4b434378756746674a584439327271655153726e4d6e6f505600000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [17] : 68747470733a2f2f686f6c6c79776f6f6470756e6b732e6d7970696e6174612e
Arg [18] : 636c6f75642f697066732f516d58467466584866654874676a555a35714c7078
Arg [19] : 3831536655613261483633596d39336d6f5146765834436a3700000000000000


Deployed Bytecode Sourcemap

52486:7658:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46261:224;;;;;;;;;;-1:-1:-1;46261:224:0;;;;;:::i;:::-;;:::i;:::-;;;10722:14:1;;10715:22;10697:41;;10685:2;10670:18;46261:224:0;;;;;;;;58256:82;;;;;;;;;;-1:-1:-1;58256:82:0;;;;;:::i;:::-;;:::i;:::-;;53260:52;;;;;;;;;;-1:-1:-1;53260:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33755:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35314:221::-;;;;;;;;;;-1:-1:-1;35314:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8751:32:1;;;8733:51;;8721:2;8706:18;35314:221:0;8688:102:1;52717:28:0;;;;;;;;;;;;;:::i;34837:411::-;;;;;;;;;;-1:-1:-1;34837:411:0;;;;;:::i;:::-;;:::i;53016:40::-;;;;;;;;;;;;;;;;;;;23351:25:1;;;23339:2;23324:18;53016:40:0;23306:76:1;46901:113:0;;;;;;;;;;-1:-1:-1;46989:10:0;:17;46901:113;;52937:33;;;;;;;;;;;;;;;;36064:339;;;;;;;;;;-1:-1:-1;36064:339:0;;;;;:::i;:::-;;:::i;59348:336::-;;;;;;;;;;-1:-1:-1;59348:336:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;9480:32:1;;;9462:51;;9544:2;9529:18;;9522:34;;;;9435:18;59348:336:0;9417:145:1;46569:256:0;;;;;;;;;;-1:-1:-1;46569:256:0;;;;;:::i;:::-;;:::i;53063:43::-;;;;;;;;;;;;;;;;56300:116;;;;;;;;;;-1:-1:-1;56300:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;56382:26:0;56358:4;56382:26;;;:20;:26;;;;;;;;;56300:116;58964:117;;;;;;;;;;;;;:::i;52891:39::-;;;;;;;;;;;;;;;;36474:185;;;;;;;;;;-1:-1:-1;36474:185:0;;;;;:::i;:::-;;:::i;52805:41::-;;;;;;;;;;;;;;;;53220:33;;;;;;;;;;;;;;;47091:233;;;;;;;;;;-1:-1:-1;47091:233:0;;;;;:::i;:::-;;:::i;53146:28::-;;;;;;;;;;-1:-1:-1;53146:28:0;;;;;;;;;;;58004:105;;;;;;;;;;-1:-1:-1;58004:105:0;;;;;:::i;:::-;;:::i;53113:26::-;;;;;;;;;;-1:-1:-1;53113:26:0;;;;;;;;33449:239;;;;;;;;;;-1:-1:-1;33449:239:0;;;;;:::i;:::-;;:::i;55564:627::-;;;;;;;;;;-1:-1:-1;55564:627:0;;;;;:::i;:::-;;:::i;57529:109::-;;;;;;;;;;-1:-1:-1;57529:109:0;;;;;:::i;:::-;;:::i;33179:208::-;;;;;;;;;;-1:-1:-1;33179:208:0;;;;;:::i;:::-;;:::i;11757:103::-;;;;;;;;;;;;;:::i;57347:174::-;;;;;;;;;;-1:-1:-1;57347:174:0;;;;;:::i;:::-;;:::i;56199:93::-;;;;;;;;;;-1:-1:-1;56199:93:0;;;;;:::i;:::-;;:::i;56424:358::-;;;;;;;;;;-1:-1:-1;56424:358:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;11106:87::-;;;;;;;;;;-1:-1:-1;11179:6:0;;-1:-1:-1;;;;;11179:6:0;11106:87;;57646:215;;;;;;;;;;-1:-1:-1;57646:215:0;;;;;:::i;:::-;;:::i;33924:104::-;;;;;;;;;;;;;:::i;53181:32::-;;;;;;;;;;-1:-1:-1;53181:32:0;;;;;;;;;;;54390:1166;;;;;;:::i;:::-;;:::i;35607:155::-;;;;;;;;;;-1:-1:-1;35607:155:0;;;;;:::i;:::-;;:::i;57265:74::-;;;;;;;;;;;;;:::i;58346:100::-;;;;;;;;;;-1:-1:-1;58346:100:0;;;;;:::i;:::-;;:::i;36730:328::-;;;;;;;;;;-1:-1:-1;36730:328:0;;;;;:::i;:::-;;:::i;52685:25::-;;;;;;;;;;;;;:::i;56790:467::-;;;;;;;;;;-1:-1:-1;56790:467:0;;;;;:::i;:::-;;:::i;52758:40::-;;;;;;;;;;;;;;;;52853:31;;;;;;;;;;;;;;;;58117:131;;;;;;;;;;-1:-1:-1;58117:131:0;;;;;:::i;:::-;;:::i;58454:181::-;;;;;;;;;;-1:-1:-1;58454:181:0;;;;;:::i;:::-;;:::i;54286:96::-;;;;;;;;;;;;;:::i;59752:389::-;;;;;;;;;;-1:-1:-1;59752:389:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;10911:33:1;;;10893:52;;10881:2;10866:18;59752:389:0;10848:103:1;35833:164:0;;;;;;;;;;-1:-1:-1;35833:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35954:25:0;;;35930:4;35954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35833:164;58841:115;;;;;;;;;;-1:-1:-1;58841:115:0;;;;;:::i;:::-;;:::i;58643:190::-;;;;;;;;;;-1:-1:-1;58643:190:0;;;;;:::i;:::-;;:::i;57869:127::-;;;;;;;;;;-1:-1:-1;57869:127:0;;;;;:::i;:::-;;:::i;12015:201::-;;;;;;;;;;-1:-1:-1;12015:201:0;;;;;:::i;:::-;;:::i;52977:32::-;;;;;;;;;;;;;;;;46261:224;46363:4;-1:-1:-1;;;;;;46387:50:0;;-1:-1:-1;;;46387:50:0;;:90;;;46441:36;46465:11;46441:23;:36::i;:::-;46380:97;46261:224;-1:-1:-1;;46261:224:0:o;58256:82::-;53635:10;-1:-1:-1;;;;;53649:8:0;53635:22;;53627:79;;;;-1:-1:-1;;;53627:79:0;;;;;;;:::i;:::-;;;;;;;;;58316:6:::1;:14:::0;;-1:-1:-1;;58316:14:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58256:82::o;33755:100::-;33809:13;33842:5;33835:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33755:100;:::o;35314:221::-;35390:7;38657:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38657:16:0;35410:73;;;;-1:-1:-1;;;35410:73:0;;18378:2:1;35410:73:0;;;18360:21:1;18417:2;18397:18;;;18390:30;18456:34;18436:18;;;18429:62;-1:-1:-1;;;18507:18:1;;;18500:42;18559:19;;35410:73:0;18350:234:1;35410:73:0;-1:-1:-1;35503:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35503:24:0;;35314:221::o;52717:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34837:411::-;34918:13;34934:23;34949:7;34934:14;:23::i;:::-;34918:39;;34982:5;-1:-1:-1;;;;;34976:11:0;:2;-1:-1:-1;;;;;34976:11:0;;;34968:57;;;;-1:-1:-1;;;34968:57:0;;19978:2:1;34968:57:0;;;19960:21:1;20017:2;19997:18;;;19990:30;20056:34;20036:18;;;20029:62;-1:-1:-1;;;20107:18:1;;;20100:31;20148:19;;34968:57:0;19950:223:1;34968:57:0;9910:10;-1:-1:-1;;;;;35060:21:0;;;;:62;;-1:-1:-1;35085:37:0;35102:5;9910:10;35833:164;:::i;35085:37::-;35038:168;;;;-1:-1:-1;;;35038:168:0;;16771:2:1;35038:168:0;;;16753:21:1;16810:2;16790:18;;;16783:30;16849:34;16829:18;;;16822:62;16920:26;16900:18;;;16893:54;16964:19;;35038:168:0;16743:246:1;35038:168:0;35219:21;35228:2;35232:7;35219:8;:21::i;:::-;34837:411;;;:::o;36064:339::-;36259:41;9910:10;36292:7;36259:18;:41::i;:::-;36251:103;;;;-1:-1:-1;;;36251:103:0;;;;;;;:::i;:::-;36367:28;36377:4;36383:2;36387:7;36367:9;:28::i;59348:336::-;59439:16;59457:14;59503:1;59492:8;:12;59484:21;;;;;;59527:4;-1:-1:-1;;;;;59527:10:0;;:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59516:23;;59567:3;59553:10;:17;59550:127;;-1:-1:-1;59596:1:0;59550:127;;;59639:26;59661:3;59639:17;:10;59654:1;59639:14;:17::i;:::-;:21;;:26::i;:::-;59630:35;;59550:127;59348:336;;;;;:::o;46569:256::-;46666:7;46702:23;46719:5;46702:16;:23::i;:::-;46694:5;:31;46686:87;;;;-1:-1:-1;;;46686:87:0;;11732:2:1;46686:87:0;;;11714:21:1;11771:2;11751:18;;;11744:30;11810:34;11790:18;;;11783:62;-1:-1:-1;;;11861:18:1;;;11854:41;11912:19;;46686:87:0;11704:233:1;46686:87:0;-1:-1:-1;;;;;;46791:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;46569:256::o;58964:117::-;53635:10;-1:-1:-1;;;;;53649:8:0;53635:22;;53627:79;;;;-1:-1:-1;;;53627:79:0;;;;;;;:::i;:::-;59025:47:::1;::::0;59033:10:::1;::::0;59050:21:::1;59025:47:::0;::::1;;;::::0;::::1;::::0;;;59050:21;59033:10;59025:47;::::1;;;;;;59017:56;;;::::0;::::1;;58964:117::o:0;36474:185::-;36612:39;36629:4;36635:2;36639:7;36612:39;;;;;;;;;;;;:16;:39::i;47091:233::-;47166:7;47202:30;46989:10;:17;;46901:113;47202:30;47194:5;:38;47186:95;;;;-1:-1:-1;;;47186:95:0;;21488:2:1;47186:95:0;;;21470:21:1;21527:2;21507:18;;;21500:30;21566:34;21546:18;;;21539:62;-1:-1:-1;;;21617:18:1;;;21610:42;21669:19;;47186:95:0;21460:234:1;47186:95:0;47299:10;47310:5;47299:17;;;;;;-1:-1:-1;;;47299:17:0;;;;;;;;;;;;;;;;;47292:24;;47091:233;;;:::o;58004:105::-;53635:10;-1:-1:-1;;;;;53649:8:0;53635:22;;53627:79;;;;-1:-1:-1;;;53627:79:0;;;;;;;:::i;:::-;58081:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;58004:105:::0;:::o;33449:239::-;33521:7;33557:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33557:16:0;33592:19;33584:73;;;;-1:-1:-1;;;33584:73:0;;17607:2:1;33584:73:0;;;17589:21:1;17646:2;17626:18;;;17619:30;17685:34;17665:18;;;17658:62;-1:-1:-1;;;17736:18:1;;;17729:39;17785:19;;33584:73:0;17579:231:1;55564:627:0;53635:10;-1:-1:-1;;;;;53649:8:0;53635:22;;53627:79;;;;-1:-1:-1;;;53627:79:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55660:16:0;::::1;55652:49;;;::::0;-1:-1:-1;;;55652:49:0;;15607:2:1;55652:49:0::1;::::0;::::1;15589:21:1::0;15646:2;15626:18;;;15619:30;-1:-1:-1;;;15665:18:1;;;15658:50;15725:18;;55652:49:0::1;15579:170:1::0;55652:49:0::1;55738:12;;55720:15;:30;55712:58;;;::::0;-1:-1:-1;;;55712:58:0;;22654:2:1;55712:58:0::1;::::0;::::1;22636:21:1::0;22693:2;22673:18;;;22666:30;-1:-1:-1;;;22712:18:1;;;22705:45;22767:18;;55712:58:0::1;22626:165:1::0;55712:58:0::1;55781:14;55798:13;46989:10:::0;:17;;46901:113;55798:13:::1;55781:30;;55842:6;55830:9;;:18;55822:52;;;::::0;-1:-1:-1;;;55822:52:0;;11382:2:1;55822:52:0::1;::::0;::::1;11364:21:1::0;11421:2;11401:18;;;11394:30;-1:-1:-1;;;11440:18:1;;;11433:51;11501:18;;55822:52:0::1;11354:171:1::0;55822:52:0::1;55910:10;55901:6;55889:9;;:18;;;;:::i;:::-;:31;55885:299;;;55954:1;55937:98;55962:10;55957:1;:15;55937:98;;55998:21;56004:2:::0;56008:10:::1;56017:1:::0;56008:6;:10:::1;:::i;:::-;55998:5;:21::i;:::-;55974:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55937:98;;;;34837:411:::0;;;:::o;55885:299::-:1;56084:1;56067:106;56104:6;56092:9;;:18;;;;:::i;:::-;56087:1;:23;56067:106;;56136:21;56142:2:::0;56146:10:::1;56155:1:::0;56146:6;:10:::1;:::i;56136:21::-;56112:3:::0;::::1;::::0;::::1;:::i;:::-;;;;56067:106;;57529:109:::0;53635:10;-1:-1:-1;;;;;53649:8:0;53635:22;;53627:79;;;;-1:-1:-1;;;53627:79:0;;;;;;;:::i;:::-;57606:9:::1;:24:::0;57529:109::o;33179:208::-;33251:7;-1:-1:-1;;;;;33279:19:0;;33271:74;;;;-1:-1:-1;;;33271:74:0;;17196:2:1;33271:74:0;;;17178:21:1;17235:2;17215:18;;;17208:30;17274:34;17254:18;;;17247:62;-1:-1:-1;;;17325:18:1;;;17318:40;17375:19;;33271:74:0;17168:232:1;33271:74:0;-1:-1:-1;;;;;;33363:16:0;;;;;:9;:16;;;;;;;33179:208::o;11757:103::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;11822:30:::1;11849:1;11822:18;:30::i;57347:174::-:0;53635:10;-1:-1:-1;;;;;53649:8:0;53635:22;;53627:79;;;;-1:-1:-1;;;53627:79:0;;;;;;;:::i;:::-;57444:11:::1;:26:::0;;;;57481:14:::1;:32:::0;57347:174::o;56199:93::-;53635:10;-1:-1:-1;;;;;53649:8:0;53635:22;;53627:79;;;;-1:-1:-1;;;53627:79:0;;;;;;;:::i;:::-;56268:10:::1;:16:::0;56199:93::o;56424:358::-;56484:16;56513:23;56539:17;56549:6;56539:9;:17::i;:::-;56513:43;;56567:25;56609:15;56595:30;;;;;;-1:-1:-1;;;56595:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56595:30:0;;56567:58;;56641:9;56636:113;56656:15;56652:1;:19;56636:113;;;56707:30;56727:6;56735:1;56707:19;:30::i;:::-;56693:8;56702:1;56693:11;;;;;;-1:-1:-1;;;56693:11:0;;;;;;;;;;;;;;;;;;:44;56673:3;;;;:::i;:::-;;;;56636:113;;;-1:-1:-1;56766:8:0;56424:358;-1:-1:-1;;;56424:358:0:o;57646:215::-;53635:10;-1:-1:-1;;;;;53649:8:0;53635:22;;53627:79;;;;-1:-1:-1;;;53627:79:0;;;;;;;:::i;:::-;57764:13:::1;:32:::0;;;;57807:20:::1;:46:::0;57646:215::o;33924:104::-;33980:13;34013:7;34006:14;;;;;:::i;54390:1166::-;54461:6;;;;54460:7;54452:37;;;;-1:-1:-1;;;54452:37:0;;21142:2:1;54452:37:0;;;21124:21:1;21181:2;21161:18;;;21154:30;-1:-1:-1;;;21200:18:1;;;21193:47;21257:18;;54452:37:0;21114:167:1;54452:37:0;54526:12;;54508:15;:30;54500:54;;;;-1:-1:-1;;;54500:54:0;;12144:2:1;54500:54:0;;;12126:21:1;12183:2;12163:18;;;12156:30;-1:-1:-1;;;12202:18:1;;;12195:41;12253:18;;54500:54:0;12116:161:1;54500:54:0;54586:1;54573:10;:14;54565:63;;;;-1:-1:-1;;;54565:63:0;;21901:2:1;54565:63:0;;;21883:21:1;21940:2;21920:18;;;21913:30;21979:34;21959:18;;;21952:62;-1:-1:-1;;;22030:18:1;;;22023:34;22074:19;;54565:63:0;21873:226:1;54565:63:0;54639:14;54656:13;46989:10;:17;;46901:113;54656:13;54711:9;;54639:30;;-1:-1:-1;54688:19:0;54697:10;54639:30;54688:19;:::i;:::-;:32;;54680:64;;;;-1:-1:-1;;;54680:64:0;;22306:2:1;54680:64:0;;;22288:21:1;22345:2;22325:18;;;22318:30;-1:-1:-1;;;22364:18:1;;;22357:49;22423:18;;54680:64:0;22278:169:1;54680:64:0;54787:15;;54769;:33;54765:672;;;54828:13;;;;;;;54827:14;;:43;;-1:-1:-1;54859:10:0;56358:4;56382:26;;;:20;:26;;;;;;;;54845:25;54819:82;;;;-1:-1:-1;;;54819:82:0;;14080:2:1;54819:82:0;;;14062:21:1;14119:2;14099:18;;;14092:30;14158:28;14138:18;;;14131:56;14204:18;;54819:82:0;14052:176:1;54819:82:0;54947:10;;54924:19;54933:10;54924:6;:19;:::i;:::-;:33;;54916:86;;;;-1:-1:-1;;;54916:86:0;;22998:2:1;54916:86:0;;;22980:21:1;23037:2;23017:18;;;23010:30;23076:34;23056:18;;;23049:62;-1:-1:-1;;;23127:18:1;;;23120:38;23175:19;;54916:86:0;22970:230:1;54916:86:0;55063:20;;55049:10;55025:21;55035:10;55025:9;:21::i;:::-;:34;;;;:::i;:::-;:58;;55017:115;;;;-1:-1:-1;;;55017:115:0;;14435:2:1;55017:115:0;;;14417:21:1;14474:2;14454:18;;;14447:30;14513:34;14493:18;;;14486:62;-1:-1:-1;;;14564:18:1;;;14557:42;14616:19;;55017:115:0;14407:234:1;55017:115:0;55182:10;55168:11;;:24;;;;:::i;:::-;55155:9;:37;55147:65;;;;-1:-1:-1;;;55147:65:0;;20380:2:1;55147:65:0;;;20362:21:1;20419:2;20399:18;;;20392:30;-1:-1:-1;;;20438:18:1;;;20431:45;20493:18;;55147:65:0;20352:165:1;55147:65:0;54765:672;;;55291:13;;55277:10;55253:21;55263:10;55253:9;:21::i;:::-;:34;;;;:::i;:::-;:51;;55245:97;;;;-1:-1:-1;;;55245:97:0;;15956:2:1;55245:97:0;;;15938:21:1;15995:2;15975:18;;;15968:30;16034:34;16014:18;;;16007:62;-1:-1:-1;;;16085:18:1;;;16078:31;16126:19;;55245:97:0;15928:223:1;55245:97:0;55395:10;55378:14;;:27;;;;:::i;:::-;55365:9;:40;55357:68;;;;-1:-1:-1;;;55357:68:0;;20380:2:1;55357:68:0;;;20362:21:1;20419:2;20399:18;;;20392:30;-1:-1:-1;;;20438:18:1;;;20431:45;20493:18;;55357:68:0;20352:165:1;55357:68:0;55464:1;55447:102;55472:10;55467:1;:15;55447:102;;55504:33;55514:10;55526;55535:1;55526:6;:10;:::i;:::-;55504:9;:33::i;:::-;55484:3;;;;:::i;:::-;;;;55447:102;;35607:155;35702:52;9910:10;35735:8;35745;35702:18;:52::i;57265:74::-;53635:10;-1:-1:-1;;;;;53649:8:0;53635:22;;53627:79;;;;-1:-1:-1;;;53627:79:0;;;;;;;:::i;:::-;57316:8:::1;:15:::0;;-1:-1:-1;;57316:15:0::1;;;::::0;;57265:74::o;58346:100::-;53635:10;-1:-1:-1;;;;;53649:8:0;53635:22;;53627:79;;;;-1:-1:-1;;;53627:79:0;;;;;;;:::i;:::-;58417:13:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;58417:21:0;;::::1;::::0;;;::::1;::::0;;58346:100::o;36730:328::-;36905:41;9910:10;36938:7;36905:18;:41::i;:::-;36897:103;;;;-1:-1:-1;;;36897:103:0;;;;;;;:::i;:::-;37011:39;37025:4;37031:2;37035:7;37044:5;37011:13;:39::i;52685:25::-;;;;;;;:::i;56790:467::-;38633:4;38657:16;;;:7;:16;;;;;;56863:13;;-1:-1:-1;;;;;38657:16:0;56889:77;;;;-1:-1:-1;;;56889:77:0;;19562:2:1;56889:77:0;;;19544:21:1;19601:2;19581:18;;;19574:30;19640:34;19620:18;;;19613:62;-1:-1:-1;;;19691:18:1;;;19684:45;19746:19;;56889:77:0;19534:237:1;56889:77:0;56981:8;;;;;;;56977:71;;57022:14;57015:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56790:467;;;:::o;56977:71::-;57058:28;57089:10;:8;:10::i;:::-;57058:41;;57148:1;57123:14;57117:28;:32;:132;;;;;;;;;;;;;;;;;57193:14;57209:18;:7;:16;:18::i;:::-;57229:13;57176:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57117:132;57110:139;56790:467;-1:-1:-1;;;56790:467:0:o;58117:131::-;53635:10;-1:-1:-1;;;;;53649:8:0;53635:22;;53627:79;;;;-1:-1:-1;;;53627:79:0;;;;;;;:::i;:::-;58208:32;;::::1;::::0;:13:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;58454:181::-:0;53635:10;-1:-1:-1;;;;;53649:8:0;53635:22;;53627:79;;;;-1:-1:-1;;;53627:79:0;;;;;;;:::i;:::-;58554:12:::1;:28:::0;;;;58593:15:::1;:34:::0;58454:181::o;54286:96::-;54330:13;54363:11;54356:18;;;;;:::i;59752:389::-;59940:86;;;-1:-1:-1;;;;;9787:32:1;;;9769:51;;9851:2;9836:18;;9829:34;;;9879:18;;;9872:34;;;59916:6:0;;59985:8;;59940:86;;;;;;;;;9757:2:1;9742:18;59940:86:0;;;;;;;-1:-1:-1;60051:81:0;59752:389;;;;;;;;:::o;58841:115::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;58914:26:0::1;58943:5;58914:26:::0;;;:20:::1;:26;::::0;;;;:34;;-1:-1:-1;;58914:34:0::1;::::0;;58841:115::o;58643:190::-;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;58728:9:::1;58723:103;58739:16:::0;;::::1;58723:103;;;58810:4;58777:20;:30;58798:5;;58804:1;58798:8;;;;;-1:-1:-1::0;;;58798:8:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;58777:30:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;58777:30:0;:37;;-1:-1:-1;;58777:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58757:3;::::1;::::0;::::1;:::i;:::-;;;;58723:103;;57869:127:::0;53635:10;-1:-1:-1;;;;;53649:8:0;53635:22;;53627:79;;;;-1:-1:-1;;;53627:79:0;;;;;;;:::i;:::-;57957:31;;::::1;::::0;:14:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;12015:201::-:0;11179:6;;-1:-1:-1;;;;;11179:6:0;9910:10;11326:23;11318:68;;;;-1:-1:-1;;;11318:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12104:22:0;::::1;12096:73;;;::::0;-1:-1:-1;;;12096:73:0;;13316:2:1;12096:73:0::1;::::0;::::1;13298:21:1::0;13355:2;13335:18;;;13328:30;13394:34;13374:18;;;13367:62;-1:-1:-1;;;13445:18:1;;;13438:36;13491:19;;12096:73:0::1;13288:228:1::0;12096:73:0::1;12180:28;12199:8;12180:18;:28::i;:::-;12015:201:::0;:::o;32810:305::-;32912:4;-1:-1:-1;;;;;;32949:40:0;;-1:-1:-1;;;32949:40:0;;:105;;-1:-1:-1;;;;;;;33006:48:0;;-1:-1:-1;;;33006:48:0;32949:105;:158;;;-1:-1:-1;;;;;;;;;;24615:40:0;;;33071:36;24506:157;42550:174;42625:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42625:29:0;-1:-1:-1;;;;;42625:29:0;;;;;;;;:24;;42679:23;42625:24;42679:14;:23::i;:::-;-1:-1:-1;;;;;42670:46:0;;;;;;;;;;;42550:174;;:::o;38862:348::-;38955:4;38657:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38657:16:0;38972:73;;;;-1:-1:-1;;;38972:73:0;;16358:2:1;38972:73:0;;;16340:21:1;16397:2;16377:18;;;16370:30;16436:34;16416:18;;;16409:62;-1:-1:-1;;;16487:18:1;;;16480:42;16539:19;;38972:73:0;16330:234:1;38972:73:0;39056:13;39072:23;39087:7;39072:14;:23::i;:::-;39056:39;;39125:5;-1:-1:-1;;;;;39114:16:0;:7;-1:-1:-1;;;;;39114:16:0;;:51;;;;39158:7;-1:-1:-1;;;;;39134:31:0;:20;39146:7;39134:11;:20::i;:::-;-1:-1:-1;;;;;39134:31:0;;39114:51;:87;;;-1:-1:-1;;;;;;35954:25:0;;;35930:4;35954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39169:32;39106:96;38862:348;-1:-1:-1;;;;38862:348:0:o;41854:578::-;42013:4;-1:-1:-1;;;;;41986:31:0;:23;42001:7;41986:14;:23::i;:::-;-1:-1:-1;;;;;41986:31:0;;41978:85;;;;-1:-1:-1;;;41978:85:0;;19152:2:1;41978:85:0;;;19134:21:1;19191:2;19171:18;;;19164:30;19230:34;19210:18;;;19203:62;-1:-1:-1;;;19281:18:1;;;19274:39;19330:19;;41978:85:0;19124:231:1;41978:85:0;-1:-1:-1;;;;;42082:16:0;;42074:65;;;;-1:-1:-1;;;42074:65:0;;14848:2:1;42074:65:0;;;14830:21:1;14887:2;14867:18;;;14860:30;14926:34;14906:18;;;14899:62;-1:-1:-1;;;14977:18:1;;;14970:34;15021:19;;42074:65:0;14820:226:1;42074:65:0;42152:39;42173:4;42179:2;42183:7;42152:20;:39::i;:::-;42256:29;42273:1;42277:7;42256:8;:29::i;:::-;-1:-1:-1;;;;;42298:15:0;;;;;;:9;:15;;;;;:20;;42317:1;;42298:15;:20;;42317:1;;42298:20;:::i;:::-;;;;-1:-1:-1;;;;;;;42329:13:0;;;;;;:9;:13;;;;;:18;;42346:1;;42329:13;:18;;42346:1;;42329:18;:::i;:::-;;;;-1:-1:-1;;42358:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42358:21:0;-1:-1:-1;;;;;42358:21:0;;;;;;;;;42397:27;;42358:16;;42397:27;;;;;;;41854:578;;;:::o;3600:98::-;3658:7;3685:5;3689:1;3685;:5;:::i;3999:98::-;4057:7;4084:5;4088:1;4084;:5;:::i;40546:382::-;-1:-1:-1;;;;;40626:16:0;;40618:61;;;;-1:-1:-1;;;40618:61:0;;18017:2:1;40618:61:0;;;17999:21:1;;;18036:18;;;18029:30;18095:34;18075:18;;;18068:62;18147:18;;40618:61:0;17989:182:1;40618:61:0;38633:4;38657:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38657:16:0;:30;40690:58;;;;-1:-1:-1;;;40690:58:0;;13723:2:1;40690:58:0;;;13705:21:1;13762:2;13742:18;;;13735:30;13801;13781:18;;;13774:58;13849:18;;40690:58:0;13695:178:1;40690:58:0;40761:45;40790:1;40794:2;40798:7;40761:20;:45::i;:::-;-1:-1:-1;;;;;40819:13:0;;;;;;:9;:13;;;;;:18;;40836:1;;40819:13;:18;;40836:1;;40819:18;:::i;:::-;;;;-1:-1:-1;;40848:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40848:21:0;-1:-1:-1;;;;;40848:21:0;;;;;;;;40887:33;;40848:16;;;40887:33;;40848:16;;40887:33;40546:382;;:::o;12376:191::-;12469:6;;;-1:-1:-1;;;;;12486:17:0;;;-1:-1:-1;;;;;;12486:17:0;;;;;;;12519:40;;12469:6;;;12486:17;12469:6;;12519:40;;12450:16;;12519:40;12376:191;;:::o;39552:110::-;39628:26;39638:2;39642:7;39628:26;;;;;;;;;;;;:9;:26::i;42866:315::-;43021:8;-1:-1:-1;;;;;43012:17:0;:5;-1:-1:-1;;;;;43012:17:0;;;43004:55;;;;-1:-1:-1;;;43004:55:0;;15253:2:1;43004:55:0;;;15235:21:1;15292:2;15272:18;;;15265:30;15331:27;15311:18;;;15304:55;15376:18;;43004:55:0;15225:175:1;43004:55:0;-1:-1:-1;;;;;43070:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;43070:46:0;;;;;;;;;;43132:41;;10697::1;;;43132::0;;10670:18:1;43132:41:0;;;;;;;42866:315;;;:::o;37940:::-;38097:28;38107:4;38113:2;38117:7;38097:9;:28::i;:::-;38144:48;38167:4;38173:2;38177:7;38186:5;38144:22;:48::i;:::-;38136:111;;;;-1:-1:-1;;;38136:111:0;;;;;;;:::i;54170:108::-;54230:13;54263:7;54256:14;;;;;:::i;7392:723::-;7448:13;7669:10;7665:53;;-1:-1:-1;;7696:10:0;;;;;;;;;;;;-1:-1:-1;;;7696:10:0;;;;;7392:723::o;7665:53::-;7743:5;7728:12;7784:78;7791:9;;7784:78;;7817:8;;;;:::i;:::-;;-1:-1:-1;7840:10:0;;-1:-1:-1;7848:2:0;7840:10;;:::i;:::-;;;7784:78;;;7872:19;7904:6;7894:17;;;;;;-1:-1:-1;;;7894:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7894:17:0;;7872:39;;7922:154;7929:10;;7922:154;;7956:11;7966:1;7956:11;;:::i;:::-;;-1:-1:-1;8025:10:0;8033:2;8025:5;:10;:::i;:::-;8012:24;;:2;:24;:::i;:::-;7999:39;;7982:6;7989;7982:14;;;;;;-1:-1:-1;;;7982:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;7982:56:0;;;;;;;;-1:-1:-1;8053:11:0;8062:2;8053:11;;:::i;:::-;;;7922:154;;47937:589;-1:-1:-1;;;;;48143:18:0;;48139:187;;48178:40;48210:7;49353:10;:17;;49326:24;;;;:15;:24;;;;;:44;;;49381:24;;;;;;;;;;;;49249:164;48178:40;48139:187;;;48248:2;-1:-1:-1;;;;;48240:10:0;:4;-1:-1:-1;;;;;48240:10:0;;48236:90;;48267:47;48300:4;48306:7;48267:32;:47::i;:::-;-1:-1:-1;;;;;48340:16:0;;48336:183;;48373:45;48410:7;48373:36;:45::i;48336:183::-;48446:4;-1:-1:-1;;;;;48440:10:0;:2;-1:-1:-1;;;;;48440:10:0;;48436:83;;48467:40;48495:2;48499:7;48467:27;:40::i;39889:321::-;40019:18;40025:2;40029:7;40019:5;:18::i;:::-;40070:54;40101:1;40105:2;40109:7;40118:5;40070:22;:54::i;:::-;40048:154;;;;-1:-1:-1;;;40048:154:0;;;;;;;:::i;43746:799::-;43901:4;-1:-1:-1;;;;;43922:13:0;;13717:20;13765:8;43918:620;;43958:72;;-1:-1:-1;;;43958:72:0;;-1:-1:-1;;;;;43958:36:0;;;;;:72;;9910:10;;44009:4;;44015:7;;44024:5;;43958:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43958:72:0;;;;;;;;-1:-1:-1;;43958:72:0;;;;;;;;;;;;:::i;:::-;;;43954:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44200:13:0;;44196:272;;44243:60;;-1:-1:-1;;;44243:60:0;;;;;;;:::i;44196:272::-;44418:6;44412:13;44403:6;44399:2;44395:15;44388:38;43954:529;-1:-1:-1;;;;;;44081:51:0;-1:-1:-1;;;44081:51:0;;-1:-1:-1;44074:58:0;;43918:620;-1:-1:-1;44522:4:0;43746:799;;;;;;:::o;50040:988::-;50306:22;50356:1;50331:22;50348:4;50331:16;:22::i;:::-;:26;;;;:::i;:::-;50368:18;50389:26;;;:17;:26;;;;;;50306:51;;-1:-1:-1;50522:28:0;;;50518:328;;-1:-1:-1;;;;;50589:18:0;;50567:19;50589:18;;;:12;:18;;;;;;;;:34;;;;;;;;;50640:30;;;;;;:44;;;50757:30;;:17;:30;;;;;:43;;;50518:328;-1:-1:-1;50942:26:0;;;;:17;:26;;;;;;;;50935:33;;;-1:-1:-1;;;;;50986:18:0;;;;;:12;:18;;;;;:34;;;;;;;50979:41;50040:988::o;51323:1079::-;51601:10;:17;51576:22;;51601:21;;51621:1;;51601:21;:::i;:::-;51633:18;51654:24;;;:15;:24;;;;;;52027:10;:26;;51576:46;;-1:-1:-1;51654:24:0;;51576:46;;52027:26;;;;-1:-1:-1;;;52027:26:0;;;;;;;;;;;;;;;;;52005:48;;52091:11;52066:10;52077;52066:22;;;;;;-1:-1:-1;;;52066:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;52171:28;;;:15;:28;;;;;;;:41;;;52343:24;;;;;52336:31;52378:10;:16;;;;;-1:-1:-1;;;52378:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;51323:1079;;;;:::o;48827:221::-;48912:14;48929:20;48946:2;48929:16;:20::i;:::-;-1:-1:-1;;;;;48960:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;49005:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;48827:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:2;;800:1;797;790:12;744:2;696:114;;;:::o;815:257::-;874:6;927:2;915:9;906:7;902:23;898:32;895:2;;;948:6;940;933:22;895:2;992:9;979:23;1011:31;1036:5;1011:31;:::i;1077:261::-;1147:6;1200:2;1188:9;1179:7;1175:23;1171:32;1168:2;;;1221:6;1213;1206:22;1168:2;1258:9;1252:16;1277:31;1302:5;1277:31;:::i;1343:398::-;1411:6;1419;1472:2;1460:9;1451:7;1447:23;1443:32;1440:2;;;1493:6;1485;1478:22;1440:2;1537:9;1524:23;1556:31;1581:5;1556:31;:::i;:::-;1606:5;-1:-1:-1;1663:2:1;1648:18;;1635:32;1676:33;1635:32;1676:33;:::i;:::-;1728:7;1718:17;;;1430:311;;;;;:::o;1746:466::-;1823:6;1831;1839;1892:2;1880:9;1871:7;1867:23;1863:32;1860:2;;;1913:6;1905;1898:22;1860:2;1957:9;1944:23;1976:31;2001:5;1976:31;:::i;:::-;2026:5;-1:-1:-1;2083:2:1;2068:18;;2055:32;2096:33;2055:32;2096:33;:::i;:::-;1850:362;;2148:7;;-1:-1:-1;;;2202:2:1;2187:18;;;;2174:32;;1850:362::o;2217:746::-;2321:6;2329;2337;2345;2353;2361;2414:3;2402:9;2393:7;2389:23;2385:33;2382:2;;;2436:6;2428;2421:22;2382:2;2480:9;2467:23;2499:31;2524:5;2499:31;:::i;:::-;2549:5;-1:-1:-1;2606:2:1;2591:18;;2578:32;2619:33;2578:32;2619:33;:::i;:::-;2671:7;-1:-1:-1;2725:2:1;2710:18;;2697:32;;-1:-1:-1;2781:2:1;2766:18;;2753:32;2794:33;2753:32;2794:33;:::i;:::-;2372:591;;;;-1:-1:-1;2372:591:1;;2900:3;2885:19;;2872:33;;2952:3;2937:19;;;2924:33;;-1:-1:-1;2372:591:1;-1:-1:-1;;2372:591:1:o;2968:824::-;3063:6;3071;3079;3087;3140:3;3128:9;3119:7;3115:23;3111:33;3108:2;;;3162:6;3154;3147:22;3108:2;3206:9;3193:23;3225:31;3250:5;3225:31;:::i;:::-;3275:5;-1:-1:-1;3332:2:1;3317:18;;3304:32;3345:33;3304:32;3345:33;:::i;:::-;3397:7;-1:-1:-1;3451:2:1;3436:18;;3423:32;;-1:-1:-1;3506:2:1;3491:18;;3478:32;3533:18;3522:30;;3519:2;;;3570:6;3562;3555:22;3519:2;3598:22;;3651:4;3643:13;;3639:27;-1:-1:-1;3629:2:1;;3685:6;3677;3670:22;3629:2;3713:73;3778:7;3773:2;3760:16;3755:2;3751;3747:11;3713:73;:::i;:::-;3703:83;;;3098:694;;;;;;;:::o;3797:325::-;3862:6;3870;3923:2;3911:9;3902:7;3898:23;3894:32;3891:2;;;3944:6;3936;3929:22;3891:2;3988:9;3975:23;4007:31;4032:5;4007:31;:::i;:::-;4057:5;-1:-1:-1;4081:35:1;4112:2;4097:18;;4081:35;:::i;4127:325::-;4195:6;4203;4256:2;4244:9;4235:7;4231:23;4227:32;4224:2;;;4277:6;4269;4262:22;4224:2;4321:9;4308:23;4340:31;4365:5;4340:31;:::i;:::-;4390:5;4442:2;4427:18;;;;4414:32;;-1:-1:-1;;;4214:238:1:o;4457:665::-;4543:6;4551;4604:2;4592:9;4583:7;4579:23;4575:32;4572:2;;;4625:6;4617;4610:22;4572:2;4670:9;4657:23;4699:18;4740:2;4732:6;4729:14;4726:2;;;4761:6;4753;4746:22;4726:2;4804:6;4793:9;4789:22;4779:32;;4849:7;4842:4;4838:2;4834:13;4830:27;4820:2;;4876:6;4868;4861:22;4820:2;4921;4908:16;4947:2;4939:6;4936:14;4933:2;;;4968:6;4960;4953:22;4933:2;5026:7;5021:2;5011:6;5008:1;5004:14;5000:2;4996:23;4992:32;4989:45;4986:2;;;5052:6;5044;5037:22;4986:2;5088;5080:11;;;;;5110:6;;-1:-1:-1;4562:560:1;;-1:-1:-1;;;;4562:560:1:o;5127:190::-;5183:6;5236:2;5224:9;5215:7;5211:23;5207:32;5204:2;;;5257:6;5249;5242:22;5204:2;5285:26;5301:9;5285:26;:::i;5322:255::-;5380:6;5433:2;5421:9;5412:7;5408:23;5404:32;5401:2;;;5454:6;5446;5439:22;5401:2;5498:9;5485:23;5517:30;5541:5;5517:30;:::i;5582:259::-;5651:6;5704:2;5692:9;5683:7;5679:23;5675:32;5672:2;;;5725:6;5717;5710:22;5672:2;5762:9;5756:16;5781:30;5805:5;5781:30;:::i;5846:480::-;5915:6;5968:2;5956:9;5947:7;5943:23;5939:32;5936:2;;;5989:6;5981;5974:22;5936:2;6034:9;6021:23;6067:18;6059:6;6056:30;6053:2;;;6104:6;6096;6089:22;6053:2;6132:22;;6185:4;6177:13;;6173:27;-1:-1:-1;6163:2:1;;6219:6;6211;6204:22;6163:2;6247:73;6312:7;6307:2;6294:16;6289:2;6285;6281:11;6247:73;:::i;6331:190::-;6390:6;6443:2;6431:9;6422:7;6418:23;6414:32;6411:2;;;6464:6;6456;6449:22;6411:2;-1:-1:-1;6492:23:1;;6401:120;-1:-1:-1;6401:120:1:o;6526:258::-;6594:6;6602;6655:2;6643:9;6634:7;6630:23;6626:32;6623:2;;;6676:6;6668;6661:22;6623:2;-1:-1:-1;;6704:23:1;;;6774:2;6759:18;;;6746:32;;-1:-1:-1;6613:171:1:o;6789:257::-;6830:3;6868:5;6862:12;6895:6;6890:3;6883:19;6911:63;6967:6;6960:4;6955:3;6951:14;6944:4;6937:5;6933:16;6911:63;:::i;:::-;7028:2;7007:15;-1:-1:-1;;7003:29:1;6994:39;;;;7035:4;6990:50;;6838:208;-1:-1:-1;;6838:208:1:o;7051:1531::-;7275:3;7313:6;7307:13;7339:4;7352:51;7396:6;7391:3;7386:2;7378:6;7374:15;7352:51;:::i;:::-;7466:13;;7425:16;;;;7488:55;7466:13;7425:16;7510:15;;;7488:55;:::i;:::-;7634:13;;7565:20;;;7605:3;;7694:1;7716:18;;;;7769;;;;7796:2;;7874:4;7864:8;7860:19;7848:31;;7796:2;7937;7927:8;7924:16;7904:18;7901:40;7898:2;;;-1:-1:-1;;;7964:33:1;;8020:4;8017:1;8010:15;8050:4;7971:3;8038:17;7898:2;8081:18;8108:110;;;;8232:1;8227:330;;;;8074:483;;8108:110;-1:-1:-1;;8143:24:1;;8129:39;;8188:20;;;;-1:-1:-1;8108:110:1;;8227:330;23434:4;23453:17;;;23503:4;23487:21;;8322:3;8338:169;8352:8;8349:1;8346:15;8338:169;;;8434:14;;8419:13;;;8412:37;8477:16;;;;8369:10;;8338:169;;;8342:3;;8538:8;8531:5;8527:20;8520:27;;8074:483;-1:-1:-1;8573:3:1;;7283:1299;-1:-1:-1;;;;;;;;;;;7283:1299:1:o;8795:488::-;-1:-1:-1;;;;;9064:15:1;;;9046:34;;9116:15;;9111:2;9096:18;;9089:43;9163:2;9148:18;;9141:34;;;9211:3;9206:2;9191:18;;9184:31;;;8989:4;;9232:45;;9257:19;;9249:6;9232:45;:::i;:::-;9224:53;8998:285;-1:-1:-1;;;;;;8998:285:1:o;9917:635::-;10088:2;10140:21;;;10210:13;;10113:18;;;10232:22;;;10059:4;;10088:2;10311:15;;;;10285:2;10270:18;;;10059:4;10357:169;10371:6;10368:1;10365:13;10357:169;;;10432:13;;10420:26;;10501:15;;;;10466:12;;;;10393:1;10386:9;10357:169;;;-1:-1:-1;10543:3:1;;10068:484;-1:-1:-1;;;;;;10068:484:1:o;10956:219::-;11105:2;11094:9;11087:21;11068:4;11125:44;11165:2;11154:9;11150:18;11142:6;11125:44;:::i;12282:414::-;12484:2;12466:21;;;12523:2;12503:18;;;12496:30;12562:34;12557:2;12542:18;;12535:62;-1:-1:-1;;;12628:2:1;12613:18;;12606:48;12686:3;12671:19;;12456:240::o;12701:408::-;12903:2;12885:21;;;12942:2;12922:18;;;12915:30;12981:34;12976:2;12961:18;;12954:62;-1:-1:-1;;;13047:2:1;13032:18;;13025:42;13099:3;13084:19;;12875:234::o;18589:356::-;18791:2;18773:21;;;18810:18;;;18803:30;18869:34;18864:2;18849:18;;18842:62;18936:2;18921:18;;18763:182::o;20522:413::-;20724:2;20706:21;;;20763:2;20743:18;;;20736:30;20802:34;20797:2;20782:18;;20775:62;-1:-1:-1;;;20868:2:1;20853:18;;20846:47;20925:3;20910:19;;20696:239::o;23519:128::-;23559:3;23590:1;23586:6;23583:1;23580:13;23577:2;;;23596:18;;:::i;:::-;-1:-1:-1;23632:9:1;;23567:80::o;23652:120::-;23692:1;23718;23708:2;;23723:18;;:::i;:::-;-1:-1:-1;23757:9:1;;23698:74::o;23777:168::-;23817:7;23883:1;23879;23875:6;23871:14;23868:1;23865:21;23860:1;23853:9;23846:17;23842:45;23839:2;;;23890:18;;:::i;:::-;-1:-1:-1;23930:9:1;;23829:116::o;23950:125::-;23990:4;24018:1;24015;24012:8;24009:2;;;24023:18;;:::i;:::-;-1:-1:-1;24060:9:1;;23999:76::o;24080:258::-;24152:1;24162:113;24176:6;24173:1;24170:13;24162:113;;;24252:11;;;24246:18;24233:11;;;24226:39;24198:2;24191:10;24162:113;;;24293:6;24290:1;24287:13;24284:2;;;-1:-1:-1;;24328:1:1;24310:16;;24303:27;24133:205::o;24343:380::-;24422:1;24418:12;;;;24465;;;24486:2;;24540:4;24532:6;24528:17;24518:27;;24486:2;24593;24585:6;24582:14;24562:18;24559:38;24556:2;;;24639:10;24634:3;24630:20;24627:1;24620:31;24674:4;24671:1;24664:15;24702:4;24699:1;24692:15;24556:2;;24398:325;;;:::o;24728:135::-;24767:3;-1:-1:-1;;24788:17:1;;24785:2;;;24808:18;;:::i;:::-;-1:-1:-1;24855:1:1;24844:13;;24775:88::o;24868:112::-;24900:1;24926;24916:2;;24931:18;;:::i;:::-;-1:-1:-1;24965:9:1;;24906:74::o;24985:127::-;25046:10;25041:3;25037:20;25034:1;25027:31;25077:4;25074:1;25067:15;25101:4;25098:1;25091:15;25117:127;25178:10;25173:3;25169:20;25166:1;25159:31;25209:4;25206:1;25199:15;25233:4;25230:1;25223:15;25249:127;25310:10;25305:3;25301:20;25298:1;25291:31;25341:4;25338:1;25331:15;25365:4;25362:1;25355:15;25381:131;-1:-1:-1;;;;;25456:31:1;;25446:42;;25436:2;;25502:1;25499;25492:12;25517:131;-1:-1:-1;;;;;;25591:32:1;;25581:43;;25571:2;;25638:1;25635;25628:12

Swarm Source

ipfs://53d7cc8832122aa5a40f968349b724934ab9518f834386dce2e3493b455a5758
Loading...
Loading
Loading...
Loading
[ 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.