ETH Price: $3,471.85 (+6.01%)
Gas: 6 Gwei

Token

scorpio.world (SCORPIO)
 

Overview

Max Total Supply

1,092 SCORPIO

Holders

366

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SCORPIO
0xe4fbef3dd6ed59b1ce2b7627c366bd822f4d34fd
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:
ScorpioNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : ScorpioNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./interfaces/IScorpioNFT.sol";

// Proxy contracts for OpenSea compatibility
contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

// ERC721 supporting multiple token sets
contract ScorpioNFT is IScorpioNFT, ERC721 {
    using SafeMath for uint32;
    using SafeMath for uint;
    using Strings for uint;

    uint32 public constant MAX_ROYALTY_FEE = 1000; // 100.0%

    mapping(uint => uint) public override internalTokenToProjectId;
    mapping(uint => uint) public override internalTokenToProjectTokenId;
    mapping(uint => uint) public override projectToCurrentTokenId;
    mapping(uint => uint) public override projectToMaxTokenId;
    mapping(uint => uint) public override projectToMintPrice;
    mapping(uint => address) public override projectToRoyaltyAddress;
    mapping(uint => uint) public override projectToRoyaltyFee;
    mapping(uint => uint) public override projectToRoyalties;
    mapping(uint => uint) public override projectToProceeds;
    mapping(uint => bool) public override projectToPreMint;
    mapping(uint => string) private _baseURIs;
    mapping(uint => string) private _tokenURIs;

    address public override owner;
    address public override proxyRegistryAddress;
    uint private _internalTokenId = 0;

    modifier onlyOwner() {
        require(msg.sender == owner, "ONLY_OWNER");
        _;
    }

    /**
    * @dev Create the NFT contract from name, symbol, owner
    */
    constructor(
        string memory name_,
        string memory symbol_,
        address owner_,
        address proxy_
    ) ERC721(name_, symbol_) {
        require(owner_ != address(0), "ZERO_OWNER");
        owner = owner_;
        proxyRegistryAddress = proxy_;
    }

    function totalSupply() external view override returns (uint) {
        return _internalTokenId;
    }

    function setupProject(
        uint projectId_,
        uint maxTokenId_,
        uint mintPrice_,
        uint royaltyFee_,
        address royaltyAddress_,
        string memory baseURI_
    ) onlyOwner external override {
        require(projectToMaxTokenId[projectId_] == 0, "PROJECT_ALREADY_SETUP");
        require(maxTokenId_ > 0, "ZERO_MAX_TOKEN_ID");
        require(royaltyFee_ <= MAX_ROYALTY_FEE, "MAX_ROYALTY_EXCEEDED");
        require(royaltyAddress_ != address(0), "ZERO_ROYALTY_ADDRESS");
        require(bytes(baseURI_).length > 0, "EMPTY_BASE_URI");
        projectToMaxTokenId[projectId_] = maxTokenId_;
        projectToMintPrice[projectId_] = mintPrice_;
        projectToRoyaltyFee[projectId_] = royaltyFee_;
        projectToRoyaltyAddress[projectId_] = royaltyAddress_;
        projectToPreMint[projectId_] = true;
        _baseURIs[projectId_] = baseURI_;
    }

    function disablePreMint(uint projectId_) onlyOwner external override {
        projectToPreMint[projectId_] = false;
    }

    function preMint(uint projectId_, uint amount_, address to_)
        onlyOwner external override {
        require(projectToMaxTokenId[projectId_] > 0, "INVALID_PROJECT");
        require(
            projectToCurrentTokenId[projectId_].add(amount_) <= projectToMaxTokenId[projectId_],
            "MAX_SUPPLY"
        );
        require(projectToPreMint[projectId_], "PREMINT_DISABLED");
        for (uint i = 0; i < amount_; i++) {
            uint newTokenId = _getNextTokenId();
            _mint(to_, newTokenId);
            _incrementTokenId(projectId_);
        }
        emit PreMint(projectId_, to_ , amount_);
    }

    /**
     * @dev calculates the next token ID based on value of _internalTokenId
     * @return uint for the next token ID
     */
    function _getNextTokenId() private view returns (uint) {
        return _internalTokenId.add(1);
    }

    /**
     * @dev increments the value of _internalTokenId and corresponding project token ID
     */
    function _incrementTokenId(uint projectId_) private {
        _internalTokenId = _internalTokenId.add(1);
        internalTokenToProjectId[_internalTokenId] = projectId_;
        internalTokenToProjectTokenId[_internalTokenId] = projectToCurrentTokenId[projectId_].add(1);
        projectToCurrentTokenId[projectId_] = internalTokenToProjectTokenId[_internalTokenId];
    }

    function tokenURI(uint tokenId_) public view override returns (string memory) {
        require(_exists(tokenId_), "ERC721Metadata: URI query for nonexistent token");

        if (bytes(_tokenURIs[tokenId_]).length > 0) {
            return _tokenURIs[tokenId_];
        }

        uint projectId = internalTokenToProjectId[tokenId_];
        uint tokenId = internalTokenToProjectTokenId[tokenId_];
        return string(abi.encodePacked(_baseURIs[projectId], tokenId.toString()));
    }

    function setTokenURI(uint tokenId_, string memory uri_) onlyOwner external {
        require(bytes(_tokenURIs[tokenId_]).length == 0, "URI_ALREADY_SET");
        require(bytes(uri_).length > 0, "URI_EMPTY");
        _tokenURIs[tokenId_] = uri_;
    }

    /**
     * Override isApprovedForAll to whitelist user"s OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner_, address operator_)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner_)) == operator_) {
            return true;
        }

        return super.isApprovedForAll(owner_, operator_);
    }

    /**
    * @dev Function to transfer sales proceeds to owner
    */
    function withdrawProceeds(uint projectId_) external override {
        payable(owner).transfer(projectToProceeds[projectId_]);
        emit WithdrawProceeds(projectId_, projectToProceeds[projectId_]);
        projectToProceeds[projectId_] = 0;
    }

    /**
    * @dev Function to transfer sales royalties to beneficiary
    */
    function withdrawRoyalties(uint projectId_) external override {
        payable(projectToRoyaltyAddress[projectId_]).transfer(projectToRoyalties[projectId_]);
        emit WithdrawRoyalties(projectId_, projectToRoyalties[projectId_]);
        projectToRoyalties[projectId_] = 0;
    }

    function mint(uint projectId_, address to_) external payable override returns (uint tokenId_) {
        require(projectToMaxTokenId[projectId_] > 0, "PROJECT_NOT_SETUP");
        require(projectToPreMint[projectId_] == false, "PREMINT_ENABLED");
        require(projectToCurrentTokenId[projectId_] < projectToMaxTokenId[projectId_], "MAX_SUPPLY_MINTED");
        uint mintPrice = projectToMintPrice[projectId_];
        require(msg.value >= mintPrice, "MINT_PRICE_NOT_MET");
        // Mint a new token to the recipient
        tokenId_ = _getNextTokenId();
        _mint(to_, tokenId_);
        _incrementTokenId(projectId_);
        // calculate royalties and tally up
        uint royaltyFee = mintPrice.mul(projectToRoyaltyFee[projectId_]).div(1000);
        projectToRoyalties[projectId_] = projectToRoyalties[projectId_].add(royaltyFee);
        // update proceeds
        projectToProceeds[projectId_] = projectToProceeds[projectId_].add(msg.value).sub(royaltyFee);
        emit Mint(projectId_, tokenId_, projectToCurrentTokenId[projectId_], mintPrice, to_);
    }
}

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

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: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 3 of 12 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

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

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 4 of 12 : IScorpioNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;

