ETH Price: $2,760.85 (+2.02%)

Token

Dudette of Omakasea, first of her name, the queenl... (DDT)
 

Overview

Max Total Supply

4 DDT

Holders

4

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DDT
0x90158586A1C0b9B054A9aB4C6c2cc18e69De477b
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:
MasterchefMasatoshiOne

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : MasterchefMasatoshiOne.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.10;

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

contract MasterchefMasatoshiOne is ERC721, Ownable {
  address public immutable ENSReverseRegistrar = 0x084b1c3C81545d370f3634392De611CaaBFf8148;
  address payable public immutable omakasea = payable(0x9A88d47EBb4038e9d8479A9535FCCa0d3F8Ba73B);

  uint256 public immutable rakePercentage = 1;
  uint256 public minBidIncrementPercentage = 1;
  uint256 public startingBid = 0;
  uint256 public currentAuctionID = 0;

  bool public biddingActive = false;

  string public currentTokenURI;
  address payable public highestBidAddress;
  // first uint256 represents the current auction ID
  mapping(uint256 => mapping(address => uint256)) public bidPerAddress;
  mapping(uint256 => string) tokenURIs;

  constructor(
      string memory _name,
      string memory _symbol
  ) ERC721(_name, _symbol, 1) {}

  function tokenURI(uint256 tokenID) public view override returns (string memory) {
      require(_exists(tokenID), "z");
      return tokenURIs[tokenID];
  }

  function addReverseENSRecord(string memory name) external onlyOwner{
    IReverseRegistrar(ENSReverseRegistrar).setName(name);
  }

  function execMint(uint amount, address recipient) public onlyOwner {
    _safeMint(recipient, amount);
  }

  function setMinBidIncrementPercentage(uint256 percentage) public onlyOwner {
    minBidIncrementPercentage = percentage;
  }  

  function openBidding(uint256 _startingBid, string calldata _tokenURI) public onlyOwner {
    require(!biddingActive, "Bidding is already active!");
    biddingActive = true;
    // input starting bid in ETH
    startingBid = _startingBid * 10 ** 18;
    currentTokenURI = _tokenURI;
  }

  function acceptBid() public onlyOwner {
    require(biddingActive, "Bidding is inactive!");
    uint256 winningBid = bidPerAddress[currentAuctionID][highestBidAddress];
    bidPerAddress[currentAuctionID][highestBidAddress] = 0;

    payable(owner()).transfer(winningBid);
    _safeMint(highestBidAddress, 1);

    tokenURIs[totalSupply() - 1] = currentTokenURI;
     biddingActive = false;
     highestBidAddress = payable(address(0));
     currentAuctionID += 1;
  }

  function withdrawBid(uint256 auctionID) external {
    require(msg.sender != highestBidAddress, "Cannot withdraw bid as highest bidder!");
    uint256 bidAmount = bidPerAddress[auctionID][msg.sender];
    bidPerAddress[auctionID][msg.sender] = 0;
    uint thisBalance = address(this).balance;

    // safe transfer mechanism, if there is some rounding error and there isn't enought ETH on "paper" to cover a withdraw
    if (bidAmount >= thisBalance) {
      payable(msg.sender).transfer(thisBalance);
    } else {
      payable(msg.sender).transfer(bidAmount);
    }
  }

  receive() external payable {
    require(biddingActive, "Bidding is inactive!");
    if (msg.sender == owner()) {
      acceptBid();
      return;
    }
    uint256 rake = msg.value * rakePercentage / 100;
    uint256 currentBidAfterRake = msg.value - rake;
    uint256 existingBid = bidPerAddress[currentAuctionID][msg.sender];
    uint256 totalBid = existingBid + currentBidAfterRake;
    uint256 highestBid = bidPerAddress[currentAuctionID][highestBidAddress];

    require(totalBid > startingBid, "Total bid must exceed starting bid");
    require(totalBid >= highestBid + highestBid * minBidIncrementPercentage / 100, "Total bid must exceed or equal highest bid + min bid increment!");

    // adds to existing bid
    bidPerAddress[currentAuctionID][msg.sender] = existingBid + currentBidAfterRake;
    omakasea.transfer(rake);
    highestBidAddress = payable(msg.sender);
  }

  // emergency use only
  function withdraw() external onlyOwner() {
    uint balance = address(this).balance;
    payable(msg.sender).transfer(balance);
  }
}

// The High Table

File 2 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 14 : IERC20.sol
// SPDX-License-Identifier: MIT

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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        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 4 of 14 : IReverseRegistrar.sol
// SPDX-License-Identifier: UNLICENSED

pragma solidity >=0.8.4;

interface IReverseRegistrar {
    function setDefaultResolver(address resolver) external;

    function claim(address owner) external returns (bytes32);

    function claimForAddr(
        address addr,
        address owner,
        address resolver
    ) external returns (bytes32);

    function claimWithResolver(address owner, address resolver)
        external
        returns (bytes32);

    function setName(string memory name) external returns (bytes32);

    function setNameForAddr(
        address addr,
        address owner,
        address resolver,
        string memory name
    ) external returns (bytes32);

    function node(address addr) external pure returns (bytes32);
}

File 5 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.10;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Base URI
    string private _baseURI;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) private _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, "b");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), "g");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "b");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("u");
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), "0");
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "0");
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "t");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("o");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "z");

        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() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }



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

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "a"
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), "a");

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "z"
            );
            updatedIndex++;
        }

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

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

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

        require(isApprovedOrOwner, "a");

        require(prevOwnership.addr == from, "o");
        require(to != address(0), "0");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

File 6 of 14 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 tokenId);

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

File 11 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 13 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ENSReverseRegistrar","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptBid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"}],"name":"addReverseENSRecord","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"bidPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"biddingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentAuctionID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"execMint","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":"highestBidAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minBidIncrementPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"omakasea","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startingBid","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"openBidding","outputs":[],"stateMutability":"nonpayable","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":"rakePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMinBidIncrementPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingBid","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"auctionID","type":"uint256"}],"name":"withdrawBid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

