ETH Price: $3,177.55 (-7.89%)
Gas: 4 Gwei

Token

Decrypt Culture Club: Founder’s Pass (DCCF)
 

Overview

Max Total Supply

19 DCCF

Holders

19

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jtt.eth
Balance
1 DCCF
0x36c488771b5ee5485f83d8b9e51ebf26cc587f28
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:
CultureClub

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : CultureClub.sol
// SPDX-License-Identifier: MIT

// This contract is used for the Culture Club NFT

pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract CultureClub is ERC721, Ownable {
    /*///////////////////////////////////////////////////////////////
                            TOKEN STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 public totalSupply;
    uint256 public tokenPrice;
    string public _tokenUri;
    bool public saleIsActive;

    mapping(address => bool) public friendsList;
    mapping(address => bool) public friendsMinted;

    /*///////////////////////////////////////////////////////////////
                              CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(
        string memory name,
        string memory symbol,
        string memory tokenUri,
        uint256 _tokenPrice
    ) ERC721(name, symbol) {
        _tokenUri = tokenUri;
        tokenPrice = _tokenPrice;
        saleIsActive = false;
    }

    /*///////////////////////////////////////////////////////////////
                            TOKEN LOGIC
    //////////////////////////////////////////////////////////////*/

    function mint() external payable {
        require(saleIsActive, "Sale is not active");
        require(tokenPrice == msg.value, "Ether value sent is not correct");
        require(friendsList[_msgSender()], "Friends only");
        require(!friendsMinted[_msgSender()], "Friend already minted");
        unchecked {
            ++totalSupply;
        }
        friendsMinted[_msgSender()] = true;
        _safeMint(_msgSender(), totalSupply);
    }

    /*///////////////////////////////////////////////////////////////
                             UTILS
    //////////////////////////////////////////////////////////////*/

    function setTokenURI(string calldata newTokenUri) external onlyOwner {
        _tokenUri = newTokenUri;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return _tokenUri;
    }

    function setSaleIsActive(bool newState) public onlyOwner {
        saleIsActive = newState;
    }

    function addFriends(address[] calldata accounts) external onlyOwner {
        for (uint256 i; i < accounts.length; i++) {
            friendsList[accounts[i]] = true;
        }
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

File 2 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 4 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

File 5 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 6 of 11 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// 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 9 of 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 10 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 11 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"tokenUri","type":"string"},{"internalType":"uint256","name":"_tokenPrice","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_tokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"addFriends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"friendsList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"friendsMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newTokenUri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620037b3380380620037b3833981810160405281019062000037919062000428565b8383816000908051906020019062000051929190620001a0565b5080600190805190602001906200006a929190620001a0565b5050506200008d62000081620000d260201b60201c565b620000da60201b60201c565b8160099080519060200190620000a5929190620001a0565b50806008819055506000600a60006101000a81548160ff021916908315150217905550505050506200055c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ae9062000526565b90600052602060002090601f016020900481019282620001d257600085556200021e565b82601f10620001ed57805160ff19168380011785556200021e565b828001600101855582156200021e579182015b828111156200021d57825182559160200191906001019062000200565b5b5090506200022d919062000231565b5090565b5b808211156200024c57600081600090555060010162000232565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002b9826200026e565b810181811067ffffffffffffffff82111715620002db57620002da6200027f565b5b80604052505050565b6000620002f062000250565b9050620002fe8282620002ae565b919050565b600067ffffffffffffffff8211156200032157620003206200027f565b5b6200032c826200026e565b9050602081019050919050565b60005b83811015620003595780820151818401526020810190506200033c565b8381111562000369576000848401525b50505050565b600062000386620003808462000303565b620002e4565b905082815260208101848484011115620003a557620003a462000269565b5b620003b284828562000339565b509392505050565b600082601f830112620003d257620003d162000264565b5b8151620003e48482602086016200036f565b91505092915050565b6000819050919050565b6200040281620003ed565b81146200040e57600080fd5b50565b6000815190506200042281620003f7565b92915050565b600080600080608085870312156200044557620004446200025a565b5b600085015167ffffffffffffffff8111156200046657620004656200025f565b5b6200047487828801620003ba565b945050602085015167ffffffffffffffff8111156200049857620004976200025f565b5b620004a687828801620003ba565b935050604085015167ffffffffffffffff811115620004ca57620004c96200025f565b5b620004d887828801620003ba565b9250506060620004eb8782880162000411565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200053f57607f821691505b60208210811415620005565762000555620004f7565b5b50919050565b613247806200056c6000396000f3fe60806040526004361061019c5760003560e01c806378aa224b116100ec578063c87b56dd1161008a578063e7404ba611610064578063e7404ba614610591578063e985e9c5146105ce578063eb8d24441461060b578063f2fde38b146106365761019c565b8063c87b56dd14610500578063df6552b91461053d578063e0df5b6f146105685761019c565b806395d89b41116100c657806395d89b411461045a578063a00d7c2a14610485578063a22cb465146104ae578063b88d4fde146104d75761019c565b806378aa224b146103c75780637ff9b596146104045780638da5cb5b1461042f5761019c565b806318160ddd1161015957806342842e0e1161013357806342842e0e1461030d5780636352211e1461033657806370a0823114610373578063715018a6146103b05761019c565b806318160ddd146102a257806323b872dd146102cd5780633ccfd60b146102f65761019c565b806301ffc9a7146101a157806302c88989146101de57806306fdde0314610207578063081812fc14610232578063095ea7b31461026f5780631249c58b14610298575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190611fda565b61065f565b6040516101d59190612022565b60405180910390f35b3480156101ea57600080fd5b5061020560048036038101906102009190612069565b610741565b005b34801561021357600080fd5b5061021c610766565b604051610229919061212f565b60405180910390f35b34801561023e57600080fd5b5061025960048036038101906102549190612187565b6107f8565b60405161026691906121f5565b60405180910390f35b34801561027b57600080fd5b506102966004803603810190610291919061223c565b61083e565b005b6102a0610956565b005b3480156102ae57600080fd5b506102b7610b94565b6040516102c4919061228b565b60405180910390f35b3480156102d957600080fd5b506102f460048036038101906102ef91906122a6565b610b9a565b005b34801561030257600080fd5b5061030b610bfa565b005b34801561031957600080fd5b50610334600480360381019061032f91906122a6565b610c51565b005b34801561034257600080fd5b5061035d60048036038101906103589190612187565b610c71565b60405161036a91906121f5565b60405180910390f35b34801561037f57600080fd5b5061039a600480360381019061039591906122f9565b610d23565b6040516103a7919061228b565b60405180910390f35b3480156103bc57600080fd5b506103c5610ddb565b005b3480156103d357600080fd5b506103ee60048036038101906103e991906122f9565b610def565b6040516103fb9190612022565b60405180910390f35b34801561041057600080fd5b50610419610e0f565b604051610426919061228b565b60405180910390f35b34801561043b57600080fd5b50610444610e15565b60405161045191906121f5565b60405180910390f35b34801561046657600080fd5b5061046f610e3f565b60405161047c919061212f565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a7919061238b565b610ed1565b005b3480156104ba57600080fd5b506104d560048036038101906104d091906123d8565b610f7e565b005b3480156104e357600080fd5b506104fe60048036038101906104f99190612548565b610f94565b005b34801561050c57600080fd5b5061052760048036038101906105229190612187565b610ff6565b604051610534919061212f565b60405180910390f35b34801561054957600080fd5b506105526110d2565b60405161055f919061212f565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190612621565b611160565b005b34801561059d57600080fd5b506105b860048036038101906105b391906122f9565b61117e565b6040516105c59190612022565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f0919061266e565b61119e565b6040516106029190612022565b60405180910390f35b34801561061757600080fd5b50610620611232565b60405161062d9190612022565b60405180910390f35b34801561064257600080fd5b5061065d600480360381019061065891906122f9565b611245565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073a5750610739826112c9565b5b9050919050565b610749611333565b80600a60006101000a81548160ff02191690831515021790555050565b606060008054610775906126dd565b80601f01602080910402602001604051908101604052809291908181526020018280546107a1906126dd565b80156107ee5780601f106107c3576101008083540402835291602001916107ee565b820191906000526020600020905b8154815290600101906020018083116107d157829003601f168201915b5050505050905090565b6000610803826113b1565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084982610c71565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b190612781565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108d96113fc565b73ffffffffffffffffffffffffffffffffffffffff1614806109085750610907816109026113fc565b61119e565b5b610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90612813565b60405180910390fd5b6109518383611404565b505050565b600a60009054906101000a900460ff166109a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099c9061287f565b60405180910390fd5b34600854146109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e0906128eb565b60405180910390fd5b600b60006109f56113fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7390612957565b60405180910390fd5b600c6000610a886113fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b07906129c3565b60405180910390fd5b600760008154600101919050819055506001600c6000610b2e6113fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610b92610b8a6113fc565b6007546114bd565b565b60075481565b610bab610ba56113fc565b826114db565b610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be190612a55565b60405180910390fd5b610bf5838383611570565b505050565b610c02611333565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c4d573d6000803e3d6000fd5b5050565b610c6c83838360405180602001604052806000815250610f94565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190612ac1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b90612b53565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610de3611333565b610ded60006117d7565b565b600c6020528060005260406000206000915054906101000a900460ff1681565b60085481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e4e906126dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7a906126dd565b8015610ec75780601f10610e9c57610100808354040283529160200191610ec7565b820191906000526020600020905b815481529060010190602001808311610eaa57829003601f168201915b5050505050905090565b610ed9611333565b60005b82829050811015610f79576001600b6000858585818110610f0057610eff612b73565b5b9050602002016020810190610f1591906122f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610f7190612bd1565b915050610edc565b505050565b610f90610f896113fc565b838361189d565b5050565b610fa5610f9f6113fc565b836114db565b610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb90612a55565b60405180910390fd5b610ff084848484611a0a565b50505050565b606061100182611a66565b611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790612c8c565b60405180910390fd5b6009805461104d906126dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611079906126dd565b80156110c65780601f1061109b576101008083540402835291602001916110c6565b820191906000526020600020905b8154815290600101906020018083116110a957829003601f168201915b50505050509050919050565b600980546110df906126dd565b80601f016020809104026020016040519081016040528092919081815260200182805461110b906126dd565b80156111585780601f1061112d57610100808354040283529160200191611158565b820191906000526020600020905b81548152906001019060200180831161113b57829003601f168201915b505050505081565b611168611333565b818160099190611179929190611ecb565b505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff1681565b61124d611333565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b490612d1e565b60405180910390fd5b6112c6816117d7565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61133b6113fc565b73ffffffffffffffffffffffffffffffffffffffff16611359610e15565b73ffffffffffffffffffffffffffffffffffffffff16146113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690612d8a565b60405180910390fd5b565b6113ba81611a66565b6113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090612ac1565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661147783610c71565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6114d7828260405180602001604052806000815250611ad2565b5050565b6000806114e783610c71565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115295750611528818561119e565b5b8061156757508373ffffffffffffffffffffffffffffffffffffffff1661154f846107f8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661159082610c71565b73ffffffffffffffffffffffffffffffffffffffff16146115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd90612e1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d90612eae565b60405180910390fd5b611661838383611b2d565b61166c600082611404565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116bc9190612ece565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117139190612f02565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117d2838383611b32565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390612fa4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119fd9190612022565b60405180910390a3505050565b611a15848484611570565b611a2184848484611b37565b611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790613036565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611adc8383611cce565b611ae96000848484611b37565b611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90613036565b60405180910390fd5b505050565b505050565b505050565b6000611b588473ffffffffffffffffffffffffffffffffffffffff16611ea8565b15611cc1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b816113fc565b8786866040518563ffffffff1660e01b8152600401611ba394939291906130ab565b602060405180830381600087803b158015611bbd57600080fd5b505af1925050508015611bee57506040513d601f19601f82011682018060405250810190611beb919061310c565b60015b611c71573d8060008114611c1e576040519150601f19603f3d011682016040523d82523d6000602084013e611c23565b606091505b50600081511415611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6090613036565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611cc6565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3590613185565b60405180910390fd5b611d4781611a66565b15611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e906131f1565b60405180910390fd5b611d9360008383611b2d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611de39190612f02565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ea460008383611b32565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611ed7906126dd565b90600052602060002090601f016020900481019282611ef95760008555611f40565b82601f10611f1257803560ff1916838001178555611f40565b82800160010185558215611f40579182015b82811115611f3f578235825591602001919060010190611f24565b5b509050611f4d9190611f51565b5090565b5b80821115611f6a576000816000905550600101611f52565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611fb781611f82565b8114611fc257600080fd5b50565b600081359050611fd481611fae565b92915050565b600060208284031215611ff057611fef611f78565b5b6000611ffe84828501611fc5565b91505092915050565b60008115159050919050565b61201c81612007565b82525050565b60006020820190506120376000830184612013565b92915050565b61204681612007565b811461205157600080fd5b50565b6000813590506120638161203d565b92915050565b60006020828403121561207f5761207e611f78565b5b600061208d84828501612054565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120d05780820151818401526020810190506120b5565b838111156120df576000848401525b50505050565b6000601f19601f8301169050919050565b600061210182612096565b61210b81856120a1565b935061211b8185602086016120b2565b612124816120e5565b840191505092915050565b6000602082019050818103600083015261214981846120f6565b905092915050565b6000819050919050565b61216481612151565b811461216f57600080fd5b50565b6000813590506121818161215b565b92915050565b60006020828403121561219d5761219c611f78565b5b60006121ab84828501612172565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121df826121b4565b9050919050565b6121ef816121d4565b82525050565b600060208201905061220a60008301846121e6565b92915050565b612219816121d4565b811461222457600080fd5b50565b60008135905061223681612210565b92915050565b6000806040838503121561225357612252611f78565b5b600061226185828601612227565b925050602061227285828601612172565b9150509250929050565b61228581612151565b82525050565b60006020820190506122a0600083018461227c565b92915050565b6000806000606084860312156122bf576122be611f78565b5b60006122cd86828701612227565b93505060206122de86828701612227565b92505060406122ef86828701612172565b9150509250925092565b60006020828403121561230f5761230e611f78565b5b600061231d84828501612227565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261234b5761234a612326565b5b8235905067ffffffffffffffff8111156123685761236761232b565b5b60208301915083602082028301111561238457612383612330565b5b9250929050565b600080602083850312156123a2576123a1611f78565b5b600083013567ffffffffffffffff8111156123c0576123bf611f7d565b5b6123cc85828601612335565b92509250509250929050565b600080604083850312156123ef576123ee611f78565b5b60006123fd85828601612227565b925050602061240e85828601612054565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612455826120e5565b810181811067ffffffffffffffff821117156124745761247361241d565b5b80604052505050565b6000612487611f6e565b9050612493828261244c565b919050565b600067ffffffffffffffff8211156124b3576124b261241d565b5b6124bc826120e5565b9050602081019050919050565b82818337600083830152505050565b60006124eb6124e684612498565b61247d565b90508281526020810184848401111561250757612506612418565b5b6125128482856124c9565b509392505050565b600082601f83011261252f5761252e612326565b5b813561253f8482602086016124d8565b91505092915050565b6000806000806080858703121561256257612561611f78565b5b600061257087828801612227565b945050602061258187828801612227565b935050604061259287828801612172565b925050606085013567ffffffffffffffff8111156125b3576125b2611f7d565b5b6125bf8782880161251a565b91505092959194509250565b60008083601f8401126125e1576125e0612326565b5b8235905067ffffffffffffffff8111156125fe576125fd61232b565b5b60208301915083600182028301111561261a57612619612330565b5b9250929050565b6000806020838503121561263857612637611f78565b5b600083013567ffffffffffffffff81111561265657612655611f7d565b5b612662858286016125cb565b92509250509250929050565b6000806040838503121561268557612684611f78565b5b600061269385828601612227565b92505060206126a485828601612227565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126f557607f821691505b60208210811415612709576127086126ae565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061276b6021836120a1565b91506127768261270f565b604082019050919050565b6000602082019050818103600083015261279a8161275e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006127fd603e836120a1565b9150612808826127a1565b604082019050919050565b6000602082019050818103600083015261282c816127f0565b9050919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b60006128696012836120a1565b915061287482612833565b602082019050919050565b600060208201905081810360008301526128988161285c565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b60006128d5601f836120a1565b91506128e08261289f565b602082019050919050565b60006020820190508181036000830152612904816128c8565b9050919050565b7f467269656e6473206f6e6c790000000000000000000000000000000000000000600082015250565b6000612941600c836120a1565b915061294c8261290b565b602082019050919050565b6000602082019050818103600083015261297081612934565b9050919050565b7f467269656e6420616c7265616479206d696e7465640000000000000000000000600082015250565b60006129ad6015836120a1565b91506129b882612977565b602082019050919050565b600060208201905081810360008301526129dc816129a0565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612a3f602e836120a1565b9150612a4a826129e3565b604082019050919050565b60006020820190508181036000830152612a6e81612a32565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612aab6018836120a1565b9150612ab682612a75565b602082019050919050565b60006020820190508181036000830152612ada81612a9e565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612b3d6029836120a1565b9150612b4882612ae1565b604082019050919050565b60006020820190508181036000830152612b6c81612b30565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bdc82612151565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c0f57612c0e612ba2565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612c76602f836120a1565b9150612c8182612c1a565b604082019050919050565b60006020820190508181036000830152612ca581612c69565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d086026836120a1565b9150612d1382612cac565b604082019050919050565b60006020820190508181036000830152612d3781612cfb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d746020836120a1565b9150612d7f82612d3e565b602082019050919050565b60006020820190508181036000830152612da381612d67565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612e066025836120a1565b9150612e1182612daa565b604082019050919050565b60006020820190508181036000830152612e3581612df9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e986024836120a1565b9150612ea382612e3c565b604082019050919050565b60006020820190508181036000830152612ec781612e8b565b9050919050565b6000612ed982612151565b9150612ee483612151565b925082821015612ef757612ef6612ba2565b5b828203905092915050565b6000612f0d82612151565b9150612f1883612151565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f4d57612f4c612ba2565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612f8e6019836120a1565b9150612f9982612f58565b602082019050919050565b60006020820190508181036000830152612fbd81612f81565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006130206032836120a1565b915061302b82612fc4565b604082019050919050565b6000602082019050818103600083015261304f81613013565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061307d82613056565b6130878185613061565b93506130978185602086016120b2565b6130a0816120e5565b840191505092915050565b60006080820190506130c060008301876121e6565b6130cd60208301866121e6565b6130da604083018561227c565b81810360608301526130ec8184613072565b905095945050505050565b60008151905061310681611fae565b92915050565b60006020828403121561312257613121611f78565b5b6000613130848285016130f7565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061316f6020836120a1565b915061317a82613139565b602082019050919050565b6000602082019050818103600083015261319e81613162565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006131db601c836120a1565b91506131e6826131a5565b602082019050919050565b6000602082019050818103600083015261320a816131ce565b905091905056fea264697066735822122056f87630837d5b4d8f7a2452e16bb2cc582c682aea94e1b26b5c0e89a7b6add764736f6c63430008090033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000026446563727970742043756c7475726520436c75623a20466f756e646572e280997320506173730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000444434346000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b726569687979706d32703478376c7274356d3775677266666972617a3365736769736d70726f686633743279326f7773697635337a6271000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806378aa224b116100ec578063c87b56dd1161008a578063e7404ba611610064578063e7404ba614610591578063e985e9c5146105ce578063eb8d24441461060b578063f2fde38b146106365761019c565b8063c87b56dd14610500578063df6552b91461053d578063e0df5b6f146105685761019c565b806395d89b41116100c657806395d89b411461045a578063a00d7c2a14610485578063a22cb465146104ae578063b88d4fde146104d75761019c565b806378aa224b146103c75780637ff9b596146104045780638da5cb5b1461042f5761019c565b806318160ddd1161015957806342842e0e1161013357806342842e0e1461030d5780636352211e1461033657806370a0823114610373578063715018a6146103b05761019c565b806318160ddd146102a257806323b872dd146102cd5780633ccfd60b146102f65761019c565b806301ffc9a7146101a157806302c88989146101de57806306fdde0314610207578063081812fc14610232578063095ea7b31461026f5780631249c58b14610298575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190611fda565b61065f565b6040516101d59190612022565b60405180910390f35b3480156101ea57600080fd5b5061020560048036038101906102009190612069565b610741565b005b34801561021357600080fd5b5061021c610766565b604051610229919061212f565b60405180910390f35b34801561023e57600080fd5b5061025960048036038101906102549190612187565b6107f8565b60405161026691906121f5565b60405180910390f35b34801561027b57600080fd5b506102966004803603810190610291919061223c565b61083e565b005b6102a0610956565b005b3480156102ae57600080fd5b506102b7610b94565b6040516102c4919061228b565b60405180910390f35b3480156102d957600080fd5b506102f460048036038101906102ef91906122a6565b610b9a565b005b34801561030257600080fd5b5061030b610bfa565b005b34801561031957600080fd5b50610334600480360381019061032f91906122a6565b610c51565b005b34801561034257600080fd5b5061035d60048036038101906103589190612187565b610c71565b60405161036a91906121f5565b60405180910390f35b34801561037f57600080fd5b5061039a600480360381019061039591906122f9565b610d23565b6040516103a7919061228b565b60405180910390f35b3480156103bc57600080fd5b506103c5610ddb565b005b3480156103d357600080fd5b506103ee60048036038101906103e991906122f9565b610def565b6040516103fb9190612022565b60405180910390f35b34801561041057600080fd5b50610419610e0f565b604051610426919061228b565b60405180910390f35b34801561043b57600080fd5b50610444610e15565b60405161045191906121f5565b60405180910390f35b34801561046657600080fd5b5061046f610e3f565b60405161047c919061212f565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a7919061238b565b610ed1565b005b3480156104ba57600080fd5b506104d560048036038101906104d091906123d8565b610f7e565b005b3480156104e357600080fd5b506104fe60048036038101906104f99190612548565b610f94565b005b34801561050c57600080fd5b5061052760048036038101906105229190612187565b610ff6565b604051610534919061212f565b60405180910390f35b34801561054957600080fd5b506105526110d2565b60405161055f919061212f565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190612621565b611160565b005b34801561059d57600080fd5b506105b860048036038101906105b391906122f9565b61117e565b6040516105c59190612022565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f0919061266e565b61119e565b6040516106029190612022565b60405180910390f35b34801561061757600080fd5b50610620611232565b60405161062d9190612022565b60405180910390f35b34801561064257600080fd5b5061065d600480360381019061065891906122f9565b611245565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073a5750610739826112c9565b5b9050919050565b610749611333565b80600a60006101000a81548160ff02191690831515021790555050565b606060008054610775906126dd565b80601f01602080910402602001604051908101604052809291908181526020018280546107a1906126dd565b80156107ee5780601f106107c3576101008083540402835291602001916107ee565b820191906000526020600020905b8154815290600101906020018083116107d157829003601f168201915b5050505050905090565b6000610803826113b1565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084982610c71565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b190612781565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108d96113fc565b73ffffffffffffffffffffffffffffffffffffffff1614806109085750610907816109026113fc565b61119e565b5b610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90612813565b60405180910390fd5b6109518383611404565b505050565b600a60009054906101000a900460ff166109a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099c9061287f565b60405180910390fd5b34600854146109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e0906128eb565b60405180910390fd5b600b60006109f56113fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7390612957565b60405180910390fd5b600c6000610a886113fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b07906129c3565b60405180910390fd5b600760008154600101919050819055506001600c6000610b2e6113fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610b92610b8a6113fc565b6007546114bd565b565b60075481565b610bab610ba56113fc565b826114db565b610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be190612a55565b60405180910390fd5b610bf5838383611570565b505050565b610c02611333565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c4d573d6000803e3d6000fd5b5050565b610c6c83838360405180602001604052806000815250610f94565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190612ac1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b90612b53565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610de3611333565b610ded60006117d7565b565b600c6020528060005260406000206000915054906101000a900460ff1681565b60085481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e4e906126dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7a906126dd565b8015610ec75780601f10610e9c57610100808354040283529160200191610ec7565b820191906000526020600020905b815481529060010190602001808311610eaa57829003601f168201915b5050505050905090565b610ed9611333565b60005b82829050811015610f79576001600b6000858585818110610f0057610eff612b73565b5b9050602002016020810190610f1591906122f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610f7190612bd1565b915050610edc565b505050565b610f90610f896113fc565b838361189d565b5050565b610fa5610f9f6113fc565b836114db565b610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb90612a55565b60405180910390fd5b610ff084848484611a0a565b50505050565b606061100182611a66565b611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790612c8c565b60405180910390fd5b6009805461104d906126dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611079906126dd565b80156110c65780601f1061109b576101008083540402835291602001916110c6565b820191906000526020600020905b8154815290600101906020018083116110a957829003601f168201915b50505050509050919050565b600980546110df906126dd565b80601f016020809104026020016040519081016040528092919081815260200182805461110b906126dd565b80156111585780601f1061112d57610100808354040283529160200191611158565b820191906000526020600020905b81548152906001019060200180831161113b57829003601f168201915b505050505081565b611168611333565b818160099190611179929190611ecb565b505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff1681565b61124d611333565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b490612d1e565b60405180910390fd5b6112c6816117d7565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61133b6113fc565b73ffffffffffffffffffffffffffffffffffffffff16611359610e15565b73ffffffffffffffffffffffffffffffffffffffff16146113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690612d8a565b60405180910390fd5b565b6113ba81611a66565b6113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090612ac1565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661147783610c71565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6114d7828260405180602001604052806000815250611ad2565b5050565b6000806114e783610c71565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115295750611528818561119e565b5b8061156757508373ffffffffffffffffffffffffffffffffffffffff1661154f846107f8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661159082610c71565b73ffffffffffffffffffffffffffffffffffffffff16146115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd90612e1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d90612eae565b60405180910390fd5b611661838383611b2d565b61166c600082611404565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116bc9190612ece565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117139190612f02565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117d2838383611b32565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390612fa4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119fd9190612022565b60405180910390a3505050565b611a15848484611570565b611a2184848484611b37565b611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790613036565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611adc8383611cce565b611ae96000848484611b37565b611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90613036565b60405180910390fd5b505050565b505050565b505050565b6000611b588473ffffffffffffffffffffffffffffffffffffffff16611ea8565b15611cc1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b816113fc565b8786866040518563ffffffff1660e01b8152600401611ba394939291906130ab565b602060405180830381600087803b158015611bbd57600080fd5b505af1925050508015611bee57506040513d601f19601f82011682018060405250810190611beb919061310c565b60015b611c71573d8060008114611c1e576040519150601f19603f3d011682016040523d82523d6000602084013e611c23565b606091505b50600081511415611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6090613036565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611cc6565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3590613185565b60405180910390fd5b611d4781611a66565b15611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e906131f1565b60405180910390fd5b611d9360008383611b2d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611de39190612f02565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ea460008383611b32565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611ed7906126dd565b90600052602060002090601f016020900481019282611ef95760008555611f40565b82601f10611f1257803560ff1916838001178555611f40565b82800160010185558215611f40579182015b82811115611f3f578235825591602001919060010190611f24565b5b509050611f4d9190611f51565b5090565b5b80821115611f6a576000816000905550600101611f52565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611fb781611f82565b8114611fc257600080fd5b50565b600081359050611fd481611fae565b92915050565b600060208284031215611ff057611fef611f78565b5b6000611ffe84828501611fc5565b91505092915050565b60008115159050919050565b61201c81612007565b82525050565b60006020820190506120376000830184612013565b92915050565b61204681612007565b811461205157600080fd5b50565b6000813590506120638161203d565b92915050565b60006020828403121561207f5761207e611f78565b5b600061208d84828501612054565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120d05780820151818401526020810190506120b5565b838111156120df576000848401525b50505050565b6000601f19601f8301169050919050565b600061210182612096565b61210b81856120a1565b935061211b8185602086016120b2565b612124816120e5565b840191505092915050565b6000602082019050818103600083015261214981846120f6565b905092915050565b6000819050919050565b61216481612151565b811461216f57600080fd5b50565b6000813590506121818161215b565b92915050565b60006020828403121561219d5761219c611f78565b5b60006121ab84828501612172565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121df826121b4565b9050919050565b6121ef816121d4565b82525050565b600060208201905061220a60008301846121e6565b92915050565b612219816121d4565b811461222457600080fd5b50565b60008135905061223681612210565b92915050565b6000806040838503121561225357612252611f78565b5b600061226185828601612227565b925050602061227285828601612172565b9150509250929050565b61228581612151565b82525050565b60006020820190506122a0600083018461227c565b92915050565b6000806000606084860312156122bf576122be611f78565b5b60006122cd86828701612227565b93505060206122de86828701612227565b92505060406122ef86828701612172565b9150509250925092565b60006020828403121561230f5761230e611f78565b5b600061231d84828501612227565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261234b5761234a612326565b5b8235905067ffffffffffffffff8111156123685761236761232b565b5b60208301915083602082028301111561238457612383612330565b5b9250929050565b600080602083850312156123a2576123a1611f78565b5b600083013567ffffffffffffffff8111156123c0576123bf611f7d565b5b6123cc85828601612335565b92509250509250929050565b600080604083850312156123ef576123ee611f78565b5b60006123fd85828601612227565b925050602061240e85828601612054565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612455826120e5565b810181811067ffffffffffffffff821117156124745761247361241d565b5b80604052505050565b6000612487611f6e565b9050612493828261244c565b919050565b600067ffffffffffffffff8211156124b3576124b261241d565b5b6124bc826120e5565b9050602081019050919050565b82818337600083830152505050565b60006124eb6124e684612498565b61247d565b90508281526020810184848401111561250757612506612418565b5b6125128482856124c9565b509392505050565b600082601f83011261252f5761252e612326565b5b813561253f8482602086016124d8565b91505092915050565b6000806000806080858703121561256257612561611f78565b5b600061257087828801612227565b945050602061258187828801612227565b935050604061259287828801612172565b925050606085013567ffffffffffffffff8111156125b3576125b2611f7d565b5b6125bf8782880161251a565b91505092959194509250565b60008083601f8401126125e1576125e0612326565b5b8235905067ffffffffffffffff8111156125fe576125fd61232b565b5b60208301915083600182028301111561261a57612619612330565b5b9250929050565b6000806020838503121561263857612637611f78565b5b600083013567ffffffffffffffff81111561265657612655611f7d565b5b612662858286016125cb565b92509250509250929050565b6000806040838503121561268557612684611f78565b5b600061269385828601612227565b92505060206126a485828601612227565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126f557607f821691505b60208210811415612709576127086126ae565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061276b6021836120a1565b91506127768261270f565b604082019050919050565b6000602082019050818103600083015261279a8161275e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006127fd603e836120a1565b9150612808826127a1565b604082019050919050565b6000602082019050818103600083015261282c816127f0565b9050919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b60006128696012836120a1565b915061287482612833565b602082019050919050565b600060208201905081810360008301526128988161285c565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b60006128d5601f836120a1565b91506128e08261289f565b602082019050919050565b60006020820190508181036000830152612904816128c8565b9050919050565b7f467269656e6473206f6e6c790000000000000000000000000000000000000000600082015250565b6000612941600c836120a1565b915061294c8261290b565b602082019050919050565b6000602082019050818103600083015261297081612934565b9050919050565b7f467269656e6420616c7265616479206d696e7465640000000000000000000000600082015250565b60006129ad6015836120a1565b91506129b882612977565b602082019050919050565b600060208201905081810360008301526129dc816129a0565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612a3f602e836120a1565b9150612a4a826129e3565b604082019050919050565b60006020820190508181036000830152612a6e81612a32565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612aab6018836120a1565b9150612ab682612a75565b602082019050919050565b60006020820190508181036000830152612ada81612a9e565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612b3d6029836120a1565b9150612b4882612ae1565b604082019050919050565b60006020820190508181036000830152612b6c81612b30565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bdc82612151565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c0f57612c0e612ba2565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612c76602f836120a1565b9150612c8182612c1a565b604082019050919050565b60006020820190508181036000830152612ca581612c69565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d086026836120a1565b9150612d1382612cac565b604082019050919050565b60006020820190508181036000830152612d3781612cfb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d746020836120a1565b9150612d7f82612d3e565b602082019050919050565b60006020820190508181036000830152612da381612d67565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612e066025836120a1565b9150612e1182612daa565b604082019050919050565b60006020820190508181036000830152612e3581612df9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e986024836120a1565b9150612ea382612e3c565b604082019050919050565b60006020820190508181036000830152612ec781612e8b565b9050919050565b6000612ed982612151565b9150612ee483612151565b925082821015612ef757612ef6612ba2565b5b828203905092915050565b6000612f0d82612151565b9150612f1883612151565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f4d57612f4c612ba2565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612f8e6019836120a1565b9150612f9982612f58565b602082019050919050565b60006020820190508181036000830152612fbd81612f81565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006130206032836120a1565b915061302b82612fc4565b604082019050919050565b6000602082019050818103600083015261304f81613013565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061307d82613056565b6130878185613061565b93506130978185602086016120b2565b6130a0816120e5565b840191505092915050565b60006080820190506130c060008301876121e6565b6130cd60208301866121e6565b6130da604083018561227c565b81810360608301526130ec8184613072565b905095945050505050565b60008151905061310681611fae565b92915050565b60006020828403121561312257613121611f78565b5b6000613130848285016130f7565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061316f6020836120a1565b915061317a82613139565b602082019050919050565b6000602082019050818103600083015261319e81613162565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006131db601c836120a1565b91506131e6826131a5565b602082019050919050565b6000602082019050818103600083015261320a816131ce565b905091905056fea264697066735822122056f87630837d5b4d8f7a2452e16bb2cc582c682aea94e1b26b5c0e89a7b6add764736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000026446563727970742043756c7475726520436c75623a20466f756e646572e280997320506173730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000444434346000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b726569687979706d32703478376c7274356d3775677266666972617a3365736769736d70726f686633743279326f7773697635337a6271000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Decrypt Culture Club: Founder’s Pass
Arg [1] : symbol (string): DCCF
Arg [2] : tokenUri (string): ipfs://bafkreihyypm2p4x7lrt5m7ugrffiraz3esgismprohf3t2y2owsiv53zbq
Arg [3] : _tokenPrice (uint256): 1000000000000000000

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [5] : 446563727970742043756c7475726520436c75623a20466f756e646572e28099
Arg [6] : 7320506173730000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 4443434600000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [10] : 697066733a2f2f6261666b726569687979706d32703478376c7274356d377567
Arg [11] : 7266666972617a3365736769736d70726f686633743279326f7773697635337a
Arg [12] : 6271000000000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.