interface IScorpioNFT {
    event PreMint(uint indexed projectId_, address indexed to_, uint amount_);
    event WithdrawProceeds(uint indexed projectId_, uint amount_);
    event WithdrawRoyalties(uint indexed projectId_, uint amount_);
    event Mint(
        uint indexed projectId_,
        uint tokenId_,
        uint projectTokenId_,
        uint price_,
        address indexed to_
    );

    function totalSupply() external view returns (uint);
    function internalTokenToProjectId(uint tokenId_) external view returns (uint);
    function internalTokenToProjectTokenId(uint tokenId_) external view returns (uint);
    function projectToCurrentTokenId(uint projectId_) external view returns (uint);
    function projectToMaxTokenId(uint projectId_) external view returns (uint);
    function projectToMintPrice(uint projectId_) external view returns (uint);
    function projectToRoyaltyAddress(uint projectId_) external view returns (address);
    function projectToRoyaltyFee(uint projectId_) external view returns (uint);
    function projectToRoyalties(uint projectId_) external view returns (uint);
    function projectToProceeds(uint projectId_) external view returns (uint);
    function projectToPreMint(uint projectId_) external view returns (bool);
    function owner() external view returns (address);
    function proxyRegistryAddress() external view returns (address);

    function setupProject(
        uint projectId_,
        uint maxTokenId_,
        uint mintPrice_,
        uint royaltyFee_,
        address royaltyAddress_,
        string memory baseURI_
    ) external;
    function disablePreMint(uint projectId_) external;
    function preMint(uint projectId_, uint count_, address to_) external;
    function withdrawProceeds(uint projectId_) external;
    function withdrawRoyalties(uint projectId_) external;
    function mint(uint projectId_, address to_) external payable returns (uint);
}

File 5 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

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

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

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

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

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

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

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

