ETH Price: $3,459.98 (-1.77%)
Gas: 3 Gwei

Token

0xOG by 0xStudio (0xOGPASS)
 

Overview

Max Total Supply

498 0xOGPASS

Holders

449

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 0xOGPASS
0xb91638cdA837CC8740241847d53F9fe9A5935d46
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:
WagyuV2

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 19 : WagyuV2.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "../lib/OGBlockBasedSale.sol";

contract WagyuV2 is
    Ownable,
    ERC721,
    ERC721Enumerable,
    OGBlockBasedSale,
    ReentrancyGuard
{
    using Address for address;
    using SafeMath for uint256;

    event Airdrop(address[] addresses, uint256 amount);
    event AssignAirdropAddress(address indexed _address);
    event AssignBaseURI(string _value);
    event AssignDefaultURI(string _value);
    event AssignRevealBlock(uint256 _blockNumber);
    event Purchased(address indexed account, uint256 indexed index);
    event MintAttempt(address indexed account, bytes data);
    event PermanentURI(string _value, uint256 indexed _id);
    event WithdrawNonPurchaseFund(uint256 balance);

    PaymentSplitter private _splitter;

    struct revenueShareParams {
        address[] payees;
        uint256[] shares;
    }

    uint256 public revealBlock = 0;
    uint256 public maxSaleCapped = 1;

    string public _defaultURI;
    string public _tokenBaseURI;
    mapping(address => bool) private _airdropAllowed;
    mapping(address => uint256) public purchaseCount;

    constructor(
        string memory name,
        string memory symbol,
        uint256 _maxSupply,
        uint256 price,
        revenueShareParams memory revenueShare
    ) ERC721(name, symbol) {
        _splitter = new PaymentSplitter(
            revenueShare.payees,
            revenueShare.shares
        );
        maxSupply = _maxSupply;
        publicSalePrice = price;
    }

    modifier airdropRoleOnly() {
        require(_airdropAllowed[msg.sender], "Only airdrop role allowed.");
        _;
    }

    modifier shareHolderOnly() {
        require(_splitter.shares(msg.sender) > 0, "not a shareholder");
        _;
    }

    function airdrop(address[] memory addresses, uint256 amount)
        external
        nonReentrant
        airdropRoleOnly
    {
        require(
            totalSupply().add(addresses.length.mul(amount)) <= maxSupply,
            "Exceed max supply limit."
        );

        require(
            totalReserveMinted.add(addresses.length.mul(amount)) <= maxReserve,
            "Insufficient reserve."
        );

        totalReserveMinted = totalReserveMinted.add(
            addresses.length.mul(amount)
        );

        for (uint256 i = 0; i < addresses.length; i++) {
            _mintToken(addresses[i], amount);
        }
        emit Airdrop(addresses, amount);
    }

    function setAirdropRole(address addr) external onlyOwner {
        emit AssignAirdropAddress(addr);
        _airdropAllowed[addr] = true;
    }

    function setRevealBlock(uint256 blockNumber) external operatorOnly {
        emit AssignRevealBlock(blockNumber);
        revealBlock = blockNumber;
    }

    function mintToken(uint256 amount, bytes calldata signature)
        external
        payable
        nonReentrant
        returns (bool)
    {
        require(msg.sender == tx.origin, "Contract is not allowed.");
        require(
            getState() == SaleState.PublicSaleDuring,
            "Sale not available."
        );

        if (getState() == SaleState.PublicSaleDuring) {
            require(
                amount <= maxPublicSalePerTx,
                "Mint exceed transaction limits."
            );
            require(
                msg.value >= amount.mul(getPriceByMode()),
                "Insufficient funds."
            );
            require(
                totalSupply().add(amount).add(availableReserve()) <= maxSupply,
                "Purchase exceed max supply."
            );
        }

        require(
            purchaseCount[msg.sender] + amount <= maxSaleCapped,
            "Max purchase reached"
        );

        emit MintAttempt(msg.sender, signature);

        if (getState() == SaleState.PublicSaleDuring) {
            _mintToken(msg.sender, amount);
            totalPublicMinted = totalPublicMinted + amount;
            if (isSubsequenceSale()) {
                nextSubsequentSale = block.number + subsequentSaleBlockSize;
            }
            payable(_splitter).transfer(msg.value);
        }

        return true;
    }

    function setBaseURI(string memory baseURI) external onlyOwner {
        _tokenBaseURI = baseURI;
        emit AssignBaseURI(baseURI);
    }

    function setDefaultURI(string memory defaultURI) external onlyOwner {
        _defaultURI = defaultURI;
        emit AssignDefaultURI(defaultURI);
    }

    function tokenBaseURI() external view returns (string memory) {
        return _tokenBaseURI;
    }

    function isRevealed() public view returns (bool) {
        return revealBlock > 0 && block.number > revealBlock;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(tokenId <= totalSupply(), "Token not exist.");

        return
            isRevealed()
                ? string(
                    abi.encodePacked(
                        _tokenBaseURI,
                        Strings.toString(tokenId),
                        ".json"
                    )
                )
                : _defaultURI;
    }

    function availableForSale() external view returns (uint256) {
        return maxSupply - totalSupply();
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function release(address payable account) external virtual shareHolderOnly {
        require(
            msg.sender == account || msg.sender == owner(),
            "Release: no permission"
        );

        _splitter.release(account);
    }

    function withdraw() external governorOnly {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
        emit WithdrawNonPurchaseFund(balance);
    }

    function _mintToken(address addr, uint256 amount) internal returns (bool) {
        for (uint256 i = 0; i < amount; i++) {
            uint256 tokenIndex = totalSupply();
            purchaseCount[addr] += 1;
            if (tokenIndex < maxSupply) {
                _safeMint(addr, tokenIndex + 1);
                emit Purchased(addr, tokenIndex);
            }
        }
        return true;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }
}

File 2 of 19 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 19 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol";
import "../utils/Context.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 4 of 19 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

File 5 of 19 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 19 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 19 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 19 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 9 of 19 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 10 of 19 : OGBlockBasedSale.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

abstract contract OGBlockBasedSale is Ownable {
    using SafeMath for uint256;

    event AssignGovernorAddress(address indexed _address);
    event AssignOperatorAddress(address indexed _address);
    event AssignDiscountBlockSize(uint256 size);
    event AssignPriceDecayParameter(
        uint256 _lowerBoundPrice,
        uint256 _priceFactor
    );
    event AssignPrivateSapeCap(uint256 cap);
    event AssignPrivateSalePrice(uint256 price);
    event AssignPublicSaleConfig(uint256 beginBlock, uint256 endBlock);
    event AssignPublicSalePrice(uint256 price);
    event AssignReserveLimit(uint256 limit);
    event AssignSubsequentSaleNextBlock(uint256 _block);
    event AssignSubsequentSaleNextBlockByOperator(uint256 _block);
    event AssignTransactionLimit(uint256 publicSaleLimit);
    event ResetOverridedSaleState();
    event DisableDutchAuction();
    event EnableDucthAuction();
    event EnablePublicSale();
    event ForceCloseSale();
    event ForcePauseSale();

    enum SaleState {
        NotStarted,
        PrivateSaleBeforeWithoutBlock,
        PrivateSaleBeforeWithBlock,
        PrivateSaleDuring,
        PrivateSaleEnd,
        PrivateSaleEndSoldOut,
        PublicSaleBeforeWithoutBlock,
        PublicSaleBeforeWithBlock,
        PublicSaleDuring,
        PublicSaleEnd,
        PublicSaleEndSoldOut,
        PauseSale,
        AllSalesEnd
    }

    enum OverrideSaleState {
        None,
        Pause,
        Close
    }

    enum SalePhase {
        None,
        Private,
        Public
    }

    OverrideSaleState public overridedSaleState = OverrideSaleState.None;
    SalePhase public salePhase = SalePhase.None;
    bool private operatorAssigned;
    bool private governorAssigned;

    address private operatorAddress;
    address private governorAddress;

    uint256 public maxPublicSalePerTx = 1;

    uint256 public totalPublicMinted = 0;
    uint256 public totalReserveMinted = 0;
    uint256 public maxSupply = 1000;
    uint256 public maxReserve = 180; //Subject to change per production config

    uint256 public discountBlockSize = 180;
    uint256 public lowerBoundPrice = 0;
    uint256 public publicSalePrice;
    uint256 public priceFactor = 1337500000000000;

    uint256 public nextSubsequentSale = 0;
    uint256 public subsequentSaleBlockSize = 1661; //Subject to change per production config
    uint256 public publicSaleCap = 100;
    bool public dutchEnabled = false;

    struct SaleConfig {
        uint256 beginBlock;
        uint256 endBlock;
    }

    SaleConfig public publicSale;

    modifier operatorOnly() {
        require(
            operatorAssigned && msg.sender == operatorAddress,
            "Only operator allowed."
        );
        _;
    }

    modifier governorOnly() {
        require(
            governorAssigned && msg.sender == governorAddress,
            "Only governor allowed."
        );
        _;
    }

    function setOperatorAddress(address _operator) external onlyOwner {
        require(_operator != address(0));
        operatorAddress = _operator;
        operatorAssigned = true;
        emit AssignOperatorAddress(_operator);
    }

    function setGovernorAddress(address _governor) external onlyOwner {
        require(_governor != address(0));
        governorAddress = _governor;
        governorAssigned = true;
        emit AssignGovernorAddress(_governor);
    }

    function setDiscountBlockSize(uint256 size) external operatorOnly {
        discountBlockSize = size;
        emit AssignDiscountBlockSize(size);
    }

    function setPriceDecayParams(uint256 _lowerBoundPrice, uint256 _priceFactor)
        external
        operatorOnly
    {
        require(_priceFactor <= publicSalePrice);
        lowerBoundPrice = _lowerBoundPrice;
        priceFactor = _priceFactor;
        emit AssignPriceDecayParameter(_lowerBoundPrice, _priceFactor);
    }



    function setTransactionLimit(uint256 publicSaleLimit)
        external
        operatorOnly
    {
        require(publicSaleLimit > 0);
        maxPublicSalePerTx = publicSaleLimit;
        emit AssignTransactionLimit(publicSaleLimit);
    }

    function setPublicSaleConfig(SaleConfig memory _publicSale)
        external
        operatorOnly
    {
        publicSale = _publicSale;
        emit AssignPublicSaleConfig(
            _publicSale.beginBlock,
            _publicSale.endBlock
        );
    }

    function setPublicSalePrice(uint256 _price) external operatorOnly {
        publicSalePrice = _price;
        emit AssignPublicSalePrice(_price);
    }

    function setCloseSale() external operatorOnly {
        overridedSaleState = OverrideSaleState.Close;
        emit ForceCloseSale();
    }

    function setPauseSale() external operatorOnly {
        overridedSaleState = OverrideSaleState.Pause;
        emit ForcePauseSale();
    }

    function resetOverridedSaleState() external operatorOnly {
        overridedSaleState = OverrideSaleState.None;
        emit ResetOverridedSaleState();
    }

    function setReserve(uint256 reserve) external operatorOnly {
        maxReserve = reserve;
        emit AssignReserveLimit(reserve);
    }

    function isPublicSaleSoldOut() external view returns (bool) {
        return supplyWithoutReserve() == totalPublicMinted;
    }

    function enablePublicSale() external operatorOnly {
        salePhase = SalePhase.Public;
        emit EnablePublicSale();
    }

    function setSubsequentSaleBlock(uint256 b) external operatorOnly {
        require(b > 0, "Block number must be greater than 0");
        require(
            b > publicSale.beginBlock,
            "Cannot start before public sale start"
        );
        nextSubsequentSale = b;
        emit AssignSubsequentSaleNextBlockByOperator(b);
    }

    function supplyWithoutReserve() internal view returns (uint256) {
        return (maxReserve > maxSupply) ? 0 : maxSupply.sub(maxReserve);
    }

    function getState() public view virtual returns (SaleState) {
        uint256 mintedWithoutReserve = totalPublicMinted;

        if (
            salePhase != SalePhase.None &&
            overridedSaleState == OverrideSaleState.Close
        ) {
            return SaleState.AllSalesEnd;
        }

        if (
            salePhase != SalePhase.None &&
            overridedSaleState == OverrideSaleState.Pause
        ) {
            return SaleState.PauseSale;
        }

        if (
            salePhase == SalePhase.Public &&
            mintedWithoutReserve == supplyWithoutReserve()
        ) {
            return SaleState.PublicSaleEndSoldOut;
        }

        if (salePhase == SalePhase.None) {
            return SaleState.NotStarted;
        }

        if (
            salePhase == SalePhase.Public &&
            publicSale.endBlock > 0 &&
            block.number > publicSale.endBlock
        ) {
            return SaleState.PublicSaleEnd;
        }

        if (
            salePhase == SalePhase.Public &&
            publicSale.beginBlock > 0 &&
            block.number >= publicSale.beginBlock
        ) {
            if (!isSubsequenceSale()) {
                return SaleState.PublicSaleDuring;
            } else {
                return
                    block.number >= nextSubsequentSale
                        ? SaleState.PublicSaleDuring
                        : SaleState.PublicSaleBeforeWithBlock;
            }
        }

        if (
            (salePhase == SalePhase.Public &&
                publicSale.beginBlock > 0 &&
                block.number < publicSale.beginBlock) ||
            (salePhase == SalePhase.Public &&
                publicSale.beginBlock > 0 &&
                block.number > publicSale.beginBlock &&
                isSubsequenceSale() &&
                block.number < nextSubsequentSale)
        ) {
            return SaleState.PublicSaleBeforeWithBlock;
        }

        if (salePhase == SalePhase.Public && publicSale.beginBlock == 0) {
            return SaleState.PublicSaleBeforeWithoutBlock;
        }

        return SaleState.NotStarted;
    }

    function setPublicSaleCap(uint256 cap) external operatorOnly {
        publicSaleCap = cap;
        emit AssignPrivateSapeCap(cap);
    }

    function isSubsequenceSale() public view returns (bool) {
        return (totalPublicMinted >= publicSaleCap);
    }

    function getStartSaleBlock() external view returns (uint256) {
        if (
            SaleState.PublicSaleBeforeWithBlock == getState() ||
            SaleState.PublicSaleDuring == getState()
        ) {
            return
                isSubsequenceSale()
                    ? nextSubsequentSale
                    : publicSale.beginBlock;
        }

        return 0;
    }

    function getEndSaleBlock() external view returns (uint256) {
        if (
            SaleState.PublicSaleBeforeWithBlock == getState() ||
            SaleState.PublicSaleDuring == getState()
        ) {
            return publicSale.endBlock;
        }

        return 0;
    }

    function getMaxSupplyByMode() public view returns (uint256) {
        if (getState() == SaleState.PublicSaleDuring) {
            if (isSubsequenceSale()) {
                return 1;
            }
            return publicSaleCap;
        }

        return 0;
    }

    function getMintedByMode() external view returns (uint256) {
        if (getState() == SaleState.PublicSaleDuring) {
            if (isSubsequenceSale()) {
                return 0;
            }
            return totalPublicMinted;
        }
        return 0;
    }

    function getTransactionCappedByMode() external pure returns (uint256) {
        return 1;
    }

    function enableDutchAuction() external operatorOnly {
        dutchEnabled = true;
        emit EnableDucthAuction();
    }

    function disableDutchAuction() external operatorOnly {
        dutchEnabled = false;
        emit DisableDutchAuction();
    }

    function getPriceByMode() public view returns (uint256) {
        if (getState() == SaleState.PublicSaleDuring) {
            if (!dutchEnabled) {
                return publicSalePrice;
            }

            uint256 passedBlock = block.number - publicSale.beginBlock;
            uint256 discountPrice = passedBlock.mul(priceFactor).div(
                discountBlockSize
            );

            if (discountPrice >= publicSalePrice.sub(lowerBoundPrice)) {
                return lowerBoundPrice;
            } else {
                return publicSalePrice.sub(discountPrice);
            }
        }

        return publicSalePrice;
    }

    function availableReserve() public view returns (uint256) {
        return maxReserve - totalReserveMinted;
    }
}

File 11 of 19 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 12 of 19 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 13 of 19 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 14 of 19 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 15 of 19 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 18 of 19 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 19 of 19 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"components":[{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"}],"internalType":"struct WagyuV2.revenueShareParams","name":"revenueShare","type":"tuple"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"addresses","type":"address[]"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Airdrop","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"AssignAirdropAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"}],"name":"AssignBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"}],"name":"AssignDefaultURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"size","type":"uint256"}],"name":"AssignDiscountBlockSize","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"AssignGovernorAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"AssignOperatorAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_lowerBoundPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_priceFactor","type":"uint256"}],"name":"AssignPriceDecayParameter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"AssignPrivateSalePrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cap","type":"uint256"}],"name":"AssignPrivateSapeCap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"beginBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endBlock","type":"uint256"}],"name":"AssignPublicSaleConfig","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"AssignPublicSalePrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"limit","type":"uint256"}],"name":"AssignReserveLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_blockNumber","type":"uint256"}],"name":"AssignRevealBlock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_block","type":"uint256"}],"name":"AssignSubsequentSaleNextBlock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_block","type":"uint256"}],"name":"AssignSubsequentSaleNextBlockByOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"publicSaleLimit","type":"uint256"}],"name":"AssignTransactionLimit","type":"event"},{"anonymous":false,"inputs":[],"name":"DisableDutchAuction","type":"event"},{"anonymous":false,"inputs":[],"name":"EnableDucthAuction","type":"event"},{"anonymous":false,"inputs":[],"name":"EnablePublicSale","type":"event"},{"anonymous":false,"inputs":[],"name":"ForceCloseSale","type":"event"},{"anonymous":false,"inputs":[],"name":"ForcePauseSale","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"MintAttempt","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"}],"name":"Purchased","type":"event"},{"anonymous":false,"inputs":[],"name":"ResetOverridedSaleState","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":false,"internalType":"uint256","name":"balance","type":"uint256"}],"name":"WithdrawNonPurchaseFund","type":"event"},{"inputs":[],"name":"_defaultURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableForSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"availableReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableDutchAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"discountBlockSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dutchEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableDutchAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePublicSale","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":[],"name":"getEndSaleBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupplyByMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintedByMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPriceByMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStartSaleBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getState","outputs":[{"internalType":"enum OGBlockBasedSale.SaleState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTransactionCappedByMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleSoldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSubsequenceSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lowerBoundPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicSalePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSaleCapped","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextSubsequentSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"overridedSaleState","outputs":[{"internalType":"enum OGBlockBasedSale.OverrideSaleState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"uint256","name":"beginBlock","type":"uint256"},{"internalType":"uint256","name":"endBlock","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"purchaseCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetOverridedSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealBlock","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePhase","outputs":[{"internalType":"enum OGBlockBasedSale.SalePhase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setAirdropRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setCloseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"defaultURI","type":"string"}],"name":"setDefaultURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"size","type":"uint256"}],"name":"setDiscountBlockSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governor","type":"address"}],"name":"setGovernorAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"setOperatorAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lowerBoundPrice","type":"uint256"},{"internalType":"uint256","name":"_priceFactor","type":"uint256"}],"name":"setPriceDecayParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"setPublicSaleCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"beginBlock","type":"uint256"},{"internalType":"uint256","name":"endBlock","type":"uint256"}],"internalType":"struct OGBlockBasedSale.SaleConfig","name":"_publicSale","type":"tuple"}],"name":"setPublicSaleConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reserve","type":"uint256"}],"name":"setReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"setRevealBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"b","type":"uint256"}],"name":"setSubsequentSaleBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"publicSaleLimit","type":"uint256"}],"name":"setTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"subsequentSaleBlockSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReserveMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b805461ffff191690556001600d8190556000600e819055600f8190556103e860105560b4601181905560125560138190556604c072fc631800601555601681905561067d60175560646018556019805460ff19169055601e55601f553480156200006f57600080fd5b5060405162005944380380620059448339810160408190526200009291620003eb565b84846200009f3362000145565b8151620000b490600190602085019062000195565b508051620000ca90600290602084019062000195565b50506001601c555080516020820151604051620000e79062000224565b620000f492919062000556565b604051809103906000f08015801562000111573d6000803e3d6000fd5b50601d80546001600160a01b0319166001600160a01b039290921691909117905550601091909155601455506200061a9050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001a390620005de565b90600052602060002090601f016020900481019282620001c7576000855562000212565b82601f10620001e257805160ff191683800117855562000212565b8280016001018555821562000212579182015b8281111562000212578251825591602001919060010190620001f5565b506200022092915062000232565b5090565b61116080620047e483390190565b5b8082111562000220576000815560010162000233565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b038111828210171562000284576200028462000249565b60405290565b604051601f8201601f191681016001600160401b0381118282101715620002b557620002b562000249565b604052919050565b600082601f830112620002cf57600080fd5b81516001600160401b03811115620002eb57620002eb62000249565b602062000301601f8301601f191682016200028a565b82815285828487010111156200031657600080fd5b60005b838110156200033657858101830151828201840152820162000319565b83811115620003485760008385840101525b5095945050505050565b60006001600160401b038211156200036e576200036e62000249565b5060051b60200190565b600082601f8301126200038a57600080fd5b81516020620003a36200039d8362000352565b6200028a565b82815260059290921b84018101918181019086841115620003c357600080fd5b8286015b84811015620003e05780518352918301918301620003c7565b509695505050505050565b600080600080600060a086880312156200040457600080fd5b85516001600160401b03808211156200041c57600080fd5b6200042a89838a01620002bd565b96506020915081880151818111156200044257600080fd5b620004508a828b01620002bd565b96505060408801519450606088015193506080880151818111156200047457600080fd5b88016040818b0312156200048757600080fd5b620004916200025f565b815183811115620004a157600080fd5b8201601f81018c13620004b357600080fd5b8051620004c46200039d8262000352565b81815260059190911b8201860190868101908e831115620004e457600080fd5b928701925b828410156200051b5783516001600160a01b03811681146200050b5760008081fd5b82529287019290870190620004e9565b845250505081840151838111156200053257600080fd5b620005408c82850162000378565b8583015250809450505050509295509295909350565b604080825283519082018190526000906020906060840190828701845b828110156200059a5781516001600160a01b03168452928401929084019060010162000573565b5050508381038285015284518082528583019183019060005b81811015620005d157835183529284019291840191600101620005b3565b5090979650505050505050565b600181811c90821680620005f357607f821691505b6020821081036200061457634e487b7160e01b600052602260045260246000fd5b50919050565b6141ba806200062a6000396000f3fe6080604052600436106104525760003560e01c806370a082311161023f578063bbe4917a11610139578063d9ea5b23116100b6578063dfe363ef1161007a578063dfe363ef14610c2c578063e4f2487a14610c41578063e985e9c514610c60578063f2fde38b14610ca9578063f3b3a9fa14610cc957600080fd5b8063d9ea5b2314610ba0578063da1b9e0814610bb6578063da324a3014610bd6578063dd7f40cc14610bf6578063dfb2866d14610c1657600080fd5b8063c91621c2116100fd578063c91621c214610b32578063c9a8d9f714610b46578063d1fe033d14610b5b578063d5abeb0114610b70578063d898ce6914610b8657600080fd5b8063bbe4917a14610a9a578063be008ccb14610ab0578063bfb89d9714610ac5578063c204642c14610af2578063c87b56dd14610b1257600080fd5b806395d89b41116101c7578063b3ce8b271161018b578063b3ce8b2714610a15578063b5154dae14610a2f578063b87ced4e14610a45578063b88d4fde14610a65578063bbc33aa514610a8557600080fd5b806395d89b411461098d5780639b6860c8146109a2578063a22cb465146109b8578063a2fb7b5d146109d8578063ac6b2033146109ff57600080fd5b8063791a25191161020e578063791a2519146108ef57806382cf4bc41461090f578063839ed56c1461092f5780638da5cb5b1461094f57806393845dee1461096d57600080fd5b806370a0823114610890578063715018a6146108b057806373b19e8f146108c5578063776451b0146108da57600080fd5b80633ca4fb761161035057806356c4aedd116102d857806363fea81c1161029c57806363fea81c14610819578063644bd7fa1461082f57806364826b7a1461084457806364bfa5461461085a57806366bb81c71461087a57600080fd5b806356c4aedd1461079957806358e39b90146107ae5780635e162699146107ce5780635e9f9613146107e45780636352211e146107f957600080fd5b8063447321801161031f578063447321801461071a5780634e99b8001461072f5780634f6ccce71461074457806354214f691461076457806355f804b31461077957600080fd5b80633ca4fb76146106b05780633ccfd60b146106c55780634256dbe3146106da57806342842e0e146106fa57600080fd5b80631865c57d116103de5780632f1d5a60116103a25780632f1d5a60146106155780632f745c591461063557806333bc1c5c146106555780633828914a14610685578063398c0ec11461069b57600080fd5b80631865c57d1461058857806319165587146105aa5780632316b4da146105ca57806323b872dd146105df578063266dab34146105ff57600080fd5b8063081812fc11610425578063081812fc146104e6578063095ea7b31461051e5780630f30cde0146105405780631197705e1461055357806318160ddd1461057357600080fd5b806301ffc9a714610457578063031ab9f51461048c578063048e0aa0146104af57806306fdde03146104c4575b600080fd5b34801561046357600080fd5b5061047761047236600461388c565b610cdf565b60405190151581526020015b60405180910390f35b34801561049857600080fd5b506104a1610cf0565b604051908152602001610483565b3480156104bb57600080fd5b50610477610d43565b3480156104d057600080fd5b506104d9610d56565b6040516104839190613901565b3480156104f257600080fd5b50610506610501366004613914565b610de8565b6040516001600160a01b039091168152602001610483565b34801561052a57600080fd5b5061053e610539366004613942565b610e82565b005b61047761054e36600461396e565b610f97565b34801561055f57600080fd5b5061053e61056e3660046139ea565b611324565b34801561057f57600080fd5b506009546104a1565b34801561059457600080fd5b5061059d6113bf565b6040516104839190613a1d565b3480156105b657600080fd5b5061053e6105c53660046139ea565b611660565b3480156105d657600080fd5b5061053e6117d6565b3480156105eb57600080fd5b5061053e6105fa366004613a37565b611855565b34801561060b57600080fd5b506104a1600f5481565b34801561062157600080fd5b5061053e6106303660046139ea565b611886565b34801561064157600080fd5b506104a1610650366004613942565b611928565b34801561066157600080fd5b50601a54601b54610670919082565b60408051928352602083019190915201610483565b34801561069157600080fd5b506104a1600e5481565b3480156106a757600080fd5b506104a16119be565b3480156106bc57600080fd5b506104d9611a6a565b3480156106d157600080fd5b5061053e611af8565b3480156106e657600080fd5b5061053e6106f5366004613914565b611bc7565b34801561070657600080fd5b5061053e610715366004613a37565b611c41565b34801561072657600080fd5b5061053e611c5c565b34801561073b57600080fd5b506104d9611cd6565b34801561075057600080fd5b506104a161075f366004613914565b611ce5565b34801561077057600080fd5b50610477611d78565b34801561078557600080fd5b5061053e610794366004613b17565b611d91565b3480156107a557600080fd5b506104d9611dfe565b3480156107ba57600080fd5b5061053e6107c93660046139ea565b611e0b565b3480156107da57600080fd5b506104a160125481565b3480156107f057600080fd5b506104a1611e8d565b34801561080557600080fd5b50610506610814366004613914565b611e9f565b34801561082557600080fd5b506104a160135481565b34801561083b57600080fd5b5061053e611f16565b34801561085057600080fd5b506104a160185481565b34801561086657600080fd5b5061053e610875366004613914565b611f90565b34801561088657600080fd5b506104a1601e5481565b34801561089c57600080fd5b506104a16108ab3660046139ea565b612017565b3480156108bc57600080fd5b5061053e61209e565b3480156108d157600080fd5b506104a16120d4565b3480156108e657600080fd5b506104a161210e565b3480156108fb57600080fd5b5061053e61090a366004613914565b612148565b34801561091b57600080fd5b5061053e61092a366004613914565b6121c2565b34801561093b57600080fd5b5061053e61094a366004613914565b61223c565b34801561095b57600080fd5b506000546001600160a01b0316610506565b34801561097957600080fd5b5061053e610988366004613914565b6122b6565b34801561099957600080fd5b506104d96123eb565b3480156109ae57600080fd5b506104a160145481565b3480156109c457600080fd5b5061053e6109d3366004613b60565b6123fa565b3480156109e457600080fd5b50600b546109f29060ff1681565b6040516104839190613bae565b348015610a0b57600080fd5b506104a160175481565b348015610a2157600080fd5b50601854600e541015610477565b348015610a3b57600080fd5b506104a1600d5481565b348015610a5157600080fd5b5061053e610a60366004613bbb565b612409565b348015610a7157600080fd5b5061053e610a80366004613c0a565b612493565b348015610a9157600080fd5b506104a16124cb565b348015610aa657600080fd5b506104a160165481565b348015610abc57600080fd5b5061053e6124e3565b348015610ad157600080fd5b506104a1610ae03660046139ea565b60236020526000908152604090205481565b348015610afe57600080fd5b5061053e610b0d366004613c8a565b612560565b348015610b1e57600080fd5b506104d9610b2d366004613914565b612779565b348015610b3e57600080fd5b5060016104a1565b348015610b5257600080fd5b506104a1612893565b348015610b6757600080fd5b5061053e6128f3565b348015610b7c57600080fd5b506104a160105481565b348015610b9257600080fd5b506019546104779060ff1681565b348015610bac57600080fd5b506104a1601f5481565b348015610bc257600080fd5b5061053e610bd1366004613b17565b612970565b348015610be257600080fd5b5061053e610bf1366004613914565b6129dc565b348015610c0257600080fd5b5061053e610c11366004613d42565b612a59565b348015610c2257600080fd5b506104a160155481565b348015610c3857600080fd5b5061053e612af4565b348015610c4d57600080fd5b50600b546109f290610100900460ff1681565b348015610c6c57600080fd5b50610477610c7b366004613d64565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610cb557600080fd5b5061053e610cc43660046139ea565b612b71565b348015610cd557600080fd5b506104a160115481565b6000610cea82612c0c565b92915050565b6000610cfa6113bf565b600c811115610d0b57610d0b613a07565b60071480610d315750610d1c6113bf565b600c811115610d2d57610d2d613a07565b6008145b15610d3d5750601b5490565b50600090565b6000600e54610d50612c31565b14905090565b606060018054610d6590613d92565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9190613d92565b8015610dde5780601f10610db357610100808354040283529160200191610dde565b820191906000526020600020905b815481529060010190602001808311610dc157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610e665760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610e8d82611e9f565b9050806001600160a01b0316836001600160a01b031603610efa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610e5d565b336001600160a01b0382161480610f165750610f168133610c7b565b610f885760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610e5d565b610f928383612c4d565b505050565b60006002601c5403610feb5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610e5d565b6002601c5533321461103f5760405162461bcd60e51b815260206004820152601860248201527f436f6e7472616374206973206e6f7420616c6c6f7765642e00000000000000006044820152606401610e5d565b60086110496113bf565b600c81111561105a5761105a613a07565b1461109d5760405162461bcd60e51b815260206004820152601360248201527229b0b632903737ba1030bb30b4b630b136329760691b6044820152606401610e5d565b60086110a76113bf565b600c8111156110b8576110b8613a07565b036111d557600d5484111561110f5760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420657863656564207472616e73616374696f6e206c696d6974732e006044820152606401610e5d565b61112161111a6119be565b8590612cbb565b3410156111665760405162461bcd60e51b815260206004820152601360248201527224b739bab33334b1b4b2b73a10333ab732399760691b6044820152606401610e5d565b601054611187611174611e8d565b6111818761118160095490565b90612cce565b11156111d55760405162461bcd60e51b815260206004820152601b60248201527f507572636861736520657863656564206d617820737570706c792e00000000006044820152606401610e5d565b601f54336000908152602360205260409020546111f3908690613de2565b11156112385760405162461bcd60e51b815260206004820152601460248201527313585e081c1d5c98da185cd9481c995858da195960621b6044820152606401610e5d565b336001600160a01b03167f4b0cacb16c30ff095046c0da1951bb3f818c714beffd03003ad8c308122be9ff8484604051611273929190613dfa565b60405180910390a260086112856113bf565b600c81111561129657611296613a07565b03611316576112a53385612cda565b5083600e546112b49190613de2565b600e556112c5601854600e54101590565b156112db576017546112d79043613de2565b6016555b601d546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611314573d6000803e3d6000fd5b505b50600180601c559392505050565b6000546001600160a01b0316331461134e5760405162461bcd60e51b8152600401610e5d90613e29565b6001600160a01b03811661136157600080fd5b600c80546001600160a01b0383166001600160a01b03199091168117909155600b805463ff000000191663010000001790556040517f5b92f2f101ec36b062768cd1330146da74961809b300919c88c6853ca703261590600090a250565b600e5460009081600b54610100900460ff1660028111156113e2576113e2613a07565b1415801561140657506002600b5460ff16600281111561140457611404613a07565b145b1561141357600c91505090565b6000600b54610100900460ff16600281111561143157611431613a07565b1415801561145557506001600b5460ff16600281111561145357611453613a07565b145b1561146257600b91505090565b6002600b54610100900460ff16600281111561148057611480613a07565b1480156114935750611490612c31565b81145b156114a057600a91505090565b6000600b54610100900460ff1660028111156114be576114be613a07565b036114cb57600091505090565b6002600b54610100900460ff1660028111156114e9576114e9613a07565b1480156114f75750601b5415155b80156115045750601b5443115b1561151157600991505090565b6002600b54610100900460ff16600281111561152f5761152f613a07565b14801561153d5750601a5415155b801561154b5750601a544310155b1561157e57601854600e54101561156457600891505090565b601654431015611575576007611578565b60085b91505090565b6002600b54610100900460ff16600281111561159c5761159c613a07565b1480156115aa5750601a5415155b80156115b75750601a5443105b8061161357506002600b54610100900460ff1660028111156115db576115db613a07565b1480156115e95750601a5415155b80156115f65750601a5443115b80156116065750601854600e5410155b8015611613575060165443105b1561162057600791505090565b6002600b54610100900460ff16600281111561163e5761163e613a07565b14801561164b5750601a54155b1561165857600691505090565b600091505090565b601d5460405163673e156160e11b81523360048201526000916001600160a01b03169063ce7c2ac290602401602060405180830381865afa1580156116a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116cd9190613e5e565b1161170e5760405162461bcd60e51b81526020600482015260116024820152703737ba10309039b430b932b437b63232b960791b6044820152606401610e5d565b336001600160a01b038216148061172f57506000546001600160a01b031633145b6117745760405162461bcd60e51b81526020600482015260166024820152752932b632b0b9b29d103737903832b936b4b9b9b4b7b760511b6044820152606401610e5d565b601d54604051631916558760e01b81526001600160a01b03838116600483015290911690631916558790602401600060405180830381600087803b1580156117bb57600080fd5b505af11580156117cf573d6000803e3d6000fd5b5050505050565b600b5462010000900460ff1680156117ff5750600b54600160201b90046001600160a01b031633145b61181b5760405162461bcd60e51b8152600401610e5d90613e77565b600b805461ff0019166102001790556040517fca29b392f61fad3260f009b6fc1de9d8efda05563601b6c91396b795eeefff2e90600090a1565b61185f3382612d96565b61187b5760405162461bcd60e51b8152600401610e5d90613ea7565b610f92838383612e8d565b6000546001600160a01b031633146118b05760405162461bcd60e51b8152600401610e5d90613e29565b6001600160a01b0381166118c357600080fd5b600b805462ff0000196001600160a01b038416600160201b81029190911663ff010000600160c01b03199092169190911762010000179091556040517fa508d3b137dbcdf7e06f84833fe4aca137451e1e3309f454a207d8fb85c2ccd890600090a250565b600061193383612017565b82106119955760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610e5d565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600060086119ca6113bf565b600c8111156119db576119db613a07565b03611a635760195460ff166119f1575060145490565b601a54600090611a019043613ef8565b90506000611a26601254611a2060155485612cbb90919063ffffffff16565b90613034565b9050611a3f60135460145461304090919063ffffffff16565b8110611a4f576013549250505090565b601454611a5c9082613040565b9250505090565b5060145490565b60218054611a7790613d92565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa390613d92565b8015611af05780601f10611ac557610100808354040283529160200191611af0565b820191906000526020600020905b815481529060010190602001808311611ad357829003601f168201915b505050505081565b600b546301000000900460ff168015611b1b5750600c546001600160a01b031633145b611b605760405162461bcd60e51b815260206004820152601660248201527527b7363c9033b7bb32b93737b91030b63637bbb2b21760511b6044820152606401610e5d565b6040514790339082156108fc029083906000818181858888f19350505050158015611b8f573d6000803e3d6000fd5b506040518181527f807631352cb3389b100202fae783b0b18fedc90bd3a438433796cb89462f4fad906020015b60405180910390a150565b600b5462010000900460ff168015611bf05750600b54600160201b90046001600160a01b031633145b611c0c5760405162461bcd60e51b8152600401610e5d90613e77565b60118190556040518181527fe1fb8f58d0fe8f41debc65095588c6530f5b3c96964aee78a164712c7ab7cb3f90602001611bbc565b610f9283838360405180602001604052806000815250612493565b600b5462010000900460ff168015611c855750600b54600160201b90046001600160a01b031633145b611ca15760405162461bcd60e51b8152600401610e5d90613e77565b600b805460ff191690556040517f4f0f641a7e3d2c654d00279745eb7cf977b86891e3c7dd11cf315972d02089ce90600090a1565b606060218054610d6590613d92565b6000611cf060095490565b8210611d535760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610e5d565b60098281548110611d6657611d66613f0f565b90600052602060002001549050919050565b600080601e54118015611d8c5750601e5443115b905090565b6000546001600160a01b03163314611dbb5760405162461bcd60e51b8152600401610e5d90613e29565b8051611dce9060219060208401906137dd565b507f046f9884af089932879d0fd71ed564287ec681b1f36c2671046b7d38455c4cee81604051611bbc9190613901565b60208054611a7790613d92565b6000546001600160a01b03163314611e355760405162461bcd60e51b8152600401610e5d90613e29565b6040516001600160a01b038216907fa85a8f69b8386043e9a2a9583184a456edfc2b0f7aa3f012334a5f9bdd2b2e8890600090a26001600160a01b03166000908152602260205260409020805460ff19166001179055565b6000600f54601154611d8c9190613ef8565b6000818152600360205260408120546001600160a01b031680610cea5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610e5d565b600b5462010000900460ff168015611f3f5750600b54600160201b90046001600160a01b031633145b611f5b5760405162461bcd60e51b8152600401610e5d90613e77565b6019805460ff191690556040517f050c1c12c59ca346497fa402101729d7f0399460ab7989fcda9a4442de17329490600090a1565b600b5462010000900460ff168015611fb95750600b54600160201b90046001600160a01b031633145b611fd55760405162461bcd60e51b8152600401610e5d90613e77565b60008111611fe257600080fd5b600d8190556040518181527f9a648718482da8f96290a774253e568515fd7295651319eb41acbd8533f1951390602001611bbc565b60006001600160a01b0382166120825760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610e5d565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146120c85760405162461bcd60e51b8152600401610e5d90613e29565b6120d2600061304c565b565b600060086120e06113bf565b600c8111156120f1576120f1613a07565b03610d3d57601854600e54106121075750600190565b5060185490565b6000600861211a6113bf565b600c81111561212b5761212b613a07565b03610d3d57601854600e54106121415750600090565b50600e5490565b600b5462010000900460ff1680156121715750600b54600160201b90046001600160a01b031633145b61218d5760405162461bcd60e51b8152600401610e5d90613e77565b60148190556040518181527ff959ca468c08c9457955f238a0ad6a31fc63f09b1e9bbafb4e409f19163bbe1490602001611bbc565b600b5462010000900460ff1680156121eb5750600b54600160201b90046001600160a01b031633145b6122075760405162461bcd60e51b8152600401610e5d90613e77565b60188190556040518181527f7c416455591047caa05876a4b574da92570d3402cc091a549a87b40434833f0a90602001611bbc565b600b5462010000900460ff1680156122655750600b54600160201b90046001600160a01b031633145b6122815760405162461bcd60e51b8152600401610e5d90613e77565b60128190556040518181527fb554da5220087b9d9a11bb816eaf7e5e194964fae28c86915daf6dc936c0e89590602001611bbc565b600b5462010000900460ff1680156122df5750600b54600160201b90046001600160a01b031633145b6122fb5760405162461bcd60e51b8152600401610e5d90613e77565b600081116123575760405162461bcd60e51b815260206004820152602360248201527f426c6f636b206e756d626572206d75737420626520677265617465722074686160448201526206e20360ec1b6064820152608401610e5d565b601a5481116123b65760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f74207374617274206265666f7265207075626c69632073616c65206044820152641cdd185c9d60da1b6064820152608401610e5d565b60168190556040518181527fda45f78a1473dc35ff479dd7bf06cc2cb07edc789cbcc5f0bac19fbb6e58345e90602001611bbc565b606060028054610d6590613d92565b61240533838361309c565b5050565b600b5462010000900460ff1680156124325750600b54600160201b90046001600160a01b031633145b61244e5760405162461bcd60e51b8152600401610e5d90613e77565b8051601a819055602080830151601b81905560408051938452918301527f70441bfeec4000206c01cb310438ec41bb281f98d8ea4f08f086e3329ff4eb299101611bbc565b61249d3383612d96565b6124b95760405162461bcd60e51b8152600401610e5d90613ea7565b6124c58484848461316a565b50505050565b60006124d660095490565b601054611d8c9190613ef8565b600b5462010000900460ff16801561250c5750600b54600160201b90046001600160a01b031633145b6125285760405162461bcd60e51b8152600401610e5d90613e77565b600b805460ff191660021790556040517f58abff1119ad7689f2843996246b31faf77e0a40545d5085ee99361a768a3f7d90600090a1565b6002601c54036125b25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610e5d565b6002601c553360009081526022602052604090205460ff166126165760405162461bcd60e51b815260206004820152601a60248201527f4f6e6c792061697264726f7020726f6c6520616c6c6f7765642e0000000000006044820152606401610e5d565b6010548251612631906126299084612cbb565b600954611181565b111561267f5760405162461bcd60e51b815260206004820152601860248201527f457863656564206d617820737570706c79206c696d69742e00000000000000006044820152606401610e5d565b601154825161269b906126929084612cbb565b600f5490612cce565b11156126e15760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a103932b9b2b93b329760591b6044820152606401610e5d565b81516126f1906126929083612cbb565b600f5560005b82518110156127365761272383828151811061271557612715613f0f565b602002602001015183612cda565b508061272e81613f25565b9150506126f7565b507f08b3e41950189550b73643a90143efc8a526a17dc07e6abe0fb50ce7c10b50fc8282604051612768929190613f3e565b60405180910390a150506001601c55565b606061278460095490565b8211156127c65760405162461bcd60e51b815260206004820152601060248201526f2a37b5b2b7103737ba1032bc34b9ba1760811b6044820152606401610e5d565b6127ce611d78565b61286257602080546127df90613d92565b80601f016020809104026020016040519081016040528092919081815260200182805461280b90613d92565b80156128585780601f1061282d57610100808354040283529160200191612858565b820191906000526020600020905b81548152906001019060200180831161283b57829003601f168201915b5050505050610cea565b602161286d8361319d565b60405160200161287e929190613fab565b60405160208183030381529060405292915050565b600061289d6113bf565b600c8111156128ae576128ae613a07565b600714806128d457506128bf6113bf565b600c8111156128d0576128d0613a07565b6008145b15610d3d57601854600e5410156128ec5750601a5490565b5060165490565b600b5462010000900460ff16801561291c5750600b54600160201b90046001600160a01b031633145b6129385760405162461bcd60e51b8152600401610e5d90613e77565b6019805460ff191660011790556040517f47b2c4e2d3f2f2f7086b4c02b1dbf0986f42bdfe123f50b37756197769495be690600090a1565b6000546001600160a01b0316331461299a5760405162461bcd60e51b8152600401610e5d90613e29565b80516129ac90602090818401906137dd565b507f791a768a5b9557254d91daf128b9a720119cf95e342b163b85210b53a9ead7a981604051611bbc9190613901565b600b5462010000900460ff168015612a055750600b54600160201b90046001600160a01b031633145b612a215760405162461bcd60e51b8152600401610e5d90613e77565b6040518181527f9ddcb1d2300d94c11e310fcb4f446426b42f1926ed0763f9cb24ed5b0c54d8a39060200160405180910390a1601e55565b600b5462010000900460ff168015612a825750600b54600160201b90046001600160a01b031633145b612a9e5760405162461bcd60e51b8152600401610e5d90613e77565b601454811115612aad57600080fd5b6013829055601581905560408051838152602081018390527f204ef244ed872a9029be787cf59036a2fe59f33439b25bf80bab6449af8036ac910160405180910390a15050565b600b5462010000900460ff168015612b1d5750600b54600160201b90046001600160a01b031633145b612b395760405162461bcd60e51b8152600401610e5d90613e77565b600b805460ff191660011790556040517f6d4e2212f1a4fcfebfe8fd91368752c56e02d80a28c18c5cce3d812cfcbcb4a790600090a1565b6000546001600160a01b03163314612b9b5760405162461bcd60e51b8152600401610e5d90613e29565b6001600160a01b038116612c005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e5d565b612c098161304c565b50565b60006001600160e01b0319821663780e9d6360e01b1480610cea5750610cea8261329e565b600060105460115411610d3d57601154601054611d8c91613040565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612c8282611e9f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612cc78284614065565b9392505050565b6000612cc78284613de2565b6000805b82811015612d8c576000612cf160095490565b6001600160a01b03861660009081526023602052604081208054929350600192909190612d1f908490613de2565b9091555050601054811015612d7957612d4285612d3d836001613de2565b6132ee565b60405181906001600160a01b038716907fa512fb2532ca8587f236380171326ebb69670e86a2ba0c4412a3fcca4c3ada9b90600090a35b5080612d8481613f25565b915050612cde565b5060019392505050565b6000818152600360205260408120546001600160a01b0316612e0f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610e5d565b6000612e1a83611e9f565b9050806001600160a01b0316846001600160a01b03161480612e555750836001600160a01b0316612e4a84610de8565b6001600160a01b0316145b80612e8557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612ea082611e9f565b6001600160a01b031614612f045760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610e5d565b6001600160a01b038216612f665760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610e5d565b612f71838383613308565b612f7c600082612c4d565b6001600160a01b0383166000908152600460205260408120805460019290612fa5908490613ef8565b90915550506001600160a01b0382166000908152600460205260408120805460019290612fd3908490613de2565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000612cc7828461409a565b6000612cc78284613ef8565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316036130fd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610e5d565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b613175848484612e8d565b61318184848484613313565b6124c55760405162461bcd60e51b8152600401610e5d906140ae565b6060816000036131c45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156131ee57806131d881613f25565b91506131e79050600a8361409a565b91506131c8565b60008167ffffffffffffffff81111561320957613209613a78565b6040519080825280601f01601f191660200182016040528015613233576020820181803683370190505b5090505b8415612e8557613248600183613ef8565b9150613255600a86614100565b613260906030613de2565b60f81b81838151811061327557613275613f0f565b60200101906001600160f81b031916908160001a905350613297600a8661409a565b9450613237565b60006001600160e01b031982166380ac58cd60e01b14806132cf57506001600160e01b03198216635b5e139f60e01b145b80610cea57506301ffc9a760e01b6001600160e01b0319831614610cea565b612405828260405180602001604052806000815250613414565b610f92838383613447565b60006001600160a01b0384163b1561340957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613357903390899088908890600401614114565b6020604051808303816000875af1925050508015613392575060408051601f3d908101601f1916820190925261338f91810190614151565b60015b6133ef573d8080156133c0576040519150601f19603f3d011682016040523d82523d6000602084013e6133c5565b606091505b5080516000036133e75760405162461bcd60e51b8152600401610e5d906140ae565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612e85565b506001949350505050565b61341e83836134ff565b61342b6000848484613313565b610f925760405162461bcd60e51b8152600401610e5d906140ae565b6001600160a01b0383166134a25761349d81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6134c5565b816001600160a01b0316836001600160a01b0316146134c5576134c5838261364d565b6001600160a01b0382166134dc57610f92816136ea565b826001600160a01b0316826001600160a01b031614610f9257610f928282613799565b6001600160a01b0382166135555760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610e5d565b6000818152600360205260409020546001600160a01b0316156135ba5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610e5d565b6135c660008383613308565b6001600160a01b03821660009081526004602052604081208054600192906135ef908490613de2565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161365a84612017565b6136649190613ef8565b6000838152600860205260409020549091508082146136b7576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906136fc90600190613ef8565b6000838152600a60205260408120546009805493945090928490811061372457613724613f0f565b90600052602060002001549050806009838154811061374557613745613f0f565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061377d5761377d61416e565b6001900381819060005260206000200160009055905550505050565b60006137a483612017565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546137e990613d92565b90600052602060002090601f01602090048101928261380b5760008555613851565b82601f1061382457805160ff1916838001178555613851565b82800160010185558215613851579182015b82811115613851578251825591602001919060010190613836565b5061385d929150613861565b5090565b5b8082111561385d5760008155600101613862565b6001600160e01b031981168114612c0957600080fd5b60006020828403121561389e57600080fd5b8135612cc781613876565b60005b838110156138c45781810151838201526020016138ac565b838111156124c55750506000910152565b600081518084526138ed8160208601602086016138a9565b601f01601f19169290920160200192915050565b602081526000612cc760208301846138d5565b60006020828403121561392657600080fd5b5035919050565b6001600160a01b0381168114612c0957600080fd5b6000806040838503121561395557600080fd5b82356139608161392d565b946020939093013593505050565b60008060006040848603121561398357600080fd5b83359250602084013567ffffffffffffffff808211156139a257600080fd5b818601915086601f8301126139b657600080fd5b8135818111156139c557600080fd5b8760208285010111156139d757600080fd5b6020830194508093505050509250925092565b6000602082840312156139fc57600080fd5b8135612cc78161392d565b634e487b7160e01b600052602160045260246000fd5b60208101600d8310613a3157613a31613a07565b91905290565b600080600060608486031215613a4c57600080fd5b8335613a578161392d565b92506020840135613a678161392d565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613ab757613ab7613a78565b604052919050565b600067ffffffffffffffff831115613ad957613ad9613a78565b613aec601f8401601f1916602001613a8e565b9050828152838383011115613b0057600080fd5b828260208301376000602084830101529392505050565b600060208284031215613b2957600080fd5b813567ffffffffffffffff811115613b4057600080fd5b8201601f81018413613b5157600080fd5b612e8584823560208401613abf565b60008060408385031215613b7357600080fd5b8235613b7e8161392d565b915060208301358015158114613b9357600080fd5b809150509250929050565b60038110612c0957612c09613a07565b60208101613a3183613b9e565b600060408284031215613bcd57600080fd5b6040516040810181811067ffffffffffffffff82111715613bf057613bf0613a78565b604052823581526020928301359281019290925250919050565b60008060008060808587031215613c2057600080fd5b8435613c2b8161392d565b93506020850135613c3b8161392d565b925060408501359150606085013567ffffffffffffffff811115613c5e57600080fd5b8501601f81018713613c6f57600080fd5b613c7e87823560208401613abf565b91505092959194509250565b60008060408385031215613c9d57600080fd5b823567ffffffffffffffff80821115613cb557600080fd5b818501915085601f830112613cc957600080fd5b8135602082821115613cdd57613cdd613a78565b8160051b9250613cee818401613a8e565b8281529284018101928181019089851115613d0857600080fd5b948201945b84861015613d325785359350613d228461392d565b8382529482019490820190613d0d565b9997909101359750505050505050565b60008060408385031215613d5557600080fd5b50508035926020909101359150565b60008060408385031215613d7757600080fd5b8235613d828161392d565b91506020830135613b938161392d565b600181811c90821680613da657607f821691505b602082108103613dc657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115613df557613df5613dcc565b500190565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215613e7057600080fd5b5051919050565b60208082526016908201527527b7363c9037b832b930ba37b91030b63637bbb2b21760511b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082821015613f0a57613f0a613dcc565b500390565b634e487b7160e01b600052603260045260246000fd5b600060018201613f3757613f37613dcc565b5060010190565b604080825283519082018190526000906020906060840190828701845b82811015613f805781516001600160a01b031684529284019290840190600101613f5b565b50505092019290925292915050565b60008151613fa18185602086016138a9565b9290920192915050565b600080845481600182811c915080831680613fc757607f831692505b60208084108203613fe657634e487b7160e01b86526022600452602486fd5b818015613ffa576001811461400b57614038565b60ff19861689528489019650614038565b60008b81526020902060005b868110156140305781548b820152908501908301614017565b505084890196505b50505050505061405c61404b8286613f8f565b64173539b7b760d91b815260050190565b95945050505050565b600081600019048311821515161561407f5761407f613dcc565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826140a9576140a9614084565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261410f5761410f614084565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614147908301846138d5565b9695505050505050565b60006020828403121561416357600080fd5b8151612cc781613876565b634e487b7160e01b600052603160045260246000fdfea264697066735822122053e25253d8e0e22a6c67b681086949ea674f5694cd71ab56540350978c5b965f64736f6c634300080d00336080604052604051620011603803806200116083398101604081905262000026916200042e565b8051825114620000985760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620000eb5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200008f565b60005b82518110156200015757620001428382815181106200011157620001116200050c565b60200260200101518383815181106200012e576200012e6200050c565b60200260200101516200016060201b60201c565b806200014e8162000538565b915050620000ee565b5050506200056f565b6001600160a01b038216620001cd5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200008f565b600081116200021f5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200008f565b6001600160a01b038216600090815260026020526040902054156200029b5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200008f565b60048054600181019091557f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319166001600160a01b0384169081179091556000908152600260205260408120829055546200030390829062000554565b600055604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156200038d576200038d6200034c565b604052919050565b60006001600160401b03821115620003b157620003b16200034c565b5060051b60200190565b600082601f830112620003cd57600080fd5b81516020620003e6620003e08362000395565b62000362565b82815260059290921b840181019181810190868411156200040657600080fd5b8286015b848110156200042357805183529183019183016200040a565b509695505050505050565b600080604083850312156200044257600080fd5b82516001600160401b03808211156200045a57600080fd5b818501915085601f8301126200046f57600080fd5b8151602062000482620003e08362000395565b82815260059290921b84018101918181019089841115620004a257600080fd5b948201945b83861015620004d95785516001600160a01b0381168114620004c95760008081fd5b82529482019490820190620004a7565b91880151919650909350505080821115620004f357600080fd5b506200050285828601620003bb565b9150509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016200054d576200054d62000522565b5060010190565b600082198211156200056a576200056a62000522565b500190565b610be1806200057f6000396000f3fe60806040526004361061008a5760003560e01c80638b83209b116100595780638b83209b146101845780639852595c146101bc578063ce7c2ac2146101f2578063d79779b214610228578063e33b7de31461025e57600080fd5b806319165587146100d85780633a98ef39146100fa578063406072a91461011e57806348b750441461016457600080fd5b366100d3577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156100e457600080fd5b506100f86100f3366004610955565b610273565b005b34801561010657600080fd5b506000545b6040519081526020015b60405180910390f35b34801561012a57600080fd5b5061010b610139366004610972565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b34801561017057600080fd5b506100f861017f366004610972565b6103ad565b34801561019057600080fd5b506101a461019f3660046109ab565b610589565b6040516001600160a01b039091168152602001610115565b3480156101c857600080fd5b5061010b6101d7366004610955565b6001600160a01b031660009081526003602052604090205490565b3480156101fe57600080fd5b5061010b61020d366004610955565b6001600160a01b031660009081526002602052604090205490565b34801561023457600080fd5b5061010b610243366004610955565b6001600160a01b031660009081526005602052604090205490565b34801561026a57600080fd5b5060015461010b565b6001600160a01b0381166000908152600260205260409020546102b15760405162461bcd60e51b81526004016102a8906109c4565b60405180910390fd5b60006102bc60015490565b6102c69047610a20565b905060006102f383836102ee866001600160a01b031660009081526003602052604090205490565b6105b9565b9050806000036103155760405162461bcd60e51b81526004016102a890610a38565b6001600160a01b0383166000908152600360205260408120805483929061033d908490610a20565b9250508190555080600160008282546103569190610a20565b90915550610366905083826105fe565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6001600160a01b0381166000908152600260205260409020546103e25760405162461bcd60e51b81526004016102a8906109c4565b6001600160a01b0382166000908152600560205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa15801561043f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104639190610a83565b61046d9190610a20565b905060006104a683836102ee87876001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b9050806000036104c85760405162461bcd60e51b81526004016102a890610a38565b6001600160a01b038085166000908152600660209081526040808320938716835292905290812080548392906104ff908490610a20565b90915550506001600160a01b0384166000908152600560205260408120805483929061052c908490610a20565b9091555061053d905084848361071c565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b60006004828154811061059e5761059e610a9c565b6000918252602090912001546001600160a01b031692915050565b600080546001600160a01b0385168252600260205260408220548391906105e09086610ab2565b6105ea9190610ad1565b6105f49190610af3565b90505b9392505050565b8047101561064e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016102a8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461069b576040519150601f19603f3d011682016040523d82523d6000602084013e6106a0565b606091505b50509050806107175760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016102a8565b505050565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180516001600160e01b031663a9059cbb60e01b17905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656490840152610717928692916000916107ac918516908490610829565b80519091501561071757808060200190518101906107ca9190610b0a565b6107175760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102a8565b60606105f48484600085856001600160a01b0385163b61088b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102a8565b600080866001600160a01b031685876040516108a79190610b5c565b60006040518083038185875af1925050503d80600081146108e4576040519150601f19603f3d011682016040523d82523d6000602084013e6108e9565b606091505b50915091506108f9828286610904565b979650505050505050565b606083156109135750816105f7565b8251156109235782518084602001fd5b8160405162461bcd60e51b81526004016102a89190610b78565b6001600160a01b038116811461095257600080fd5b50565b60006020828403121561096757600080fd5b81356105f78161093d565b6000806040838503121561098557600080fd5b82356109908161093d565b915060208301356109a08161093d565b809150509250929050565b6000602082840312156109bd57600080fd5b5035919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115610a3357610a33610a0a565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b600060208284031215610a9557600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615610acc57610acc610a0a565b500290565b600082610aee57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015610b0557610b05610a0a565b500390565b600060208284031215610b1c57600080fd5b815180151581146105f757600080fd5b60005b83811015610b47578181015183820152602001610b2f565b83811115610b56576000848401525b50505050565b60008251610b6e818460208701610b2c565b9190910192915050565b6020815260008251806020840152610b97816040850160208701610b2c565b601f01601f1916919091016040019291505056fea264697066735822122041b7492bf22540a77f025c18a97fe6ab82d8ecff39f420e5dce77ef83a80495664736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000018fae27693b400000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001030784f4720627920307853747564696f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000830784f475041535300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000100000000000000000000000035c95241eb490b8adb6ddbc6f9b21a50868d63d100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064