61010060405260008055600060085573084b1c3c81545d370f3634392de611caabff814873ffffffffffffffffffffffffffffffffffffffff1660a09073ffffffffffffffffffffffffffffffffffffffff16815250739a88d47ebb4038e9d8479a9535fcca0d3f8ba73b73ffffffffffffffffffffffffffffffffffffffff1660c09073ffffffffffffffffffffffffffffffffffffffff16815250600160e0908152506001600a556000600b556000600c556000600d60006101000a81548160ff021916908315150217905550348015620000db57600080fd5b5060405162004fd738038062004fd78339818101604052810190620001019190620004cb565b81816001600081116200014b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014290620005b1565b60405180910390fd5b8260019080519060200190620001639291906200027e565b5081600290805190602001906200017c9291906200027e565b508060808181525050505050620001a86200019c620001b060201b60201c565b620001b860201b60201c565b505062000638565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028c9062000602565b90600052602060002090601f016020900481019282620002b05760008555620002fc565b82601f10620002cb57805160ff1916838001178555620002fc565b82800160010185558215620002fc579182015b82811115620002fb578251825591602001919060010190620002de565b5b5090506200030b91906200030f565b5090565b5b808211156200032a57600081600090555060010162000310565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000397826200034c565b810181811067ffffffffffffffff82111715620003b957620003b86200035d565b5b80604052505050565b6000620003ce6200032e565b9050620003dc82826200038c565b919050565b600067ffffffffffffffff821115620003ff57620003fe6200035d565b5b6200040a826200034c565b9050602081019050919050565b60005b83811015620004375780820151818401526020810190506200041a565b8381111562000447576000848401525b50505050565b6000620004646200045e84620003e1565b620003c2565b90508281526020810184848401111562000483576200048262000347565b5b6200049084828562000417565b509392505050565b600082601f830112620004b057620004af62000342565b5b8151620004c28482602086016200044d565b91505092915050565b60008060408385031215620004e557620004e462000338565b5b600083015167ffffffffffffffff8111156200050657620005056200033d565b5b620005148582860162000498565b925050602083015167ffffffffffffffff8111156200053857620005376200033d565b5b620005468582860162000498565b9150509250929050565b600082825260208201905092915050565b7f6200000000000000000000000000000000000000000000000000000000000000600082015250565b60006200059960018362000550565b9150620005a68262000561565b602082019050919050565b60006020820190508181036000830152620005cc816200058a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200061b57607f821691505b60208210811415620006325762000631620005d3565b5b50919050565b60805160a05160c05160e05161494262000695600039600081816102cb0152611b3701526000818161050001526123c5015260008181611dfc0152612199015260008181612b4301528181612b6c015261300101526149426000f3fe6080604052600436106102295760003560e01c8063715018a611610123578063b56906b1116100ab578063dfb5259c1161006f578063dfb5259c14610b94578063e52a787414610bbd578063e985e9c514610bd4578063f2fde38b14610c11578063f8069e6014610c3a576105ae565b8063b56906b114610aaf578063b88d4fde14610ad8578063b9fdd56914610b01578063c87b56dd14610b2c578063d7224ba014610b69576105ae565b806395d89b41116100f257806395d89b41146109dc578063a22cb46514610a07578063a79b817314610a30578063ac48830b14610a5b578063b296024d14610a84576105ae565b8063715018a614610944578063896f398a1461095b5780638da5cb5b146109865780638e9673a5146109b1576105ae565b80632fe383f0116101b15780636296667811610175578063629666781461084b5780636352211e146108765780636c0360eb146108b35780636c803886146108de57806370a0823114610907576105ae565b80632fe383f0146107665780633ccfd60b146107a357806342842e0e146107ba5780634f6ccce7146107e3578063521b20ec14610820576105ae565b80630eaaf4c8116101f85780630eaaf4c81461068157806317d946f2146106aa57806318160ddd146106d557806323b872dd146107005780632f745c5914610729576105ae565b806301ffc9a7146105b357806306fdde03146105f0578063081812fc1461061b578063095ea7b314610658576105ae565b366105ae57600d60009054906101000a900460ff1661027d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161027490613605565b60405180910390fd5b610285610c65565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156102c5576102c0610c8f565b6105ac565b600060647f0000000000000000000000000000000000000000000000000000000000000000346102f5919061365e565b6102ff91906136e7565b90506000813461030f9190613718565b9050600060106000600c54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008282610376919061374c565b9050600060106000600c5481526020019081526020016000206000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600b548211610435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161042c90613814565b60405180910390fd5b6064600a5482610445919061365e565b61044f91906136e7565b8161045a919061374c565b82101561049c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610493906138a6565b60405180910390fd5b83836104a8919061374c565b60106000600c54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f19350505050158015610564573d6000803e3d6000fd5b5033600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050505b005b600080fd5b3480156105bf57600080fd5b506105da60048036038101906105d59190613932565b610f82565b6040516105e7919061397a565b60405180910390f35b3480156105fc57600080fd5b506106056110cc565b6040516106129190613a1d565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190613a6b565b61115e565b60405161064f9190613ad9565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190613b20565b6111e3565b005b34801561068d57600080fd5b506106a860048036038101906106a39190613a6b565b6112fc565b005b3480156106b657600080fd5b506106bf6114dd565b6040516106cc919061397a565b60405180910390f35b3480156106e157600080fd5b506106ea6114f0565b6040516106f79190613b6f565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190613b8a565b6114f9565b005b34801561073557600080fd5b50610750600480360381019061074b9190613b20565b611509565b60405161075d9190613b6f565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190613bdd565b611707565b60405161079a9190613b6f565b60405180910390f35b3480156107af57600080fd5b506107b861172c565b005b3480156107c657600080fd5b506107e160048036038101906107dc9190613b8a565b6117f7565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190613a6b565b611817565b6040516108179190613b6f565b60405180910390f35b34801561082c57600080fd5b5061083561186a565b6040516108429190613c3e565b60405180910390f35b34801561085757600080fd5b50610860611890565b60405161086d9190613b6f565b60405180910390f35b34801561088257600080fd5b5061089d60048036038101906108989190613a6b565b611896565b6040516108aa9190613ad9565b60405180910390f35b3480156108bf57600080fd5b506108c86118ac565b6040516108d59190613a1d565b60405180910390f35b3480156108ea57600080fd5b5061090560048036038101906109009190613a6b565b61193e565b005b34801561091357600080fd5b5061092e60048036038101906109299190613c59565b6119c4565b60405161093b9190613b6f565b60405180910390f35b34801561095057600080fd5b50610959611aad565b005b34801561096757600080fd5b50610970611b35565b60405161097d9190613b6f565b60405180910390f35b34801561099257600080fd5b5061099b610c65565b6040516109a89190613ad9565b60405180910390f35b3480156109bd57600080fd5b506109c6611b59565b6040516109d39190613a1d565b60405180910390f35b3480156109e857600080fd5b506109f1611be7565b6040516109fe9190613a1d565b60405180910390f35b348015610a1357600080fd5b50610a2e6004803603810190610a299190613cb2565b611c79565b005b348015610a3c57600080fd5b50610a45611dfa565b604051610a529190613ad9565b60405180910390f35b348015610a6757600080fd5b50610a826004803603810190610a7d9190613bdd565b611e1e565b005b348015610a9057600080fd5b50610a99611ea8565b604051610aa69190613b6f565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad19190613d57565b611eae565b005b348015610ae457600080fd5b50610aff6004803603810190610afa9190613ee7565b611fc6565b005b348015610b0d57600080fd5b50610b16612022565b604051610b239190613b6f565b60405180910390f35b348015610b3857600080fd5b50610b536004803603810190610b4e9190613a6b565b612028565b604051610b609190613a1d565b60405180910390f35b348015610b7557600080fd5b50610b7e612115565b604051610b8b9190613b6f565b60405180910390f35b348015610ba057600080fd5b50610bbb6004803603810190610bb6919061400b565b61211b565b005b348015610bc957600080fd5b50610bd2610c8f565b005b348015610be057600080fd5b50610bfb6004803603810190610bf69190614054565b612237565b604051610c08919061397a565b60405180910390f35b348015610c1d57600080fd5b50610c386004803603810190610c339190613c59565b6122cb565b005b348015610c4657600080fd5b50610c4f6123c3565b604051610c5c9190613c3e565b60405180910390f35b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c976123e7565b73ffffffffffffffffffffffffffffffffffffffff16610cb5610c65565b73ffffffffffffffffffffffffffffffffffffffff1614610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d02906140e0565b60405180910390fd5b600d60009054906101000a900460ff16610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613605565b60405180910390fd5b600060106000600c5481526020019081526020016000206000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600060106000600c5481526020019081526020016000206000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e55610c65565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e9a573d6000803e3d6000fd5b50610ec8600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016123ef565b600e601160006001610ed86114f0565b610ee29190613718565b8152602001908152602001600020908054610efc9061412f565b610f0792919061343e565b506000600d60006101000a81548160ff0219169083151502179055506000600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c6000828254610f78919061374c565b9250508190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061104d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806110b557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806110c557506110c48261240d565b5b9050919050565b6060600180546110db9061412f565b80601f01602080910402602001604051908101604052809291908181526020018280546111079061412f565b80156111545780601f1061112957610100808354040283529160200191611154565b820191906000526020600020905b81548152906001019060200180831161113757829003601f168201915b5050505050905090565b600061116982612477565b6111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f906141ad565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006111ee82611896565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690614219565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661127e6123e7565b73ffffffffffffffffffffffffffffffffffffffff1614806112ad57506112ac816112a76123e7565b612237565b5b6112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e3906141ad565b60405180910390fd5b6112f7838383612484565b505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561138d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611384906142ab565b60405180910390fd5b60006010600083815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060006010600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000479050808210611490573373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561148a573d6000803e3d6000fd5b506114d8565b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156114d6573d6000803e3d6000fd5b505b505050565b600d60009054906101000a900460ff1681565b60008054905090565b611504838383612536565b505050565b6000611514836119c4565b8210611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90614317565b60405180910390fd5b600061155f6114f0565b905060008060005b838110156116c5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461165957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116b157868414156116a2578195505050505050611701565b83806116ad90614337565b9450505b5080806116bd90614337565b915050611567565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f8906143cc565b60405180910390fd5b92915050565b6010602052816000526040600020602052806000526040600020600091509150505481565b6117346123e7565b73ffffffffffffffffffffffffffffffffffffffff16611752610c65565b73ffffffffffffffffffffffffffffffffffffffff16146117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f906140e0565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156117f3573d6000803e3d6000fd5b5050565b61181283838360405180602001604052806000815250611fc6565b505050565b60006118216114f0565b8210611862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185990614438565b60405180910390fd5b819050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b60006118a182612aef565b600001519050919050565b6060600380546118bb9061412f565b80601f01602080910402602001604051908101604052809291908181526020018280546118e79061412f565b80156119345780601f1061190957610100808354040283529160200191611934565b820191906000526020600020905b81548152906001019060200180831161191757829003601f168201915b5050505050905090565b6119466123e7565b73ffffffffffffffffffffffffffffffffffffffff16611964610c65565b73ffffffffffffffffffffffffffffffffffffffff16146119ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b1906140e0565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2c906144a4565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611ab56123e7565b73ffffffffffffffffffffffffffffffffffffffff16611ad3610c65565b73ffffffffffffffffffffffffffffffffffffffff1614611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b20906140e0565b60405180910390fd5b611b336000612cf2565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b600e8054611b669061412f565b80601f0160208091040260200160405190810160405280929190818152602001828054611b929061412f565b8015611bdf5780601f10611bb457610100808354040283529160200191611bdf565b820191906000526020600020905b815481529060010190602001808311611bc257829003601f168201915b505050505081565b606060028054611bf69061412f565b80601f0160208091040260200160405190810160405280929190818152602001828054611c229061412f565b8015611c6f5780601f10611c4457610100808354040283529160200191611c6f565b820191906000526020600020905b815481529060010190602001808311611c5257829003601f168201915b5050505050905090565b611c816123e7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce6906141ad565b60405180910390fd5b8060076000611cfc6123e7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611da96123e7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dee919061397a565b60405180910390a35050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611e266123e7565b73ffffffffffffffffffffffffffffffffffffffff16611e44610c65565b73ffffffffffffffffffffffffffffffffffffffff1614611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e91906140e0565b60405180910390fd5b611ea481836123ef565b5050565b600a5481565b611eb66123e7565b73ffffffffffffffffffffffffffffffffffffffff16611ed4610c65565b73ffffffffffffffffffffffffffffffffffffffff1614611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f21906140e0565b60405180910390fd5b600d60009054906101000a900460ff1615611f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7190614510565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550670de0b6b3a764000083611fa9919061365e565b600b819055508181600e9190611fc09291906134cb565b50505050565b611fd1848484612536565b611fdd84848484612db8565b61201c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120139061457c565b60405180910390fd5b50505050565b600b5481565b606061203382612477565b612072576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120699061457c565b60405180910390fd5b6011600083815260200190815260200160002080546120909061412f565b80601f01602080910402602001604051908101604052809291908181526020018280546120bc9061412f565b80156121095780601f106120de57610100808354040283529160200191612109565b820191906000526020600020905b8154815290600101906020018083116120ec57829003601f168201915b50505050509050919050565b60085481565b6121236123e7565b73ffffffffffffffffffffffffffffffffffffffff16612141610c65565b73ffffffffffffffffffffffffffffffffffffffff1614612197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218e906140e0565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c47f0027826040518263ffffffff1660e01b81526004016121f09190613a1d565b6020604051808303816000875af115801561220f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061223391906145d2565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122d36123e7565b73ffffffffffffffffffffffffffffffffffffffff166122f1610c65565b73ffffffffffffffffffffffffffffffffffffffff1614612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e906140e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ae90614671565b60405180910390fd5b6123c081612cf2565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b600033905090565b612409828260405180602001604052806000815250612f40565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061254182612aef565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166125686123e7565b73ffffffffffffffffffffffffffffffffffffffff1614806125c4575061258d6123e7565b73ffffffffffffffffffffffffffffffffffffffff166125ac8461115e565b73ffffffffffffffffffffffffffffffffffffffff16145b806125e057506125df82600001516125da6123e7565b612237565b5b905080612622576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612619906141ad565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268b90614219565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fb906144a4565b60405180910390fd5b612711858585600161341f565b6127216000848460000151612484565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661278f91906146ad565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661283391906146e1565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612939919061374c565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a7f576129af81612477565b15612a7e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ae78686866001613425565b505050505050565b612af7613551565b612b0082612477565b612b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3690614773565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612ba35760017f000000000000000000000000000000000000000000000000000000000000000084612b969190613718565b612ba0919061374c565b90505b60008390505b818110612cb1576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c9d57809350505050612ced565b508080612ca990614793565b915050612ba9565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce490614219565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612dd98473ffffffffffffffffffffffffffffffffffffffff1661342b565b15612f33578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e026123e7565b8786866040518563ffffffff1660e01b8152600401612e249493929190614812565b6020604051808303816000875af1925050508015612e6057506040513d601f19601f82011682018060405250810190612e5d9190614873565b60015b612ee3573d8060008114612e90576040519150601f19603f3d011682016040523d82523d6000602084013e612e95565b606091505b50600081511415612edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed29061457c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f38565b600190505b949350505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fad906144a4565b60405180910390fd5b612fbf81612477565b15612fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff6906141ad565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613062576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613059906148ec565b60405180910390fd5b61306f600085838661341f565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161316c91906146e1565b6fffffffffffffffffffffffffffffffff16815260200185836020015161319391906146e1565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561340257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133a26000888488612db8565b6133e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d89061457c565b60405180910390fd5b81806133ec90614337565b92505080806133fa90614337565b915050613331565b50806000819055506134176000878588613425565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b82805461344a9061412f565b90600052602060002090601f01602090048101928261346c57600085556134ba565b82601f1061347d57805485556134ba565b828001600101855582156134ba57600052602060002091601f016020900482015b828111156134b957825482559160010191906001019061349e565b5b5090506134c7919061358b565b5090565b8280546134d79061412f565b90600052602060002090601f0160209004810192826134f95760008555613540565b82601f1061351257803560ff1916838001178555613540565b82800160010185558215613540579182015b8281111561353f578235825591602001919060010190613524565b5b50905061354d919061358b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156135a457600081600090555060010161358c565b5090565b600082825260208201905092915050565b7f42696464696e6720697320696e61637469766521000000000000000000000000600082015250565b60006135ef6014836135a8565b91506135fa826135b9565b602082019050919050565b6000602082019050818103600083015261361e816135e2565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061366982613625565b915061367483613625565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136ad576136ac61362f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136f282613625565b91506136fd83613625565b92508261370d5761370c6136b8565b5b828204905092915050565b600061372382613625565b915061372e83613625565b9250828210156137415761374061362f565b5b828203905092915050565b600061375782613625565b915061376283613625565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137975761379661362f565b5b828201905092915050565b7f546f74616c20626964206d75737420657863656564207374617274696e67206260008201527f6964000000000000000000000000000000000000000000000000000000000000602082015250565b60006137fe6022836135a8565b9150613809826137a2565b604082019050919050565b6000602082019050818103600083015261382d816137f1565b9050919050565b7f546f74616c20626964206d75737420657863656564206f7220657175616c206860008201527f69676865737420626964202b206d696e2062696420696e6372656d656e742100602082015250565b6000613890603f836135a8565b915061389b82613834565b604082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61390f816138da565b811461391a57600080fd5b50565b60008135905061392c81613906565b92915050565b600060208284031215613948576139476138d0565b5b60006139568482850161391d565b91505092915050565b60008115159050919050565b6139748161395f565b82525050565b600060208201905061398f600083018461396b565b92915050565b600081519050919050565b60005b838110156139be5780820151818401526020810190506139a3565b838111156139cd576000848401525b50505050565b6000601f19601f8301169050919050565b60006139ef82613995565b6139f981856135a8565b9350613a098185602086016139a0565b613a12816139d3565b840191505092915050565b60006020820190508181036000830152613a3781846139e4565b905092915050565b613a4881613625565b8114613a5357600080fd5b50565b600081359050613a6581613a3f565b92915050565b600060208284031215613a8157613a806138d0565b5b6000613a8f84828501613a56565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ac382613a98565b9050919050565b613ad381613ab8565b82525050565b6000602082019050613aee6000830184613aca565b92915050565b613afd81613ab8565b8114613b0857600080fd5b50565b600081359050613b1a81613af4565b92915050565b60008060408385031215613b3757613b366138d0565b5b6000613b4585828601613b0b565b9250506020613b5685828601613a56565b9150509250929050565b613b6981613625565b82525050565b6000602082019050613b846000830184613b60565b92915050565b600080600060608486031215613ba357613ba26138d0565b5b6000613bb186828701613b0b565b9350506020613bc286828701613b0b565b9250506040613bd386828701613a56565b9150509250925092565b60008060408385031215613bf457613bf36138d0565b5b6000613c0285828601613a56565b9250506020613c1385828601613b0b565b9150509250929050565b6000613c2882613a98565b9050919050565b613c3881613c1d565b82525050565b6000602082019050613c536000830184613c2f565b92915050565b600060208284031215613c6f57613c6e6138d0565b5b6000613c7d84828501613b0b565b91505092915050565b613c8f8161395f565b8114613c9a57600080fd5b50565b600081359050613cac81613c86565b92915050565b60008060408385031215613cc957613cc86138d0565b5b6000613cd785828601613b0b565b9250506020613ce885828601613c9d565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613d1757613d16613cf2565b5b8235905067ffffffffffffffff811115613d3457613d33613cf7565b5b602083019150836001820283011115613d5057613d4f613cfc565b5b9250929050565b600080600060408486031215613d7057613d6f6138d0565b5b6000613d7e86828701613a56565b935050602084013567ffffffffffffffff811115613d9f57613d9e6138d5565b5b613dab86828701613d01565b92509250509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613df4826139d3565b810181811067ffffffffffffffff82111715613e1357613e12613dbc565b5b80604052505050565b6000613e266138c6565b9050613e328282613deb565b919050565b600067ffffffffffffffff821115613e5257613e51613dbc565b5b613e5b826139d3565b9050602081019050919050565b82818337600083830152505050565b6000613e8a613e8584613e37565b613e1c565b905082815260208101848484011115613ea657613ea5613db7565b5b613eb1848285613e68565b509392505050565b600082601f830112613ece57613ecd613cf2565b5b8135613ede848260208601613e77565b91505092915050565b60008060008060808587031215613f0157613f006138d0565b5b6000613f0f87828801613b0b565b9450506020613f2087828801613b0b565b9350506040613f3187828801613a56565b925050606085013567ffffffffffffffff811115613f5257613f516138d5565b5b613f5e87828801613eb9565b91505092959194509250565b600067ffffffffffffffff821115613f8557613f84613dbc565b5b613f8e826139d3565b9050602081019050919050565b6000613fae613fa984613f6a565b613e1c565b905082815260208101848484011115613fca57613fc9613db7565b5b613fd5848285613e68565b509392505050565b600082601f830112613ff257613ff1613cf2565b5b8135614002848260208601613f9b565b91505092915050565b600060208284031215614021576140206138d0565b5b600082013567ffffffffffffffff81111561403f5761403e6138d5565b5b61404b84828501613fdd565b91505092915050565b6000806040838503121561406b5761406a6138d0565b5b600061407985828601613b0b565b925050602061408a85828601613b0b565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140ca6020836135a8565b91506140d582614094565b602082019050919050565b600060208201905081810360008301526140f9816140bd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061414757607f821691505b6020821081141561415b5761415a614100565b5b50919050565b7f6100000000000000000000000000000000000000000000000000000000000000600082015250565b60006141976001836135a8565b91506141a282614161565b602082019050919050565b600060208201905081810360008301526141c68161418a565b9050919050565b7f6f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006142036001836135a8565b915061420e826141cd565b602082019050919050565b60006020820190508181036000830152614232816141f6565b9050919050565b7f43616e6e6f74207769746864726177206269642061732068696768657374206260008201527f6964646572210000000000000000000000000000000000000000000000000000602082015250565b60006142956026836135a8565b91506142a082614239565b604082019050919050565b600060208201905081810360008301526142c481614288565b9050919050565b7f6200000000000000000000000000000000000000000000000000000000000000600082015250565b60006143016001836135a8565b915061430c826142cb565b602082019050919050565b60006020820190508181036000830152614330816142f4565b9050919050565b600061434282613625565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143755761437461362f565b5b600182019050919050565b7f7500000000000000000000000000000000000000000000000000000000000000600082015250565b60006143b66001836135a8565b91506143c182614380565b602082019050919050565b600060208201905081810360008301526143e5816143a9565b9050919050565b7f6700000000000000000000000000000000000000000000000000000000000000600082015250565b60006144226001836135a8565b915061442d826143ec565b602082019050919050565b6000602082019050818103600083015261445181614415565b9050919050565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b600061448e6001836135a8565b915061449982614458565b602082019050919050565b600060208201905081810360008301526144bd81614481565b9050919050565b7f42696464696e6720697320616c72656164792061637469766521000000000000600082015250565b60006144fa601a836135a8565b9150614505826144c4565b602082019050919050565b60006020820190508181036000830152614529816144ed565b9050919050565b7f7a00000000000000000000000000000000000000000000000000000000000000600082015250565b60006145666001836135a8565b915061457182614530565b602082019050919050565b6000602082019050818103600083015261459581614559565b9050919050565b6000819050919050565b6145af8161459c565b81146145ba57600080fd5b50565b6000815190506145cc816145a6565b92915050565b6000602082840312156145e8576145e76138d0565b5b60006145f6848285016145bd565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061465b6026836135a8565b9150614666826145ff565b604082019050919050565b6000602082019050818103600083015261468a8161464e565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006146b882614691565b91506146c383614691565b9250828210156146d6576146d561362f565b5b828203905092915050565b60006146ec82614691565b91506146f783614691565b9250826fffffffffffffffffffffffffffffffff0382111561471c5761471b61362f565b5b828201905092915050565b7f7400000000000000000000000000000000000000000000000000000000000000600082015250565b600061475d6001836135a8565b915061476882614727565b602082019050919050565b6000602082019050818103600083015261478c81614750565b9050919050565b600061479e82613625565b915060008214156147b2576147b161362f565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b60006147e4826147bd565b6147ee81856147c8565b93506147fe8185602086016139a0565b614807816139d3565b840191505092915050565b60006080820190506148276000830187613aca565b6148346020830186613aca565b6148416040830185613b60565b818103606083015261485381846147d9565b905095945050505050565b60008151905061486d81613906565b92915050565b600060208284031215614889576148886138d0565b5b60006148978482850161485e565b91505092915050565b7f6d00000000000000000000000000000000000000000000000000000000000000600082015250565b60006148d66001836135a8565b91506148e1826148a0565b602082019050919050565b60006020820190508181036000830152614905816148c9565b905091905056fea2646970667358221220cbbcb2ff054539afa0fb2392dc33d2ef32124620156e8c8f2c4cbe30a1cda5d364736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004144756465747465206f66204f6d616b617365612c206669727374206f6620686572206e616d652c2074686520717565656e6c6f7264206f66206d656d656c616e640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034444540000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102295760003560e01c8063715018a611610123578063b56906b1116100ab578063dfb5259c1161006f578063dfb5259c14610b94578063e52a787414610bbd578063e985e9c514610bd4578063f2fde38b14610c11578063f8069e6014610c3a576105ae565b8063b56906b114610aaf578063b88d4fde14610ad8578063b9fdd56914610b01578063c87b56dd14610b2c578063d7224ba014610b69576105ae565b806395d89b41116100f257806395d89b41146109dc578063a22cb46514610a07578063a79b817314610a30578063ac48830b14610a5b578063b296024d14610a84576105ae565b8063715018a614610944578063896f398a1461095b5780638da5cb5b146109865780638e9673a5146109b1576105ae565b80632fe383f0116101b15780636296667811610175578063629666781461084b5780636352211e146108765780636c0360eb146108b35780636c803886146108de57806370a0823114610907576105ae565b80632fe383f0146107665780633ccfd60b146107a357806342842e0e146107ba5780634f6ccce7146107e3578063521b20ec14610820576105ae565b80630eaaf4c8116101f85780630eaaf4c81461068157806317d946f2146106aa57806318160ddd146106d557806323b872dd146107005780632f745c5914610729576105ae565b806301ffc9a7146105b357806306fdde03146105f0578063081812fc1461061b578063095ea7b314610658576105ae565b366105ae57600d60009054906101000a900460ff1661027d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161027490613605565b60405180910390fd5b610285610c65565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156102c5576102c0610c8f565b6105ac565b600060647f0000000000000000000000000000000000000000000000000000000000000001346102f5919061365e565b6102ff91906136e7565b90506000813461030f9190613718565b9050600060106000600c54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008282610376919061374c565b9050600060106000600c5481526020019081526020016000206000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600b548211610435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161042c90613814565b60405180910390fd5b6064600a5482610445919061365e565b61044f91906136e7565b8161045a919061374c565b82101561049c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610493906138a6565b60405180910390fd5b83836104a8919061374c565b60106000600c54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f0000000000000000000000009a88d47ebb4038e9d8479a9535fcca0d3f8ba73b73ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f19350505050158015610564573d6000803e3d6000fd5b5033600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050505b005b600080fd5b3480156105bf57600080fd5b506105da60048036038101906105d59190613932565b610f82565b6040516105e7919061397a565b60405180910390f35b3480156105fc57600080fd5b506106056110cc565b6040516106129190613a1d565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190613a6b565b61115e565b60405161064f9190613ad9565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190613b20565b6111e3565b005b34801561068d57600080fd5b506106a860048036038101906106a39190613a6b565b6112fc565b005b3480156106b657600080fd5b506106bf6114dd565b6040516106cc919061397a565b60405180910390f35b3480156106e157600080fd5b506106ea6114f0565b6040516106f79190613b6f565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190613b8a565b6114f9565b005b34801561073557600080fd5b50610750600480360381019061074b9190613b20565b611509565b60405161075d9190613b6f565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190613bdd565b611707565b60405161079a9190613b6f565b60405180910390f35b3480156107af57600080fd5b506107b861172c565b005b3480156107c657600080fd5b506107e160048036038101906107dc9190613b8a565b6117f7565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190613a6b565b611817565b6040516108179190613b6f565b60405180910390f35b34801561082c57600080fd5b5061083561186a565b6040516108429190613c3e565b60405180910390f35b34801561085757600080fd5b50610860611890565b60405161086d9190613b6f565b60405180910390f35b34801561088257600080fd5b5061089d60048036038101906108989190613a6b565b611896565b6040516108aa9190613ad9565b60405180910390f35b3480156108bf57600080fd5b506108c86118ac565b6040516108d59190613a1d565b60405180910390f35b3480156108ea57600080fd5b5061090560048036038101906109009190613a6b565b61193e565b005b34801561091357600080fd5b5061092e60048036038101906109299190613c59565b6119c4565b60405161093b9190613b6f565b60405180910390f35b34801561095057600080fd5b50610959611aad565b005b34801561096757600080fd5b50610970611b35565b60405161097d9190613b6f565b60405180910390f35b34801561099257600080fd5b5061099b610c65565b6040516109a89190613ad9565b60405180910390f35b3480156109bd57600080fd5b506109c6611b59565b6040516109d39190613a1d565b60405180910390f35b3480156109e857600080fd5b506109f1611be7565b6040516109fe9190613a1d565b60405180910390f35b348015610a1357600080fd5b50610a2e6004803603810190610a299190613cb2565b611c79565b005b348015610a3c57600080fd5b50610a45611dfa565b604051610a529190613ad9565b60405180910390f35b348015610a6757600080fd5b50610a826004803603810190610a7d9190613bdd565b611e1e565b005b348015610a9057600080fd5b50610a99611ea8565b604051610aa69190613b6f565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad19190613d57565b611eae565b005b348015610ae457600080fd5b50610aff6004803603810190610afa9190613ee7565b611fc6565b005b348015610b0d57600080fd5b50610b16612022565b604051610b239190613b6f565b60405180910390f35b348015610b3857600080fd5b50610b536004803603810190610b4e9190613a6b565b612028565b604051610b609190613a1d565b60405180910390f35b348015610b7557600080fd5b50610b7e612115565b604051610b8b9190613b6f565b60405180910390f35b348015610ba057600080fd5b50610bbb6004803603810190610bb6919061400b565b61211b565b005b348015610bc957600080fd5b50610bd2610c8f565b005b348015610be057600080fd5b50610bfb6004803603810190610bf69190614054565b612237565b604051610c08919061397a565b60405180910390f35b348015610c1d57600080fd5b50610c386004803603810190610c339190613c59565b6122cb565b005b348015610c4657600080fd5b50610c4f6123c3565b604051610c5c9190613c3e565b60405180910390f35b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c976123e7565b73ffffffffffffffffffffffffffffffffffffffff16610cb5610c65565b73ffffffffffffffffffffffffffffffffffffffff1614610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d02906140e0565b60405180910390fd5b600d60009054906101000a900460ff16610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613605565b60405180910390fd5b600060106000600c5481526020019081526020016000206000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600060106000600c5481526020019081526020016000206000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e55610c65565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e9a573d6000803e3d6000fd5b50610ec8600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016123ef565b600e601160006001610ed86114f0565b610ee29190613718565b8152602001908152602001600020908054610efc9061412f565b610f0792919061343e565b506000600d60006101000a81548160ff0219169083151502179055506000600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c6000828254610f78919061374c565b9250508190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061104d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806110b557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806110c557506110c48261240d565b5b9050919050565b6060600180546110db9061412f565b80601f01602080910402602001604051908101604052809291908181526020018280546111079061412f565b80156111545780601f1061112957610100808354040283529160200191611154565b820191906000526020600020905b81548152906001019060200180831161113757829003601f168201915b5050505050905090565b600061116982612477565b6111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f906141ad565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006111ee82611896565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690614219565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661127e6123e7565b73ffffffffffffffffffffffffffffffffffffffff1614806112ad57506112ac816112a76123e7565b612237565b5b6112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e3906141ad565b60405180910390fd5b6112f7838383612484565b505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561138d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611384906142ab565b60405180910390fd5b60006010600083815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060006010600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000479050808210611490573373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561148a573d6000803e3d6000fd5b506114d8565b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156114d6573d6000803e3d6000fd5b505b505050565b600d60009054906101000a900460ff1681565b60008054905090565b611504838383612536565b505050565b6000611514836119c4565b8210611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90614317565b60405180910390fd5b600061155f6114f0565b905060008060005b838110156116c5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461165957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116b157868414156116a2578195505050505050611701565b83806116ad90614337565b9450505b5080806116bd90614337565b915050611567565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f8906143cc565b60405180910390fd5b92915050565b6010602052816000526040600020602052806000526040600020600091509150505481565b6117346123e7565b73ffffffffffffffffffffffffffffffffffffffff16611752610c65565b73ffffffffffffffffffffffffffffffffffffffff16146117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f906140e0565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156117f3573d6000803e3d6000fd5b5050565b61181283838360405180602001604052806000815250611fc6565b505050565b60006118216114f0565b8210611862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185990614438565b60405180910390fd5b819050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b60006118a182612aef565b600001519050919050565b6060600380546118bb9061412f565b80601f01602080910402602001604051908101604052809291908181526020018280546118e79061412f565b80156119345780601f1061190957610100808354040283529160200191611934565b820191906000526020600020905b81548152906001019060200180831161191757829003601f168201915b5050505050905090565b6119466123e7565b73ffffffffffffffffffffffffffffffffffffffff16611964610c65565b73ffffffffffffffffffffffffffffffffffffffff16146119ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b1906140e0565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2c906144a4565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611ab56123e7565b73ffffffffffffffffffffffffffffffffffffffff16611ad3610c65565b73ffffffffffffffffffffffffffffffffffffffff1614611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b20906140e0565b60405180910390fd5b611b336000612cf2565b565b7f000000000000000000000000000000000000000000000000000000000000000181565b600e8054611b669061412f565b80601f0160208091040260200160405190810160405280929190818152602001828054611b929061412f565b8015611bdf5780601f10611bb457610100808354040283529160200191611bdf565b820191906000526020600020905b815481529060010190602001808311611bc257829003601f168201915b505050505081565b606060028054611bf69061412f565b80601f0160208091040260200160405190810160405280929190818152602001828054611c229061412f565b8015611c6f5780601f10611c4457610100808354040283529160200191611c6f565b820191906000526020600020905b815481529060010190602001808311611c5257829003601f168201915b5050505050905090565b611c816123e7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce6906141ad565b60405180910390fd5b8060076000611cfc6123e7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611da96123e7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dee919061397a565b60405180910390a35050565b7f000000000000000000000000084b1c3c81545d370f3634392de611caabff814881565b611e266123e7565b73ffffffffffffffffffffffffffffffffffffffff16611e44610c65565b73ffffffffffffffffffffffffffffffffffffffff1614611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e91906140e0565b60405180910390fd5b611ea481836123ef565b5050565b600a5481565b611eb66123e7565b73ffffffffffffffffffffffffffffffffffffffff16611ed4610c65565b73ffffffffffffffffffffffffffffffffffffffff1614611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f21906140e0565b60405180910390fd5b600d60009054906101000a900460ff1615611f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7190614510565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550670de0b6b3a764000083611fa9919061365e565b600b819055508181600e9190611fc09291906134cb565b50505050565b611fd1848484612536565b611fdd84848484612db8565b61201c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120139061457c565b60405180910390fd5b50505050565b600b5481565b606061203382612477565b612072576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120699061457c565b60405180910390fd5b6011600083815260200190815260200160002080546120909061412f565b80601f01602080910402602001604051908101604052809291908181526020018280546120bc9061412f565b80156121095780601f106120de57610100808354040283529160200191612109565b820191906000526020600020905b8154815290600101906020018083116120ec57829003601f168201915b50505050509050919050565b60085481565b6121236123e7565b73ffffffffffffffffffffffffffffffffffffffff16612141610c65565b73ffffffffffffffffffffffffffffffffffffffff1614612197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218e906140e0565b60405180910390fd5b7f000000000000000000000000084b1c3c81545d370f3634392de611caabff814873ffffffffffffffffffffffffffffffffffffffff1663c47f0027826040518263ffffffff1660e01b81526004016121f09190613a1d565b6020604051808303816000875af115801561220f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061223391906145d2565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122d36123e7565b73ffffffffffffffffffffffffffffffffffffffff166122f1610c65565b73ffffffffffffffffffffffffffffffffffffffff1614612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e906140e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ae90614671565b60405180910390fd5b6123c081612cf2565b50565b7f0000000000000000000000009a88d47ebb4038e9d8479a9535fcca0d3f8ba73b81565b600033905090565b612409828260405180602001604052806000815250612f40565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061254182612aef565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166125686123e7565b73ffffffffffffffffffffffffffffffffffffffff1614806125c4575061258d6123e7565b73ffffffffffffffffffffffffffffffffffffffff166125ac8461115e565b73ffffffffffffffffffffffffffffffffffffffff16145b806125e057506125df82600001516125da6123e7565b612237565b5b905080612622576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612619906141ad565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268b90614219565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fb906144a4565b60405180910390fd5b612711858585600161341f565b6127216000848460000151612484565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661278f91906146ad565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661283391906146e1565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612939919061374c565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a7f576129af81612477565b15612a7e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ae78686866001613425565b505050505050565b612af7613551565b612b0082612477565b612b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3690614773565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000018310612ba35760017f000000000000000000000000000000000000000000000000000000000000000184612b969190613718565b612ba0919061374c565b90505b60008390505b818110612cb1576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c9d57809350505050612ced565b508080612ca990614793565b915050612ba9565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce490614219565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612dd98473ffffffffffffffffffffffffffffffffffffffff1661342b565b15612f33578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e026123e7565b8786866040518563ffffffff1660e01b8152600401612e249493929190614812565b6020604051808303816000875af1925050508015612e6057506040513d601f19601f82011682018060405250810190612e5d9190614873565b60015b612ee3573d8060008114612e90576040519150601f19603f3d011682016040523d82523d6000602084013e612e95565b606091505b50600081511415612edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed29061457c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f38565b600190505b949350505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fad906144a4565b60405180910390fd5b612fbf81612477565b15612fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff6906141ad565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000001831115613062576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613059906148ec565b60405180910390fd5b61306f600085838661341f565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161316c91906146e1565b6fffffffffffffffffffffffffffffffff16815260200185836020015161319391906146e1565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561340257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133a26000888488612db8565b6133e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d89061457c565b60405180910390fd5b81806133ec90614337565b92505080806133fa90614337565b915050613331565b50806000819055506134176000878588613425565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b82805461344a9061412f565b90600052602060002090601f01602090048101928261346c57600085556134ba565b82601f1061347d57805485556134ba565b828001600101855582156134ba57600052602060002091601f016020900482015b828111156134b957825482559160010191906001019061349e565b5b5090506134c7919061358b565b5090565b8280546134d79061412f565b90600052602060002090601f0160209004810192826134f95760008555613540565b82601f1061351257803560ff1916838001178555613540565b82800160010185558215613540579182015b8281111561353f578235825591602001919060010190613524565b5b50905061354d919061358b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156135a457600081600090555060010161358c565b5090565b600082825260208201905092915050565b7f42696464696e6720697320696e61637469766521000000000000000000000000600082015250565b60006135ef6014836135a8565b91506135fa826135b9565b602082019050919050565b6000602082019050818103600083015261361e816135e2565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061366982613625565b915061367483613625565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136ad576136ac61362f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136f282613625565b91506136fd83613625565b92508261370d5761370c6136b8565b5b828204905092915050565b600061372382613625565b915061372e83613625565b9250828210156137415761374061362f565b5b828203905092915050565b600061375782613625565b915061376283613625565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137975761379661362f565b5b828201905092915050565b7f546f74616c20626964206d75737420657863656564207374617274696e67206260008201527f6964000000000000000000000000000000000000000000000000000000000000602082015250565b60006137fe6022836135a8565b9150613809826137a2565b604082019050919050565b6000602082019050818103600083015261382d816137f1565b9050919050565b7f546f74616c20626964206d75737420657863656564206f7220657175616c206860008201527f69676865737420626964202b206d696e2062696420696e6372656d656e742100602082015250565b6000613890603f836135a8565b915061389b82613834565b604082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61390f816138da565b811461391a57600080fd5b50565b60008135905061392c81613906565b92915050565b600060208284031215613948576139476138d0565b5b60006139568482850161391d565b91505092915050565b60008115159050919050565b6139748161395f565b82525050565b600060208201905061398f600083018461396b565b92915050565b600081519050919050565b60005b838110156139be5780820151818401526020810190506139a3565b838111156139cd576000848401525b50505050565b6000601f19601f8301169050919050565b60006139ef82613995565b6139f981856135a8565b9350613a098185602086016139a0565b613a12816139d3565b840191505092915050565b60006020820190508181036000830152613a3781846139e4565b905092915050565b613a4881613625565b8114613a5357600080fd5b50565b600081359050613a6581613a3f565b92915050565b600060208284031215613a8157613a806138d0565b5b6000613a8f84828501613a56565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ac382613a98565b9050919050565b613ad381613ab8565b82525050565b6000602082019050613aee6000830184613aca565b92915050565b613afd81613ab8565b8114613b0857600080fd5b50565b600081359050613b1a81613af4565b92915050565b60008060408385031215613b3757613b366138d0565b5b6000613b4585828601613b0b565b9250506020613b5685828601613a56565b9150509250929050565b613b6981613625565b82525050565b6000602082019050613b846000830184613b60565b92915050565b600080600060608486031215613ba357613ba26138d0565b5b6000613bb186828701613b0b565b9350506020613bc286828701613b0b565b9250506040613bd386828701613a56565b9150509250925092565b60008060408385031215613bf457613bf36138d0565b5b6000613c0285828601613a56565b9250506020613c1385828601613b0b565b9150509250929050565b6000613c2882613a98565b9050919050565b613c3881613c1d565b82525050565b6000602082019050613c536000830184613c2f565b92915050565b600060208284031215613c6f57613c6e6138d0565b5b6000613c7d84828501613b0b565b91505092915050565b613c8f8161395f565b8114613c9a57600080fd5b50565b600081359050613cac81613c86565b92915050565b60008060408385031215613cc957613cc86138d0565b5b6000613cd785828601613b0b565b9250506020613ce885828601613c9d565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613d1757613d16613cf2565b5b8235905067ffffffffffffffff811115613d3457613d33613cf7565b5b602083019150836001820283011115613d5057613d4f613cfc565b5b9250929050565b600080600060408486031215613d7057613d6f6138d0565b5b6000613d7e86828701613a56565b935050602084013567ffffffffffffffff811115613d9f57613d9e6138d5565b5b613dab86828701613d01565b92509250509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613df4826139d3565b810181811067ffffffffffffffff82111715613e1357613e12613dbc565b5b80604052505050565b6000613e266138c6565b9050613e328282613deb565b919050565b600067ffffffffffffffff821115613e5257613e51613dbc565b5b613e5b826139d3565b9050602081019050919050565b82818337600083830152505050565b6000613e8a613e8584613e37565b613e1c565b905082815260208101848484011115613ea657613ea5613db7565b5b613eb1848285613e68565b509392505050565b600082601f830112613ece57613ecd613cf2565b5b8135613ede848260208601613e77565b91505092915050565b60008060008060808587031215613f0157613f006138d0565b5b6000613f0f87828801613b0b565b9450506020613f2087828801613b0b565b9350506040613f3187828801613a56565b925050606085013567ffffffffffffffff811115613f5257613f516138d5565b5b613f5e87828801613eb9565b91505092959194509250565b600067ffffffffffffffff821115613f8557613f84613dbc565b5b613f8e826139d3565b9050602081019050919050565b6000613fae613fa984613f6a565b613e1c565b905082815260208101848484011115613fca57613fc9613db7565b5b613fd5848285613e68565b509392505050565b600082601f830112613ff257613ff1613cf2565b5b8135614002848260208601613f9b565b91505092915050565b600060208284031215614021576140206138d0565b5b600082013567ffffffffffffffff81111561403f5761403e6138d5565b5b61404b84828501613fdd565b91505092915050565b6000806040838503121561406b5761406a6138d0565b5b600061407985828601613b0b565b925050602061408a85828601613b0b565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140ca6020836135a8565b91506140d582614094565b602082019050919050565b600060208201905081810360008301526140f9816140bd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061414757607f821691505b6020821081141561415b5761415a614100565b5b50919050565b7f6100000000000000000000000000000000000000000000000000000000000000600082015250565b60006141976001836135a8565b91506141a282614161565b602082019050919050565b600060208201905081810360008301526141c68161418a565b9050919050565b7f6f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006142036001836135a8565b915061420e826141cd565b602082019050919050565b60006020820190508181036000830152614232816141f6565b9050919050565b7f43616e6e6f74207769746864726177206269642061732068696768657374206260008201527f6964646572210000000000000000000000000000000000000000000000000000602082015250565b60006142956026836135a8565b91506142a082614239565b604082019050919050565b600060208201905081810360008301526142c481614288565b9050919050565b7f6200000000000000000000000000000000000000000000000000000000000000600082015250565b60006143016001836135a8565b915061430c826142cb565b602082019050919050565b60006020820190508181036000830152614330816142f4565b9050919050565b600061434282613625565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143755761437461362f565b5b600182019050919050565b7f7500000000000000000000000000000000000000000000000000000000000000600082015250565b60006143b66001836135a8565b91506143c182614380565b602082019050919050565b600060208201905081810360008301526143e5816143a9565b9050919050565b7f6700000000000000000000000000000000000000000000000000000000000000600082015250565b60006144226001836135a8565b915061442d826143ec565b602082019050919050565b6000602082019050818103600083015261445181614415565b9050919050565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b600061448e6001836135a8565b915061449982614458565b602082019050919050565b600060208201905081810360008301526144bd81614481565b9050919050565b7f42696464696e6720697320616c72656164792061637469766521000000000000600082015250565b60006144fa601a836135a8565b9150614505826144c4565b602082019050919050565b60006020820190508181036000830152614529816144ed565b9050919050565b7f7a00000000000000000000000000000000000000000000000000000000000000600082015250565b60006145666001836135a8565b915061457182614530565b602082019050919050565b6000602082019050818103600083015261459581614559565b9050919050565b6000819050919050565b6145af8161459c565b81146145ba57600080fd5b50565b6000815190506145cc816145a6565b92915050565b6000602082840312156145e8576145e76138d0565b5b60006145f6848285016145bd565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061465b6026836135a8565b9150614666826145ff565b604082019050919050565b6000602082019050818103600083015261468a8161464e565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006146b882614691565b91506146c383614691565b9250828210156146d6576146d561362f565b5b828203905092915050565b60006146ec82614691565b91506146f783614691565b9250826fffffffffffffffffffffffffffffffff0382111561471c5761471b61362f565b5b828201905092915050565b7f7400000000000000000000000000000000000000000000000000000000000000600082015250565b600061475d6001836135a8565b915061476882614727565b602082019050919050565b6000602082019050818103600083015261478c81614750565b9050919050565b600061479e82613625565b915060008214156147b2576147b161362f565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b60006147e4826147bd565b6147ee81856147c8565b93506147fe8185602086016139a0565b614807816139d3565b840191505092915050565b60006080820190506148276000830187613aca565b6148346020830186613aca565b6148416040830185613b60565b818103606083015261485381846147d9565b905095945050505050565b60008151905061486d81613906565b92915050565b600060208284031215614889576148886138d0565b5b60006148978482850161485e565b91505092915050565b7f6d00000000000000000000000000000000000000000000000000000000000000600082015250565b60006148d66001836135a8565b91506148e1826148a0565b602082019050919050565b60006020820190508181036000830152614905816148c9565b905091905056fea2646970667358221220cbbcb2ff054539afa0fb2392dc33d2ef32124620156e8c8f2c4cbe30a1cda5d364736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004144756465747465206f66204f6d616b617365612c206669727374206f6620686572206e616d652c2074686520717565656e6c6f7264206f66206d656d656c616e640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034444540000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Dudette of Omakasea, first of her name, the queenlord of memeland
Arg [1] : _symbol (string): DDT

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [3] : 44756465747465206f66204f6d616b617365612c206669727374206f66206865
Arg [4] : 72206e616d652c2074686520717565656e6c6f7264206f66206d656d656c616e
Arg [5] : 6400000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4444540000000000000000000000000000000000000000000000000000000000


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.