File 6 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 7 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

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 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT

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
{
  "evmVersion": "berlin",
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"proxy_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"projectId_","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId_","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"projectTokenId_","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price_","type":"uint256"},{"indexed":true,"internalType":"address","name":"to_","type":"address"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"projectId_","type":"uint256"},{"indexed":true,"internalType":"address","name":"to_","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"PreMint","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"projectId_","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"WithdrawProceeds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"projectId_","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"WithdrawRoyalties","type":"event"},{"inputs":[],"name":"MAX_ROYALTY_FEE","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"projectId_","type":"uint256"}],"name":"disablePreMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"internalTokenToProjectId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"internalTokenToProjectTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"operator_","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"projectId_","type":"uint256"},{"internalType":"address","name":"to_","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"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":[{"internalType":"uint256","name":"projectId_","type":"uint256"},{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"address","name":"to_","type":"address"}],"name":"preMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"projectToCurrentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"projectToMaxTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"projectToMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"projectToPreMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"projectToProceeds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"projectToRoyalties","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"projectToRoyaltyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"projectToRoyaltyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"string","name":"uri_","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"projectId_","type":"uint256"},{"internalType":"uint256","name":"maxTokenId_","type":"uint256"},{"internalType":"uint256","name":"mintPrice_","type":"uint256"},{"internalType":"uint256","name":"royaltyFee_","type":"uint256"},{"internalType":"address","name":"royaltyAddress_","type":"address"},{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setupProject","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"uint256","name":"projectId_","type":"uint256"}],"name":"withdrawProceeds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"projectId_","type":"uint256"}],"name":"withdrawRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006014553480156200001657600080fd5b50604051620029013803806200290183398101604081905262000039916200025e565b83518490849062000052906000906020850190620000e8565b50805162000068906001906020840190620000e8565b5050506001600160a01b038216620000b35760405162461bcd60e51b815260206004820152600a6024820152692d22a927afa7aba722a960b11b604482015260640160405180910390fd5b601280546001600160a01b039384166001600160a01b03199182161790915560138054929093169116179055506200033d9050565b828054620000f690620002ea565b90600052602060002090601f0160209004810192826200011a576000855562000165565b82601f106200013557805160ff191683800117855562000165565b8280016001018555821562000165579182015b828111156200016557825182559160200191906001019062000148565b506200017392915062000177565b5090565b5b8082111562000173576000815560010162000178565b80516001600160a01b0381168114620001a657600080fd5b919050565b600082601f830112620001bc578081fd5b81516001600160401b0380821115620001d957620001d962000327565b604051601f8301601f19908116603f0116810190828211818310171562000204576200020462000327565b8160405283815260209250868385880101111562000220578485fd5b8491505b8382101562000243578582018301518183018401529082019062000224565b838211156200025457848385830101525b9695505050505050565b6000806000806080858703121562000274578384fd5b84516001600160401b03808211156200028b578586fd5b6200029988838901620001ab565b95506020870151915080821115620002af578485fd5b50620002be87828801620001ab565b935050620002cf604086016200018e565b9150620002df606086016200018e565b905092959194509250565b600181811c90821680620002ff57607f821691505b602082108114156200032157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6125b4806200034d6000396000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d578063b88d4fde116100a0578063e1bf3d951161006f578063e1bf3d9514610630578063e4fe235414610666578063e724e74914610693578063e985e9c5146106b3578063ea973a72146106d357600080fd5b8063b88d4fde146105b0578063c87b56dd146105d0578063cd7c0326146105f0578063d9f1aed91461061057600080fd5b806394bf804d116100dc57806394bf804d1461053b57806395d89b411461054e578063a1f47e9f14610563578063a22cb4651461059057600080fd5b80636352211e146104ae57806370a08231146104ce5780638102a039146104ee5780638da5cb5b1461051b57600080fd5b806323b872dd1161019057806342842e0e1161015f57806342842e0e146103f45780634326bae41461041457806347b0da8614610441578063564cf2381461046e5780635daa02ed1461048e57600080fd5b806323b872dd1461034a5780632bdaca9c1461036a5780632cb2527f146103975780633d24f380146103c757600080fd5b8063155be986116101cc578063155be986146102af578063162094c4146102ea57806317e1f82e1461030a57806318160ddd1461033557600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004612091565b6106f3565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610745565b60405161022a919061233c565b34801561026157600080fd5b506102756102703660046120e5565b6107d7565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004612066565b610871565b005b3480156102bb57600080fd5b506102dc6102ca3660046120e5565b600e6020526000908152604090205481565b60405190815260200161022a565b3480156102f657600080fd5b506102ad610305366004612121565b610987565b34801561031657600080fd5b506103206103e881565b60405163ffffffff909116815260200161022a565b34801561034157600080fd5b506014546102dc565b34801561035657600080fd5b506102ad610365366004611f78565b610a67565b34801561037657600080fd5b506102dc6103853660046120e5565b600a6020526000908152604090205481565b3480156103a357600080fd5b5061021e6103b23660046120e5565b600f6020526000908152604090205460ff1681565b3480156103d357600080fd5b506102dc6103e23660046120e5565b60076020526000908152604090205481565b34801561040057600080fd5b506102ad61040f366004611f78565b610a98565b34801561042057600080fd5b506102dc61042f3660046120e5565b60086020526000908152604090205481565b34801561044d57600080fd5b506102dc61045c3660046120e5565b600c6020526000908152604090205481565b34801561047a57600080fd5b506102ad61048936600461219e565b610ab3565b34801561049a57600080fd5b506102ad6104a93660046120e5565b610cc5565b3480156104ba57600080fd5b506102756104c93660046120e5565b610d72565b3480156104da57600080fd5b506102dc6104e9366004611f24565b610de9565b3480156104fa57600080fd5b506102dc6105093660046120e5565b60066020526000908152604090205481565b34801561052757600080fd5b50601254610275906001600160a01b031681565b6102dc6105493660046120fd565b610e70565b34801561055a57600080fd5b506102486110c1565b34801561056f57600080fd5b506102dc61057e3660046120e5565b600d6020526000908152604090205481565b34801561059c57600080fd5b506102ad6105ab366004612035565b6110d0565b3480156105bc57600080fd5b506102ad6105cb366004611fb8565b611195565b3480156105dc57600080fd5b506102486105eb3660046120e5565b6111cd565b3480156105fc57600080fd5b50601354610275906001600160a01b031681565b34801561061c57600080fd5b506102ad61062b3660046120e5565b611361565b34801561063c57600080fd5b5061027561064b3660046120e5565b600b602052600090815260409020546001600160a01b031681565b34801561067257600080fd5b506102dc6106813660046120e5565b60096020526000908152604090205481565b34801561069f57600080fd5b506102ad6106ae366004612166565b611405565b3480156106bf57600080fd5b5061021e6106ce366004611f40565b6115b4565b3480156106df57600080fd5b506102ad6106ee3660046120e5565b611684565b60006001600160e01b031982166380ac58cd60e01b148061072457506001600160e01b03198216635b5e139f60e01b145b8061073f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610754906124a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610780906124a4565b80156107cd5780601f106107a2576101008083540402835291602001916107cd565b820191906000526020600020905b8154815290600101906020018083116107b057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108555760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087c82610d72565b9050806001600160a01b0316836001600160a01b031614156108ea5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084c565b336001600160a01b0382161480610906575061090681336115b4565b6109785760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084c565b61098283836116c6565b505050565b6012546001600160a01b031633146109b15760405162461bcd60e51b815260040161084c906123f2565b600082815260116020526040902080546109ca906124a4565b159050610a0b5760405162461bcd60e51b815260206004820152600f60248201526e15549257d053149150511657d4d155608a1b604482015260640161084c565b6000815111610a485760405162461bcd60e51b81526020600482015260096024820152685552495f454d50545960b81b604482015260640161084c565b6000828152601160209081526040909120825161098292840190611df6565b610a713382611734565b610a8d5760405162461bcd60e51b815260040161084c906123a1565b610982838383611803565b61098283838360405180602001604052806000815250611195565b6012546001600160a01b03163314610add5760405162461bcd60e51b815260040161084c906123f2565b60008681526009602052604090205415610b315760405162461bcd60e51b8152602060048201526015602482015274050524f4a4543545f414c52454144595f534554555605c1b604482015260640161084c565b60008511610b755760405162461bcd60e51b815260206004820152601160248201527016915493d7d3505617d513d2d15397d251607a1b604482015260640161084c565b6103e8831115610bbe5760405162461bcd60e51b815260206004820152601460248201527313505617d493d65053151657d15610d15151115160621b604482015260640161084c565b6001600160a01b038216610c0b5760405162461bcd60e51b81526020600482015260146024820152735a45524f5f524f59414c54595f4144445245535360601b604482015260640161084c565b6000815111610c4d5760405162461bcd60e51b815260206004820152600e60248201526d454d5054595f424153455f55524960901b604482015260640161084c565b6000868152600960209081526040808320889055600a8252808320879055600c8252808320869055600b825280832080546001600160a01b0319166001600160a01b038716179055600f8252808320805460ff19166001179055601082529091208251610cbc92840190611df6565b50505050505050565b6000818152600b6020908152604080832054600d9092528083205490516001600160a01b039092169281156108fc029290818181858888f19350505050158015610d13573d6000803e3d6000fd5b50807f192d21ec5abfc134c920f6cd9cf7b35a8226e5c90e05143805c969c7a73e0185600d600084815260200190815260200160002054604051610d5991815260200190565b60405180910390a26000908152600d6020526040812055565b6000818152600260205260408120546001600160a01b03168061073f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084c565b60006001600160a01b038216610e545760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084c565b506001600160a01b031660009081526003602052604090205490565b600082815260096020526040812054610ebf5760405162461bcd60e51b8152602060048201526011602482015270050524f4a4543545f4e4f545f534554555607c1b604482015260640161084c565b6000838152600f602052604090205460ff1615610f105760405162461bcd60e51b815260206004820152600f60248201526e1414915352539517d1539050931151608a1b604482015260640161084c565b60008381526009602090815260408083205460089092529091205410610f6c5760405162461bcd60e51b815260206004820152601160248201527013505617d4d55414131657d35253951151607a1b604482015260640161084c565b6000838152600a602052604090205434811115610fc05760405162461bcd60e51b81526020600482015260126024820152711352539517d4149250d157d393d517d3515560721b604482015260640161084c565b610fc86119a3565b9150610fd483836119b9565b610fdd84611afb565b6000848152600c6020526040812054611005906103e890610fff908590611b65565b90611b78565b6000868152600d60205260409020549091506110219082611b84565b6000868152600d6020908152604080832093909355600e9052205461105290829061104c9034611b84565b90611b90565b6000868152600e60209081526040808320939093556008815290829020548251868152918201529081018390526001600160a01b0385169086907f5e9f1b91ac2555aca8bb40a54c7f2dce80d64e6691479bdaa76d263ecdf0422a9060600160405180910390a3505092915050565b606060018054610754906124a4565b6001600160a01b0382163314156111295760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61119f3383611734565b6111bb5760405162461bcd60e51b815260040161084c906123a1565b6111c784848484611b9c565b50505050565b6000818152600260205260409020546060906001600160a01b031661124c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084c565b60008281526011602052604081208054611265906124a4565b9050111561130b5760008281526011602052604090208054611286906124a4565b80601f01602080910402602001604051908101604052809291908181526020018280546112b2906124a4565b80156112ff5780601f106112d4576101008083540402835291602001916112ff565b820191906000526020600020905b8154815290600101906020018083116112e257829003601f168201915b50505050509050919050565b60008281526006602090815260408083205460078352818420548185526010909352922061133882611bcf565b604051602001611349929190612259565b60405160208183030381529060405292505050919050565b6012546000828152600e60205260408082205490516001600160a01b039093169281156108fc0292818181858888f193505050501580156113a6573d6000803e3d6000fd5b50807f272cfd32312fc5fb9119bb5b10d732ebe69a0be4019a69bc7d16eaea36231a2e600e6000848152602001908152602001600020546040516113ec91815260200190565b60405180910390a26000908152600e6020526040812055565b6012546001600160a01b0316331461142f5760405162461bcd60e51b815260040161084c906123f2565b60008381526009602052604090205461147c5760405162461bcd60e51b815260206004820152600f60248201526e1253959053125117d41493d29150d5608a1b604482015260640161084c565b6000838152600960209081526040808320546008909252909120546114a19084611b84565b11156114dc5760405162461bcd60e51b815260206004820152600a6024820152694d41585f535550504c5960b01b604482015260640161084c565b6000838152600f602052604090205460ff1661152d5760405162461bcd60e51b815260206004820152601060248201526f1414915352539517d11254d05093115160821b604482015260640161084c565b60005b8281101561156a5760006115426119a3565b905061154e83826119b9565b61155785611afb565b5080611562816124df565b915050611530565b50806001600160a01b0316837fae6fecbda5d9713ca0a39e294aa6452d4f6f46d231525afeeb718acce32a5f75846040516115a791815260200190565b60405180910390a3505050565b60135460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561160157600080fd5b505afa158015611615573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163991906120c9565b6001600160a01b0316141561165257600191505061073f565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6012546001600160a01b031633146116ae5760405162461bcd60e51b815260040161084c906123f2565b6000908152600f60205260409020805460ff19169055565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116fb82610d72565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117ad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084c565b60006117b883610d72565b9050806001600160a01b0316846001600160a01b031614806117f35750836001600160a01b03166117e8846107d7565b6001600160a01b0316145b8061167c575061167c81856115b4565b826001600160a01b031661181682610d72565b6001600160a01b03161461187e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084c565b6001600160a01b0382166118e05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084c565b6118eb6000826116c6565b6001600160a01b0383166000908152600360205260408120805460019290611914908490612461565b90915550506001600160a01b0382166000908152600360205260408120805460019290611942908490612416565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6014546000906119b4906001611b84565b905090565b6001600160a01b038216611a0f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084c565b6000818152600260205260409020546001600160a01b031615611a745760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084c565b6001600160a01b0382166000908152600360205260408120805460019290611a9d908490612416565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b601454611b09906001611b84565b601481905560009081526006602090815260408083208490558383526008909152902054611b38906001611b84565b60148054600090815260076020908152604080832094909455915481528281205493815260089091522055565b6000611b718284612442565b9392505050565b6000611b71828461242e565b6000611b718284612416565b6000611b718284612461565b611ba7848484611803565b611bb384848484611ce9565b6111c75760405162461bcd60e51b815260040161084c9061234f565b606081611bf35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c1d5780611c07816124df565b9150611c169050600a8361242e565b9150611bf7565b60008167ffffffffffffffff811115611c4657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c70576020820181803683370190505b5090505b841561167c57611c85600183612461565b9150611c92600a866124fa565b611c9d906030612416565b60f81b818381518110611cc057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611ce2600a8661242e565b9450611c74565b60006001600160a01b0384163b15611deb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d2d9033908990889088906004016122ff565b602060405180830381600087803b158015611d4757600080fd5b505af1925050508015611d77575060408051601f3d908101601f19168201909252611d74918101906120ad565b60015b611dd1573d808015611da5576040519150601f19603f3d011682016040523d82523d6000602084013e611daa565b606091505b508051611dc95760405162461bcd60e51b815260040161084c9061234f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061167c565b506001949350505050565b828054611e02906124a4565b90600052602060002090601f016020900481019282611e245760008555611e6a565b82601f10611e3d57805160ff1916838001178555611e6a565b82800160010185558215611e6a579182015b82811115611e6a578251825591602001919060010190611e4f565b50611e76929150611e7a565b5090565b5b80821115611e765760008155600101611e7b565b600067ffffffffffffffff80841115611eaa57611eaa61253a565b604051601f8501601f19908116603f01168101908282118183101715611ed257611ed261253a565b81604052809350858152868686011115611eeb57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112611f15578081fd5b611b7183833560208501611e8f565b600060208284031215611f35578081fd5b8135611b7181612550565b60008060408385031215611f52578081fd5b8235611f5d81612550565b91506020830135611f6d81612550565b809150509250929050565b600080600060608486031215611f8c578081fd5b8335611f9781612550565b92506020840135611fa781612550565b929592945050506040919091013590565b60008060008060808587031215611fcd578081fd5b8435611fd881612550565b93506020850135611fe881612550565b925060408501359150606085013567ffffffffffffffff81111561200a578182fd5b8501601f8101871361201a578182fd5b61202987823560208401611e8f565b91505092959194509250565b60008060408385031215612047578182fd5b823561205281612550565b915060208301358015158114611f6d578182fd5b60008060408385031215612078578182fd5b823561208381612550565b946020939093013593505050565b6000602082840312156120a2578081fd5b8135611b7181612568565b6000602082840312156120be578081fd5b8151611b7181612568565b6000602082840312156120da578081fd5b8151611b7181612550565b6000602082840312156120f6578081fd5b5035919050565b6000806040838503121561210f578182fd5b823591506020830135611f6d81612550565b60008060408385031215612133578182fd5b82359150602083013567ffffffffffffffff811115612150578182fd5b61215c85828601611f05565b9150509250929050565b60008060006060848603121561217a578283fd5b8335925060208401359150604084013561219381612550565b809150509250925092565b60008060008060008060c087890312156121b6578384fd5b8635955060208701359450604087013593506060870135925060808701356121dd81612550565b915060a087013567ffffffffffffffff8111156121f8578182fd5b61220489828a01611f05565b9150509295509295509295565b60008151808452612229816020860160208601612478565b601f01601f19169290920160200192915050565b6000815161224f818560208601612478565b9290920192915050565b600080845482600182811c91508083168061227557607f831692505b602080841082141561229557634e487b7160e01b87526022600452602487fd5b8180156122a957600181146122ba576122e6565b60ff198616895284890196506122e6565b60008b815260209020885b868110156122de5781548b8201529085019083016122c5565b505084890196505b5050505050506122f6818561223d565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061233290830184612211565b9695505050505050565b602081526000611b716020830184612211565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600a908201526927a7262cafa7aba722a960b11b604082015260600190565b600082198211156124295761242961250e565b500190565b60008261243d5761243d612524565b500490565b600081600019048311821515161561245c5761245c61250e565b500290565b6000828210156124735761247361250e565b500390565b60005b8381101561249357818101518382015260200161247b565b838111156111c75750506000910152565b600181811c908216806124b857607f821691505b602082108114156124d957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124f3576124f361250e565b5060010190565b60008261250957612509612524565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461256557600080fd5b50565b6001600160e01b03198116811461256557600080fdfea264697066735822122068c385ba71458cb026522f4ac0ccfcc02850ea5c7f279b1e65b959ee132af6ef64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000f4c052c507aa2a84369ef1551cd7299f91a4fbf000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000000d73636f7270696f2e776f726c6400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000753434f5250494f00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636352211e1161010d578063b88d4fde116100a0578063e1bf3d951161006f578063e1bf3d9514610630578063e4fe235414610666578063e724e74914610693578063e985e9c5146106b3578063ea973a72146106d357600080fd5b8063b88d4fde146105b0578063c87b56dd146105d0578063cd7c0326146105f0578063d9f1aed91461061057600080fd5b806394bf804d116100dc57806394bf804d1461053b57806395d89b411461054e578063a1f47e9f14610563578063a22cb4651461059057600080fd5b80636352211e146104ae57806370a08231146104ce5780638102a039146104ee5780638da5cb5b1461051b57600080fd5b806323b872dd1161019057806342842e0e1161015f57806342842e0e146103f45780634326bae41461041457806347b0da8614610441578063564cf2381461046e5780635daa02ed1461048e57600080fd5b806323b872dd1461034a5780632bdaca9c1461036a5780632cb2527f146103975780633d24f380146103c757600080fd5b8063155be986116101cc578063155be986146102af578063162094c4146102ea57806317e1f82e1461030a57806318160ddd1461033557600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004612091565b6106f3565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610745565b60405161022a919061233c565b34801561026157600080fd5b506102756102703660046120e5565b6107d7565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004612066565b610871565b005b3480156102bb57600080fd5b506102dc6102ca3660046120e5565b600e6020526000908152604090205481565b60405190815260200161022a565b3480156102f657600080fd5b506102ad610305366004612121565b610987565b34801561031657600080fd5b506103206103e881565b60405163ffffffff909116815260200161022a565b34801561034157600080fd5b506014546102dc565b34801561035657600080fd5b506102ad610365366004611f78565b610a67565b34801561037657600080fd5b506102dc6103853660046120e5565b600a6020526000908152604090205481565b3480156103a357600080fd5b5061021e6103b23660046120e5565b600f6020526000908152604090205460ff1681565b3480156103d357600080fd5b506102dc6103e23660046120e5565b60076020526000908152604090205481565b34801561040057600080fd5b506102ad61040f366004611f78565b610a98565b34801561042057600080fd5b506102dc61042f3660046120e5565b60086020526000908152604090205481565b34801561044d57600080fd5b506102dc61045c3660046120e5565b600c6020526000908152604090205481565b34801561047a57600080fd5b506102ad61048936600461219e565b610ab3565b34801561049a57600080fd5b506102ad6104a93660046120e5565b610cc5565b3480156104ba57600080fd5b506102756104c93660046120e5565b610d72565b3480156104da57600080fd5b506102dc6104e9366004611f24565b610de9565b3480156104fa57600080fd5b506102dc6105093660046120e5565b60066020526000908152604090205481565b34801561052757600080fd5b50601254610275906001600160a01b031681565b6102dc6105493660046120fd565b610e70565b34801561055a57600080fd5b506102486110c1565b34801561056f57600080fd5b506102dc61057e3660046120e5565b600d6020526000908152604090205481565b34801561059c57600080fd5b506102ad6105ab366004612035565b6110d0565b3480156105bc57600080fd5b506102ad6105cb366004611fb8565b611195565b3480156105dc57600080fd5b506102486105eb3660046120e5565b6111cd565b3480156105fc57600080fd5b50601354610275906001600160a01b031681565b34801561061c57600080fd5b506102ad61062b3660046120e5565b611361565b34801561063c57600080fd5b5061027561064b3660046120e5565b600b602052600090815260409020546001600160a01b031681565b34801561067257600080fd5b506102dc6106813660046120e5565b60096020526000908152604090205481565b34801561069f57600080fd5b506102ad6106ae366004612166565b611405565b3480156106bf57600080fd5b5061021e6106ce366004611f40565b6115b4565b3480156106df57600080fd5b506102ad6106ee3660046120e5565b611684565b60006001600160e01b031982166380ac58cd60e01b148061072457506001600160e01b03198216635b5e139f60e01b145b8061073f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610754906124a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610780906124a4565b80156107cd5780601f106107a2576101008083540402835291602001916107cd565b820191906000526020600020905b8154815290600101906020018083116107b057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108555760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087c82610d72565b9050806001600160a01b0316836001600160a01b031614156108ea5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084c565b336001600160a01b0382161480610906575061090681336115b4565b6109785760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084c565b61098283836116c6565b505050565b6012546001600160a01b031633146109b15760405162461bcd60e51b815260040161084c906123f2565b600082815260116020526040902080546109ca906124a4565b159050610a0b5760405162461bcd60e51b815260206004820152600f60248201526e15549257d053149150511657d4d155608a1b604482015260640161084c565b6000815111610a485760405162461bcd60e51b81526020600482015260096024820152685552495f454d50545960b81b604482015260640161084c565b6000828152601160209081526040909120825161098292840190611df6565b610a713382611734565b610a8d5760405162461bcd60e51b815260040161084c906123a1565b610982838383611803565b61098283838360405180602001604052806000815250611195565b6012546001600160a01b03163314610add5760405162461bcd60e51b815260040161084c906123f2565b60008681526009602052604090205415610b315760405162461bcd60e51b8152602060048201526015602482015274050524f4a4543545f414c52454144595f534554555605c1b604482015260640161084c565b60008511610b755760405162461bcd60e51b815260206004820152601160248201527016915493d7d3505617d513d2d15397d251607a1b604482015260640161084c565b6103e8831115610bbe5760405162461bcd60e51b815260206004820152601460248201527313505617d493d65053151657d15610d15151115160621b604482015260640161084c565b6001600160a01b038216610c0b5760405162461bcd60e51b81526020600482015260146024820152735a45524f5f524f59414c54595f4144445245535360601b604482015260640161084c565b6000815111610c4d5760405162461bcd60e51b815260206004820152600e60248201526d454d5054595f424153455f55524960901b604482015260640161084c565b6000868152600960209081526040808320889055600a8252808320879055600c8252808320869055600b825280832080546001600160a01b0319166001600160a01b038716179055600f8252808320805460ff19166001179055601082529091208251610cbc92840190611df6565b50505050505050565b6000818152600b6020908152604080832054600d9092528083205490516001600160a01b039092169281156108fc029290818181858888f19350505050158015610d13573d6000803e3d6000fd5b50807f192d21ec5abfc134c920f6cd9cf7b35a8226e5c90e05143805c969c7a73e0185600d600084815260200190815260200160002054604051610d5991815260200190565b60405180910390a26000908152600d6020526040812055565b6000818152600260205260408120546001600160a01b03168061073f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084c565b60006001600160a01b038216610e545760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084c565b506001600160a01b031660009081526003602052604090205490565b600082815260096020526040812054610ebf5760405162461bcd60e51b8152602060048201526011602482015270050524f4a4543545f4e4f545f534554555607c1b604482015260640161084c565b6000838152600f602052604090205460ff1615610f105760405162461bcd60e51b815260206004820152600f60248201526e1414915352539517d1539050931151608a1b604482015260640161084c565b60008381526009602090815260408083205460089092529091205410610f6c5760405162461bcd60e51b815260206004820152601160248201527013505617d4d55414131657d35253951151607a1b604482015260640161084c565b6000838152600a602052604090205434811115610fc05760405162461bcd60e51b81526020600482015260126024820152711352539517d4149250d157d393d517d3515560721b604482015260640161084c565b610fc86119a3565b9150610fd483836119b9565b610fdd84611afb565b6000848152600c6020526040812054611005906103e890610fff908590611b65565b90611b78565b6000868152600d60205260409020549091506110219082611b84565b6000868152600d6020908152604080832093909355600e9052205461105290829061104c9034611b84565b90611b90565b6000868152600e60209081526040808320939093556008815290829020548251868152918201529081018390526001600160a01b0385169086907f5e9f1b91ac2555aca8bb40a54c7f2dce80d64e6691479bdaa76d263ecdf0422a9060600160405180910390a3505092915050565b606060018054610754906124a4565b6001600160a01b0382163314156111295760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61119f3383611734565b6111bb5760405162461bcd60e51b815260040161084c906123a1565b6111c784848484611b9c565b50505050565b6000818152600260205260409020546060906001600160a01b031661124c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084c565b60008281526011602052604081208054611265906124a4565b9050111561130b5760008281526011602052604090208054611286906124a4565b80601f01602080910402602001604051908101604052809291908181526020018280546112b2906124a4565b80156112ff5780601f106112d4576101008083540402835291602001916112ff565b820191906000526020600020905b8154815290600101906020018083116112e257829003601f168201915b50505050509050919050565b60008281526006602090815260408083205460078352818420548185526010909352922061133882611bcf565b604051602001611349929190612259565b60405160208183030381529060405292505050919050565b6012546000828152600e60205260408082205490516001600160a01b039093169281156108fc0292818181858888f193505050501580156113a6573d6000803e3d6000fd5b50807f272cfd32312fc5fb9119bb5b10d732ebe69a0be4019a69bc7d16eaea36231a2e600e6000848152602001908152602001600020546040516113ec91815260200190565b60405180910390a26000908152600e6020526040812055565b6012546001600160a01b0316331461142f5760405162461bcd60e51b815260040161084c906123f2565b60008381526009602052604090205461147c5760405162461bcd60e51b815260206004820152600f60248201526e1253959053125117d41493d29150d5608a1b604482015260640161084c565b6000838152600960209081526040808320546008909252909120546114a19084611b84565b11156114dc5760405162461bcd60e51b815260206004820152600a6024820152694d41585f535550504c5960b01b604482015260640161084c565b6000838152600f602052604090205460ff1661152d5760405162461bcd60e51b815260206004820152601060248201526f1414915352539517d11254d05093115160821b604482015260640161084c565b60005b8281101561156a5760006115426119a3565b905061154e83826119b9565b61155785611afb565b5080611562816124df565b915050611530565b50806001600160a01b0316837fae6fecbda5d9713ca0a39e294aa6452d4f6f46d231525afeeb718acce32a5f75846040516115a791815260200190565b60405180910390a3505050565b60135460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561160157600080fd5b505afa158015611615573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163991906120c9565b6001600160a01b0316141561165257600191505061073f565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6012546001600160a01b031633146116ae5760405162461bcd60e51b815260040161084c906123f2565b6000908152600f60205260409020805460ff19169055565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116fb82610d72565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117ad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084c565b60006117b883610d72565b9050806001600160a01b0316846001600160a01b031614806117f35750836001600160a01b03166117e8846107d7565b6001600160a01b0316145b8061167c575061167c81856115b4565b826001600160a01b031661181682610d72565b6001600160a01b03161461187e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084c565b6001600160a01b0382166118e05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084c565b6118eb6000826116c6565b6001600160a01b0383166000908152600360205260408120805460019290611914908490612461565b90915550506001600160a01b0382166000908152600360205260408120805460019290611942908490612416565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6014546000906119b4906001611b84565b905090565b6001600160a01b038216611a0f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084c565b6000818152600260205260409020546001600160a01b031615611a745760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084c565b6001600160a01b0382166000908152600360205260408120805460019290611a9d908490612416565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b601454611b09906001611b84565b601481905560009081526006602090815260408083208490558383526008909152902054611b38906001611b84565b60148054600090815260076020908152604080832094909455915481528281205493815260089091522055565b6000611b718284612442565b9392505050565b6000611b71828461242e565b6000611b718284612416565b6000611b718284612461565b611ba7848484611803565b611bb384848484611ce9565b6111c75760405162461bcd60e51b815260040161084c9061234f565b606081611bf35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c1d5780611c07816124df565b9150611c169050600a8361242e565b9150611bf7565b60008167ffffffffffffffff811115611c4657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c70576020820181803683370190505b5090505b841561167c57611c85600183612461565b9150611c92600a866124fa565b611c9d906030612416565b60f81b818381518110611cc057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611ce2600a8661242e565b9450611c74565b60006001600160a01b0384163b15611deb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d2d9033908990889088906004016122ff565b602060405180830381600087803b158015611d4757600080fd5b505af1925050508015611d77575060408051601f3d908101601f19168201909252611d74918101906120ad565b60015b611dd1573d808015611da5576040519150601f19603f3d011682016040523d82523d6000602084013e611daa565b606091505b508051611dc95760405162461bcd60e51b815260040161084c9061234f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061167c565b506001949350505050565b828054611e02906124a4565b90600052602060002090601f016020900481019282611e245760008555611e6a565b82601f10611e3d57805160ff1916838001178555611e6a565b82800160010185558215611e6a579182015b82811115611e6a578251825591602001919060010190611e4f565b50611e76929150611e7a565b5090565b5b80821115611e765760008155600101611e7b565b600067ffffffffffffffff80841115611eaa57611eaa61253a565b604051601f8501601f19908116603f01168101908282118183101715611ed257611ed261253a565b81604052809350858152868686011115611eeb57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112611f15578081fd5b611b7183833560208501611e8f565b600060208284031215611f35578081fd5b8135611b7181612550565b60008060408385031215611f52578081fd5b8235611f5d81612550565b91506020830135611f6d81612550565b809150509250929050565b600080600060608486031215611f8c578081fd5b8335611f9781612550565b92506020840135611fa781612550565b929592945050506040919091013590565b60008060008060808587031215611fcd578081fd5b8435611fd881612550565b93506020850135611fe881612550565b925060408501359150606085013567ffffffffffffffff81111561200a578182fd5b8501601f8101871361201a578182fd5b61202987823560208401611e8f565b91505092959194509250565b60008060408385031215612047578182fd5b823561205281612550565b915060208301358015158114611f6d578182fd5b60008060408385031215612078578182fd5b823561208381612550565b946020939093013593505050565b6000602082840312156120a2578081fd5b8135611b7181612568565b6000602082840312156120be578081fd5b8151611b7181612568565b6000602082840312156120da578081fd5b8151611b7181612550565b6000602082840312156120f6578081fd5b5035919050565b6000806040838503121561210f578182fd5b823591506020830135611f6d81612550565b60008060408385031215612133578182fd5b82359150602083013567ffffffffffffffff811115612150578182fd5b61215c85828601611f05565b9150509250929050565b60008060006060848603121561217a578283fd5b8335925060208401359150604084013561219381612550565b809150509250925092565b60008060008060008060c087890312156121b6578384fd5b8635955060208701359450604087013593506060870135925060808701356121dd81612550565b915060a087013567ffffffffffffffff8111156121f8578182fd5b61220489828a01611f05565b9150509295509295509295565b60008151808452612229816020860160208601612478565b601f01601f19169290920160200192915050565b6000815161224f818560208601612478565b9290920192915050565b600080845482600182811c91508083168061227557607f831692505b602080841082141561229557634e487b7160e01b87526022600452602487fd5b8180156122a957600181146122ba576122e6565b60ff198616895284890196506122e6565b60008b815260209020885b868110156122de5781548b8201529085019083016122c5565b505084890196505b5050505050506122f6818561223d565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061233290830184612211565b9695505050505050565b602081526000611b716020830184612211565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600a908201526927a7262cafa7aba722a960b11b604082015260600190565b600082198211156124295761242961250e565b500190565b60008261243d5761243d612524565b500490565b600081600019048311821515161561245c5761245c61250e565b500290565b6000828210156124735761247361250e565b500390565b60005b8381101561249357818101518382015260200161247b565b838111156111c75750506000910152565b600181811c908216806124b857607f821691505b602082108114156124d957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124f3576124f361250e565b5060010190565b60008261250957612509612524565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461256557600080fd5b50565b6001600160e01b03198116811461256557600080fdfea264697066735822122068c385ba71458cb026522f4ac0ccfcc02850ea5c7f279b1e65b959ee132af6ef64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000f4c052c507aa2a84369ef1551cd7299f91a4fbf000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000000d73636f7270696f2e776f726c6400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000753434f5250494f00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): scorpio.world
Arg [1] : symbol_ (string): SCORPIO
Arg [2] : owner_ (address): 0x0F4c052c507Aa2a84369EF1551cD7299f91a4fBf
Arg [3] : proxy_ (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000f4c052c507aa2a84369ef1551cd7299f91a4fbf
Arg [3] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 73636f7270696f2e776f726c6400000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 53434f5250494f00000000000000000000000000000000000000000000000000


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.