Deployed Bytecode

0x6080604052600436106104525760003560e01c806370a082311161023f578063bbe4917a11610139578063d9ea5b23116100b6578063dfe363ef1161007a578063dfe363ef14610c2c578063e4f2487a14610c41578063e985e9c514610c60578063f2fde38b14610ca9578063f3b3a9fa14610cc957600080fd5b8063d9ea5b2314610ba0578063da1b9e0814610bb6578063da324a3014610bd6578063dd7f40cc14610bf6578063dfb2866d14610c1657600080fd5b8063c91621c2116100fd578063c91621c214610b32578063c9a8d9f714610b46578063d1fe033d14610b5b578063d5abeb0114610b70578063d898ce6914610b8657600080fd5b8063bbe4917a14610a9a578063be008ccb14610ab0578063bfb89d9714610ac5578063c204642c14610af2578063c87b56dd14610b1257600080fd5b806395d89b41116101c7578063b3ce8b271161018b578063b3ce8b2714610a15578063b5154dae14610a2f578063b87ced4e14610a45578063b88d4fde14610a65578063bbc33aa514610a8557600080fd5b806395d89b411461098d5780639b6860c8146109a2578063a22cb465146109b8578063a2fb7b5d146109d8578063ac6b2033146109ff57600080fd5b8063791a25191161020e578063791a2519146108ef57806382cf4bc41461090f578063839ed56c1461092f5780638da5cb5b1461094f57806393845dee1461096d57600080fd5b806370a0823114610890578063715018a6146108b057806373b19e8f146108c5578063776451b0146108da57600080fd5b80633ca4fb761161035057806356c4aedd116102d857806363fea81c1161029c57806363fea81c14610819578063644bd7fa1461082f57806364826b7a1461084457806364bfa5461461085a57806366bb81c71461087a57600080fd5b806356c4aedd1461079957806358e39b90146107ae5780635e162699146107ce5780635e9f9613146107e45780636352211e146107f957600080fd5b8063447321801161031f578063447321801461071a5780634e99b8001461072f5780634f6ccce71461074457806354214f691461076457806355f804b31461077957600080fd5b80633ca4fb76146106b05780633ccfd60b146106c55780634256dbe3146106da57806342842e0e146106fa57600080fd5b80631865c57d116103de5780632f1d5a60116103a25780632f1d5a60146106155780632f745c591461063557806333bc1c5c146106555780633828914a14610685578063398c0ec11461069b57600080fd5b80631865c57d1461058857806319165587146105aa5780632316b4da146105ca57806323b872dd146105df578063266dab34146105ff57600080fd5b8063081812fc11610425578063081812fc146104e6578063095ea7b31461051e5780630f30cde0146105405780631197705e1461055357806318160ddd1461057357600080fd5b806301ffc9a714610457578063031ab9f51461048c578063048e0aa0146104af57806306fdde03146104c4575b600080fd5b34801561046357600080fd5b5061047761047236600461388c565b610cdf565b60405190151581526020015b60405180910390f35b34801561049857600080fd5b506104a1610cf0565b604051908152602001610483565b3480156104bb57600080fd5b50610477610d43565b3480156104d057600080fd5b506104d9610d56565b6040516104839190613901565b3480156104f257600080fd5b50610506610501366004613914565b610de8565b6040516001600160a01b039091168152602001610483565b34801561052a57600080fd5b5061053e610539366004613942565b610e82565b005b61047761054e36600461396e565b610f97565b34801561055f57600080fd5b5061053e61056e3660046139ea565b611324565b34801561057f57600080fd5b506009546104a1565b34801561059457600080fd5b5061059d6113bf565b6040516104839190613a1d565b3480156105b657600080fd5b5061053e6105c53660046139ea565b611660565b3480156105d657600080fd5b5061053e6117d6565b3480156105eb57600080fd5b5061053e6105fa366004613a37565b611855565b34801561060b57600080fd5b506104a1600f5481565b34801561062157600080fd5b5061053e6106303660046139ea565b611886565b34801561064157600080fd5b506104a1610650366004613942565b611928565b34801561066157600080fd5b50601a54601b54610670919082565b60408051928352602083019190915201610483565b34801561069157600080fd5b506104a1600e5481565b3480156106a757600080fd5b506104a16119be565b3480156106bc57600080fd5b506104d9611a6a565b3480156106d157600080fd5b5061053e611af8565b3480156106e657600080fd5b5061053e6106f5366004613914565b611bc7565b34801561070657600080fd5b5061053e610715366004613a37565b611c41565b34801561072657600080fd5b5061053e611c5c565b34801561073b57600080fd5b506104d9611cd6565b34801561075057600080fd5b506104a161075f366004613914565b611ce5565b34801561077057600080fd5b50610477611d78565b34801561078557600080fd5b5061053e610794366004613b17565b611d91565b3480156107a557600080fd5b506104d9611dfe565b3480156107ba57600080fd5b5061053e6107c93660046139ea565b611e0b565b3480156107da57600080fd5b506104a160125481565b3480156107f057600080fd5b506104a1611e8d565b34801561080557600080fd5b50610506610814366004613914565b611e9f565b34801561082557600080fd5b506104a160135481565b34801561083b57600080fd5b5061053e611f16565b34801561085057600080fd5b506104a160185481565b34801561086657600080fd5b5061053e610875366004613914565b611f90565b34801561088657600080fd5b506104a1601e5481565b34801561089c57600080fd5b506104a16108ab3660046139ea565b612017565b3480156108bc57600080fd5b5061053e61209e565b3480156108d157600080fd5b506104a16120d4565b3480156108e657600080fd5b506104a161210e565b3480156108fb57600080fd5b5061053e61090a366004613914565b612148565b34801561091b57600080fd5b5061053e61092a366004613914565b6121c2565b34801561093b57600080fd5b5061053e61094a366004613914565b61223c565b34801561095b57600080fd5b506000546001600160a01b0316610506565b34801561097957600080fd5b5061053e610988366004613914565b6122b6565b34801561099957600080fd5b506104d96123eb565b3480156109ae57600080fd5b506104a160145481565b3480156109c457600080fd5b5061053e6109d3366004613b60565b6123fa565b3480156109e457600080fd5b50600b546109f29060ff1681565b6040516104839190613bae565b348015610a0b57600080fd5b506104a160175481565b348015610a2157600080fd5b50601854600e541015610477565b348015610a3b57600080fd5b506104a1600d5481565b348015610a5157600080fd5b5061053e610a60366004613bbb565b612409565b348015610a7157600080fd5b5061053e610a80366004613c0a565b612493565b348015610a9157600080fd5b506104a16124cb565b348015610aa657600080fd5b506104a160165481565b348015610abc57600080fd5b5061053e6124e3565b348015610ad157600080fd5b506104a1610ae03660046139ea565b60236020526000908152604090205481565b348015610afe57600080fd5b5061053e610b0d366004613c8a565b612560565b348015610b1e57600080fd5b506104d9610b2d366004613914565b612779565b348015610b3e57600080fd5b5060016104a1565b348015610b5257600080fd5b506104a1612893565b348015610b6757600080fd5b5061053e6128f3565b348015610b7c57600080fd5b506104a160105481565b348015610b9257600080fd5b506019546104779060ff1681565b348015610bac57600080fd5b506104a1601f5481565b348015610bc257600080fd5b5061053e610bd1366004613b17565b612970565b348015610be257600080fd5b5061053e610bf1366004613914565b6129dc565b348015610c0257600080fd5b5061053e610c11366004613d42565b612a59565b348015610c2257600080fd5b506104a160155481565b348015610c3857600080fd5b5061053e612af4565b348015610c4d57600080fd5b50600b546109f290610100900460ff1681565b348015610c6c57600080fd5b50610477610c7b366004613d64565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610cb557600080fd5b5061053e610cc43660046139ea565b612b71565b348015610cd557600080fd5b506104a160115481565b6000610cea82612c0c565b92915050565b6000610cfa6113bf565b600c811115610d0b57610d0b613a07565b60071480610d315750610d1c6113bf565b600c811115610d2d57610d2d613a07565b6008145b15610d3d5750601b5490565b50600090565b6000600e54610d50612c31565b14905090565b606060018054610d6590613d92565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9190613d92565b8015610dde5780601f10610db357610100808354040283529160200191610dde565b820191906000526020600020905b815481529060010190602001808311610dc157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610e665760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610e8d82611e9f565b9050806001600160a01b0316836001600160a01b031603610efa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610e5d565b336001600160a01b0382161480610f165750610f168133610c7b565b610f885760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610e5d565b610f928383612c4d565b505050565b60006002601c5403610feb5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610e5d565b6002601c5533321461103f5760405162461bcd60e51b815260206004820152601860248201527f436f6e7472616374206973206e6f7420616c6c6f7765642e00000000000000006044820152606401610e5d565b60086110496113bf565b600c81111561105a5761105a613a07565b1461109d5760405162461bcd60e51b815260206004820152601360248201527229b0b632903737ba1030bb30b4b630b136329760691b6044820152606401610e5d565b60086110a76113bf565b600c8111156110b8576110b8613a07565b036111d557600d5484111561110f5760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420657863656564207472616e73616374696f6e206c696d6974732e006044820152606401610e5d565b61112161111a6119be565b8590612cbb565b3410156111665760405162461bcd60e51b815260206004820152601360248201527224b739bab33334b1b4b2b73a10333ab732399760691b6044820152606401610e5d565b601054611187611174611e8d565b6111818761118160095490565b90612cce565b11156111d55760405162461bcd60e51b815260206004820152601b60248201527f507572636861736520657863656564206d617820737570706c792e00000000006044820152606401610e5d565b601f54336000908152602360205260409020546111f3908690613de2565b11156112385760405162461bcd60e51b815260206004820152601460248201527313585e081c1d5c98da185cd9481c995858da195960621b6044820152606401610e5d565b336001600160a01b03167f4b0cacb16c30ff095046c0da1951bb3f818c714beffd03003ad8c308122be9ff8484604051611273929190613dfa565b60405180910390a260086112856113bf565b600c81111561129657611296613a07565b03611316576112a53385612cda565b5083600e546112b49190613de2565b600e556112c5601854600e54101590565b156112db576017546112d79043613de2565b6016555b601d546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611314573d6000803e3d6000fd5b505b50600180601c559392505050565b6000546001600160a01b0316331461134e5760405162461bcd60e51b8152600401610e5d90613e29565b6001600160a01b03811661136157600080fd5b600c80546001600160a01b0383166001600160a01b03199091168117909155600b805463ff000000191663010000001790556040517f5b92f2f101ec36b062768cd1330146da74961809b300919c88c6853ca703261590600090a250565b600e5460009081600b54610100900460ff1660028111156113e2576113e2613a07565b1415801561140657506002600b5460ff16600281111561140457611404613a07565b145b1561141357600c91505090565b6000600b54610100900460ff16600281111561143157611431613a07565b1415801561145557506001600b5460ff16600281111561145357611453613a07565b145b1561146257600b91505090565b6002600b54610100900460ff16600281111561148057611480613a07565b1480156114935750611490612c31565b81145b156114a057600a91505090565b6000600b54610100900460ff1660028111156114be576114be613a07565b036114cb57600091505090565b6002600b54610100900460ff1660028111156114e9576114e9613a07565b1480156114f75750601b5415155b80156115045750601b5443115b1561151157600991505090565b6002600b54610100900460ff16600281111561152f5761152f613a07565b14801561153d5750601a5415155b801561154b5750601a544310155b1561157e57601854600e54101561156457600891505090565b601654431015611575576007611578565b60085b91505090565b6002600b54610100900460ff16600281111561159c5761159c613a07565b1480156115aa5750601a5415155b80156115b75750601a5443105b8061161357506002600b54610100900460ff1660028111156115db576115db613a07565b1480156115e95750601a5415155b80156115f65750601a5443115b80156116065750601854600e5410155b8015611613575060165443105b1561162057600791505090565b6002600b54610100900460ff16600281111561163e5761163e613a07565b14801561164b5750601a54155b1561165857600691505090565b600091505090565b601d5460405163673e156160e11b81523360048201526000916001600160a01b03169063ce7c2ac290602401602060405180830381865afa1580156116a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116cd9190613e5e565b1161170e5760405162461bcd60e51b81526020600482015260116024820152703737ba10309039b430b932b437b63232b960791b6044820152606401610e5d565b336001600160a01b038216148061172f57506000546001600160a01b031633145b6117745760405162461bcd60e51b81526020600482015260166024820152752932b632b0b9b29d103737903832b936b4b9b9b4b7b760511b6044820152606401610e5d565b601d54604051631916558760e01b81526001600160a01b03838116600483015290911690631916558790602401600060405180830381600087803b1580156117bb57600080fd5b505af11580156117cf573d6000803e3d6000fd5b5050505050565b600b5462010000900460ff1680156117ff5750600b54600160201b90046001600160a01b031633145b61181b5760405162461bcd60e51b8152600401610e5d90613e77565b600b805461ff0019166102001790556040517fca29b392f61fad3260f009b6fc1de9d8efda05563601b6c91396b795eeefff2e90600090a1565b61185f3382612d96565b61187b5760405162461bcd60e51b8152600401610e5d90613ea7565b610f92838383612e8d565b6000546001600160a01b031633146118b05760405162461bcd60e51b8152600401610e5d90613e29565b6001600160a01b0381166118c357600080fd5b600b805462ff0000196001600160a01b038416600160201b81029190911663ff010000600160c01b03199092169190911762010000179091556040517fa508d3b137dbcdf7e06f84833fe4aca137451e1e3309f454a207d8fb85c2ccd890600090a250565b600061193383612017565b82106119955760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610e5d565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600060086119ca6113bf565b600c8111156119db576119db613a07565b03611a635760195460ff166119f1575060145490565b601a54600090611a019043613ef8565b90506000611a26601254611a2060155485612cbb90919063ffffffff16565b90613034565b9050611a3f60135460145461304090919063ffffffff16565b8110611a4f576013549250505090565b601454611a5c9082613040565b9250505090565b5060145490565b60218054611a7790613d92565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa390613d92565b8015611af05780601f10611ac557610100808354040283529160200191611af0565b820191906000526020600020905b815481529060010190602001808311611ad357829003601f168201915b505050505081565b600b546301000000900460ff168015611b1b5750600c546001600160a01b031633145b611b605760405162461bcd60e51b815260206004820152601660248201527527b7363c9033b7bb32b93737b91030b63637bbb2b21760511b6044820152606401610e5d565b6040514790339082156108fc029083906000818181858888f19350505050158015611b8f573d6000803e3d6000fd5b506040518181527f807631352cb3389b100202fae783b0b18fedc90bd3a438433796cb89462f4fad906020015b60405180910390a150565b600b5462010000900460ff168015611bf05750600b54600160201b90046001600160a01b031633145b611c0c5760405162461bcd60e51b8152600401610e5d90613e77565b60118190556040518181527fe1fb8f58d0fe8f41debc65095588c6530f5b3c96964aee78a164712c7ab7cb3f90602001611bbc565b610f9283838360405180602001604052806000815250612493565b600b5462010000900460ff168015611c855750600b54600160201b90046001600160a01b031633145b611ca15760405162461bcd60e51b8152600401610e5d90613e77565b600b805460ff191690556040517f4f0f641a7e3d2c654d00279745eb7cf977b86891e3c7dd11cf315972d02089ce90600090a1565b606060218054610d6590613d92565b6000611cf060095490565b8210611d535760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610e5d565b60098281548110611d6657611d66613f0f565b90600052602060002001549050919050565b600080601e54118015611d8c5750601e5443115b905090565b6000546001600160a01b03163314611dbb5760405162461bcd60e51b8152600401610e5d90613e29565b8051611dce9060219060208401906137dd565b507f046f9884af089932879d0fd71ed564287ec681b1f36c2671046b7d38455c4cee81604051611bbc9190613901565b60208054611a7790613d92565b6000546001600160a01b03163314611e355760405162461bcd60e51b8152600401610e5d90613e29565b6040516001600160a01b038216907fa85a8f69b8386043e9a2a9583184a456edfc2b0f7aa3f012334a5f9bdd2b2e8890600090a26001600160a01b03166000908152602260205260409020805460ff19166001179055565b6000600f54601154611d8c9190613ef8565b6000818152600360205260408120546001600160a01b031680610cea5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610e5d565b600b5462010000900460ff168015611f3f5750600b54600160201b90046001600160a01b031633145b611f5b5760405162461bcd60e51b8152600401610e5d90613e77565b6019805460ff191690556040517f050c1c12c59ca346497fa402101729d7f0399460ab7989fcda9a4442de17329490600090a1565b600b5462010000900460ff168015611fb95750600b54600160201b90046001600160a01b031633145b611fd55760405162461bcd60e51b8152600401610e5d90613e77565b60008111611fe257600080fd5b600d8190556040518181527f9a648718482da8f96290a774253e568515fd7295651319eb41acbd8533f1951390602001611bbc565b60006001600160a01b0382166120825760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610e5d565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146120c85760405162461bcd60e51b8152600401610e5d90613e29565b6120d2600061304c565b565b600060086120e06113bf565b600c8111156120f1576120f1613a07565b03610d3d57601854600e54106121075750600190565b5060185490565b6000600861211a6113bf565b600c81111561212b5761212b613a07565b03610d3d57601854600e54106121415750600090565b50600e5490565b600b5462010000900460ff1680156121715750600b54600160201b90046001600160a01b031633145b61218d5760405162461bcd60e51b8152600401610e5d90613e77565b60148190556040518181527ff959ca468c08c9457955f238a0ad6a31fc63f09b1e9bbafb4e409f19163bbe1490602001611bbc565b600b5462010000900460ff1680156121eb5750600b54600160201b90046001600160a01b031633145b6122075760405162461bcd60e51b8152600401610e5d90613e77565b60188190556040518181527f7c416455591047caa05876a4b574da92570d3402cc091a549a87b40434833f0a90602001611bbc565b600b5462010000900460ff1680156122655750600b54600160201b90046001600160a01b031633145b6122815760405162461bcd60e51b8152600401610e5d90613e77565b60128190556040518181527fb554da5220087b9d9a11bb816eaf7e5e194964fae28c86915daf6dc936c0e89590602001611bbc565b600b5462010000900460ff1680156122df5750600b54600160201b90046001600160a01b031633145b6122fb5760405162461bcd60e51b8152600401610e5d90613e77565b600081116123575760405162461bcd60e51b815260206004820152602360248201527f426c6f636b206e756d626572206d75737420626520677265617465722074686160448201526206e20360ec1b6064820152608401610e5d565b601a5481116123b65760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f74207374617274206265666f7265207075626c69632073616c65206044820152641cdd185c9d60da1b6064820152608401610e5d565b60168190556040518181527fda45f78a1473dc35ff479dd7bf06cc2cb07edc789cbcc5f0bac19fbb6e58345e90602001611bbc565b606060028054610d6590613d92565b61240533838361309c565b5050565b600b5462010000900460ff1680156124325750600b54600160201b90046001600160a01b031633145b61244e5760405162461bcd60e51b8152600401610e5d90613e77565b8051601a819055602080830151601b81905560408051938452918301527f70441bfeec4000206c01cb310438ec41bb281f98d8ea4f08f086e3329ff4eb299101611bbc565b61249d3383612d96565b6124b95760405162461bcd60e51b8152600401610e5d90613ea7565b6124c58484848461316a565b50505050565b60006124d660095490565b601054611d8c9190613ef8565b600b5462010000900460ff16801561250c5750600b54600160201b90046001600160a01b031633145b6125285760405162461bcd60e51b8152600401610e5d90613e77565b600b805460ff191660021790556040517f58abff1119ad7689f2843996246b31faf77e0a40545d5085ee99361a768a3f7d90600090a1565b6002601c54036125b25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610e5d565b6002601c553360009081526022602052604090205460ff166126165760405162461bcd60e51b815260206004820152601a60248201527f4f6e6c792061697264726f7020726f6c6520616c6c6f7765642e0000000000006044820152606401610e5d565b6010548251612631906126299084612cbb565b600954611181565b111561267f5760405162461bcd60e51b815260206004820152601860248201527f457863656564206d617820737570706c79206c696d69742e00000000000000006044820152606401610e5d565b601154825161269b906126929084612cbb565b600f5490612cce565b11156126e15760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a103932b9b2b93b329760591b6044820152606401610e5d565b81516126f1906126929083612cbb565b600f5560005b82518110156127365761272383828151811061271557612715613f0f565b602002602001015183612cda565b508061272e81613f25565b9150506126f7565b507f08b3e41950189550b73643a90143efc8a526a17dc07e6abe0fb50ce7c10b50fc8282604051612768929190613f3e565b60405180910390a150506001601c55565b606061278460095490565b8211156127c65760405162461bcd60e51b815260206004820152601060248201526f2a37b5b2b7103737ba1032bc34b9ba1760811b6044820152606401610e5d565b6127ce611d78565b61286257602080546127df90613d92565b80601f016020809104026020016040519081016040528092919081815260200182805461280b90613d92565b80156128585780601f1061282d57610100808354040283529160200191612858565b820191906000526020600020905b81548152906001019060200180831161283b57829003601f168201915b5050505050610cea565b602161286d8361319d565b60405160200161287e929190613fab565b60405160208183030381529060405292915050565b600061289d6113bf565b600c8111156128ae576128ae613a07565b600714806128d457506128bf6113bf565b600c8111156128d0576128d0613a07565b6008145b15610d3d57601854600e5410156128ec5750601a5490565b5060165490565b600b5462010000900460ff16801561291c5750600b54600160201b90046001600160a01b031633145b6129385760405162461bcd60e51b8152600401610e5d90613e77565b6019805460ff191660011790556040517f47b2c4e2d3f2f2f7086b4c02b1dbf0986f42bdfe123f50b37756197769495be690600090a1565b6000546001600160a01b0316331461299a5760405162461bcd60e51b8152600401610e5d90613e29565b80516129ac90602090818401906137dd565b507f791a768a5b9557254d91daf128b9a720119cf95e342b163b85210b53a9ead7a981604051611bbc9190613901565b600b5462010000900460ff168015612a055750600b54600160201b90046001600160a01b031633145b612a215760405162461bcd60e51b8152600401610e5d90613e77565b6040518181527f9ddcb1d2300d94c11e310fcb4f446426b42f1926ed0763f9cb24ed5b0c54d8a39060200160405180910390a1601e55565b600b5462010000900460ff168015612a825750600b54600160201b90046001600160a01b031633145b612a9e5760405162461bcd60e51b8152600401610e5d90613e77565b601454811115612aad57600080fd5b6013829055601581905560408051838152602081018390527f204ef244ed872a9029be787cf59036a2fe59f33439b25bf80bab6449af8036ac910160405180910390a15050565b600b5462010000900460ff168015612b1d5750600b54600160201b90046001600160a01b031633145b612b395760405162461bcd60e51b8152600401610e5d90613e77565b600b805460ff191660011790556040517f6d4e2212f1a4fcfebfe8fd91368752c56e02d80a28c18c5cce3d812cfcbcb4a790600090a1565b6000546001600160a01b03163314612b9b5760405162461bcd60e51b8152600401610e5d90613e29565b6001600160a01b038116612c005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e5d565b612c098161304c565b50565b60006001600160e01b0319821663780e9d6360e01b1480610cea5750610cea8261329e565b600060105460115411610d3d57601154601054611d8c91613040565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612c8282611e9f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612cc78284614065565b9392505050565b6000612cc78284613de2565b6000805b82811015612d8c576000612cf160095490565b6001600160a01b03861660009081526023602052604081208054929350600192909190612d1f908490613de2565b9091555050601054811015612d7957612d4285612d3d836001613de2565b6132ee565b60405181906001600160a01b038716907fa512fb2532ca8587f236380171326ebb69670e86a2ba0c4412a3fcca4c3ada9b90600090a35b5080612d8481613f25565b915050612cde565b5060019392505050565b6000818152600360205260408120546001600160a01b0316612e0f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610e5d565b6000612e1a83611e9f565b9050806001600160a01b0316846001600160a01b03161480612e555750836001600160a01b0316612e4a84610de8565b6001600160a01b0316145b80612e8557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612ea082611e9f565b6001600160a01b031614612f045760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610e5d565b6001600160a01b038216612f665760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610e5d565b612f71838383613308565b612f7c600082612c4d565b6001600160a01b0383166000908152600460205260408120805460019290612fa5908490613ef8565b90915550506001600160a01b0382166000908152600460205260408120805460019290612fd3908490613de2565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000612cc7828461409a565b6000612cc78284613ef8565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316036130fd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610e5d565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b613175848484612e8d565b61318184848484613313565b6124c55760405162461bcd60e51b8152600401610e5d906140ae565b6060816000036131c45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156131ee57806131d881613f25565b91506131e79050600a8361409a565b91506131c8565b60008167ffffffffffffffff81111561320957613209613a78565b6040519080825280601f01601f191660200182016040528015613233576020820181803683370190505b5090505b8415612e8557613248600183613ef8565b9150613255600a86614100565b613260906030613de2565b60f81b81838151811061327557613275613f0f565b60200101906001600160f81b031916908160001a905350613297600a8661409a565b9450613237565b60006001600160e01b031982166380ac58cd60e01b14806132cf57506001600160e01b03198216635b5e139f60e01b145b80610cea57506301ffc9a760e01b6001600160e01b0319831614610cea565b612405828260405180602001604052806000815250613414565b610f92838383613447565b60006001600160a01b0384163b1561340957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613357903390899088908890600401614114565b6020604051808303816000875af1925050508015613392575060408051601f3d908101601f1916820190925261338f91810190614151565b60015b6133ef573d8080156133c0576040519150601f19603f3d011682016040523d82523d6000602084013e6133c5565b606091505b5080516000036133e75760405162461bcd60e51b8152600401610e5d906140ae565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612e85565b506001949350505050565b61341e83836134ff565b61342b6000848484613313565b610f925760405162461bcd60e51b8152600401610e5d906140ae565b6001600160a01b0383166134a25761349d81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6134c5565b816001600160a01b0316836001600160a01b0316146134c5576134c5838261364d565b6001600160a01b0382166134dc57610f92816136ea565b826001600160a01b0316826001600160a01b031614610f9257610f928282613799565b6001600160a01b0382166135555760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610e5d565b6000818152600360205260409020546001600160a01b0316156135ba5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610e5d565b6135c660008383613308565b6001600160a01b03821660009081526004602052604081208054600192906135ef908490613de2565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161365a84612017565b6136649190613ef8565b6000838152600860205260409020549091508082146136b7576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906136fc90600190613ef8565b6000838152600a60205260408120546009805493945090928490811061372457613724613f0f565b90600052602060002001549050806009838154811061374557613745613f0f565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061377d5761377d61416e565b6001900381819060005260206000200160009055905550505050565b60006137a483612017565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546137e990613d92565b90600052602060002090601f01602090048101928261380b5760008555613851565b82601f1061382457805160ff1916838001178555613851565b82800160010185558215613851579182015b82811115613851578251825591602001919060010190613836565b5061385d929150613861565b5090565b5b8082111561385d5760008155600101613862565b6001600160e01b031981168114612c0957600080fd5b60006020828403121561389e57600080fd5b8135612cc781613876565b60005b838110156138c45781810151838201526020016138ac565b838111156124c55750506000910152565b600081518084526138ed8160208601602086016138a9565b601f01601f19169290920160200192915050565b602081526000612cc760208301846138d5565b60006020828403121561392657600080fd5b5035919050565b6001600160a01b0381168114612c0957600080fd5b6000806040838503121561395557600080fd5b82356139608161392d565b946020939093013593505050565b60008060006040848603121561398357600080fd5b83359250602084013567ffffffffffffffff808211156139a257600080fd5b818601915086601f8301126139b657600080fd5b8135818111156139c557600080fd5b8760208285010111156139d757600080fd5b6020830194508093505050509250925092565b6000602082840312156139fc57600080fd5b8135612cc78161392d565b634e487b7160e01b600052602160045260246000fd5b60208101600d8310613a3157613a31613a07565b91905290565b600080600060608486031215613a4c57600080fd5b8335613a578161392d565b92506020840135613a678161392d565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613ab757613ab7613a78565b604052919050565b600067ffffffffffffffff831115613ad957613ad9613a78565b613aec601f8401601f1916602001613a8e565b9050828152838383011115613b0057600080fd5b828260208301376000602084830101529392505050565b600060208284031215613b2957600080fd5b813567ffffffffffffffff811115613b4057600080fd5b8201601f81018413613b5157600080fd5b612e8584823560208401613abf565b60008060408385031215613b7357600080fd5b8235613b7e8161392d565b915060208301358015158114613b9357600080fd5b809150509250929050565b60038110612c0957612c09613a07565b60208101613a3183613b9e565b600060408284031215613bcd57600080fd5b6040516040810181811067ffffffffffffffff82111715613bf057613bf0613a78565b604052823581526020928301359281019290925250919050565b60008060008060808587031215613c2057600080fd5b8435613c2b8161392d565b93506020850135613c3b8161392d565b925060408501359150606085013567ffffffffffffffff811115613c5e57600080fd5b8501601f81018713613c6f57600080fd5b613c7e87823560208401613abf565b91505092959194509250565b60008060408385031215613c9d57600080fd5b823567ffffffffffffffff80821115613cb557600080fd5b818501915085601f830112613cc957600080fd5b8135602082821115613cdd57613cdd613a78565b8160051b9250613cee818401613a8e565b8281529284018101928181019089851115613d0857600080fd5b948201945b84861015613d325785359350613d228461392d565b8382529482019490820190613d0d565b9997909101359750505050505050565b60008060408385031215613d5557600080fd5b50508035926020909101359150565b60008060408385031215613d7757600080fd5b8235613d828161392d565b91506020830135613b938161392d565b600181811c90821680613da657607f821691505b602082108103613dc657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115613df557613df5613dcc565b500190565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215613e7057600080fd5b5051919050565b60208082526016908201527527b7363c9037b832b930ba37b91030b63637bbb2b21760511b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082821015613f0a57613f0a613dcc565b500390565b634e487b7160e01b600052603260045260246000fd5b600060018201613f3757613f37613dcc565b5060010190565b604080825283519082018190526000906020906060840190828701845b82811015613f805781516001600160a01b031684529284019290840190600101613f5b565b50505092019290925292915050565b60008151613fa18185602086016138a9565b9290920192915050565b600080845481600182811c915080831680613fc757607f831692505b60208084108203613fe657634e487b7160e01b86526022600452602486fd5b818015613ffa576001811461400b57614038565b60ff19861689528489019650614038565b60008b81526020902060005b868110156140305781548b820152908501908301614017565b505084890196505b50505050505061405c61404b8286613f8f565b64173539b7b760d91b815260050190565b95945050505050565b600081600019048311821515161561407f5761407f613dcc565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826140a9576140a9614084565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261410f5761410f614084565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614147908301846138d5565b9695505050505050565b60006020828403121561416357600080fd5b8151612cc781613876565b634e487b7160e01b600052603160045260246000fdfea264697066735822122053e25253d8e0e22a6c67b681086949ea674f5694cd71ab56540350978c5b965f64736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000018fae27693b400000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001030784f4720627920307853747564696f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000830784f475041535300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000100000000000000000000000035c95241eb490b8adb6ddbc6f9b21a50868d63d100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064

-----Decoded View---------------
Arg [0] : name (string): 0xOG by 0xStudio
Arg [1] : symbol (string): 0xOGPASS
Arg [2] : _maxSupply (uint256): 1000
Arg [3] : price (uint256): 1800000000000000000
Arg [4] : revenueShare (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [3] : 00000000000000000000000000000000000000000000000018fae27693b40000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [6] : 30784f4720627920307853747564696f00000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [8] : 30784f4750415353000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [12] : 00000000000000000000000035c95241eb490b8adb6ddbc6f9b21a50868d63d1
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000064


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.