ETH Price: $3,456.48 (+2.02%)
Gas: 8 Gwei

Token

MonoBitz (MONO)
 

Overview

Max Total Supply

6,969 MONO

Holders

2,022

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 MONO
0x4b6a535dfbbd7bc4618f002cd5441602f6004896
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:
MonoBitz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : MonoBitz.sol
////////////////////////////////////////////////////////////////////////////////////
//________________________________________________________________________________//
//________________________________________________________________________________//
//____________________________MONOMONOMONOMONOMONOMONO____________________________//
//____________________________ONOMONOMONOMONOMONOMONOM____________________________//
//________________________ONOM________________________MONO________________________//
//________________________ONOM________________________ONOM________________________//
//____________________MONO________________________________MONO____________________//
//____________________ONOM________________________________ONOM____________________//
//____________________MONO________________________________MONO____________________//
//____________________ONOM________________________________ONOM____________________//
//____________________MONO________________________________MONO____________________//
//____________________ONOM________________________________ONOM____________________//
//____________________MONO________________________________MONO____________________//
//____________________ONOM________________________________ONOM____________________//
//____________________MONO________________________________MONO____________________//
//________________ONOM____________MONO____________MONO____ONOM____________________//
//________________MONO____________ONOM____________ONOM____MONO____________________//
//________________ONOM____________MONO____________MONO____ONOM____________________//
//________________MONO____________ONOM____________ONOM____MONO____________________//
//____________________ONOM________________________________ONOM____________________//
//____________________MONO________________________________MONO____________________//
//________________________ONOM________________________ONOM________________________//
//________________________MONO________________________MONO________________________//
//____________________________MONOMONOMONOMONOMONOMONO____________________________//
//____________________________ONOMONOMONOMONOMONOMONOM____________________________//
//________________________MONO____________________MONOMONO________________________//
//________________________ONOM____________________ONOMONOM________________________//
//____________________MONO____ONOM________________MONO____ONOM____________________//
//____________________ONOM____MONO________________ONOM____MONO____________________//
//____________________MONO____MONO________________MONO____ONOM____________________//
//____________________ONOM____ONOM________________ONOM____MONO____________________//
////////////////////////////////////////////////////////////////////////////////////

// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.7.0 <0.9.0;

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

contract MonoBitz is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 6969;
  uint256 public maxMintAmount = 3;
  uint256 public nftPerAddressLimit = 3;
  bool public paused = false;
  bool public revealed = false;
  bool public onlyMonolisted = true;
  address[] public monolistedAddresses;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused);
    uint256 supply = totalSupply();
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender != owner()) {
        if (onlyMonolisted == true) {
            require(isMonolisted(msg.sender), "User is not Monolisted");
            uint256 ownerTokenCount = balanceOf(msg.sender);
            require(ownerTokenCount < nftPerAddressLimit);
        }
        require(msg.value >= cost * _mintAmount);
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }

  function isMonolisted(address _user) public view returns (bool) {
      for(uint256 i = 0; i < monolistedAddresses.length; i++) {
          if (monolistedAddresses[i] == _user) {
              return true;
          }
      }
      return false;
  }

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

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

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyMonolisted(bool _state) public onlyOwner {
    onlyMonolisted = _state;
  }
 
 function monolistUsers(address[] calldata _user) public onlyOwner {
    delete monolistedAddresses;
    monolistedAddresses = _user;
  }

  function withdraw() public payable onlyOwner {    
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

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

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 9 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 12 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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":[{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isMonolisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"}],"name":"monolistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"monolistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyMonolisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyMonolisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000519291906200034e565b506000600e55611b39600f55600360105560036011556000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff021916908315150217905550348015620000c557600080fd5b5060405162004c2a38038062004c2a8339818101604052810190620000eb91906200047c565b83838160009080519060200190620001059291906200034e565b5080600190805190602001906200011e9291906200034e565b50505062000141620001356200016d60201b60201c565b6200017560201b60201c565b62000152826200023b60201b60201c565b62000163816200026760201b60201c565b5050505062000771565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200024b6200029360201b60201c565b80600b9080519060200190620002639291906200034e565b5050565b620002776200029360201b60201c565b80600d90805190602001906200028f9291906200034e565b5050565b620002a36200016d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002c96200032460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000322576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003199062000591565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200035c9062000659565b90600052602060002090601f016020900481019282620003805760008555620003cc565b82601f106200039b57805160ff1916838001178555620003cc565b82800160010185558215620003cc579182015b82811115620003cb578251825591602001919060010190620003ae565b5b509050620003db9190620003df565b5090565b5b80821115620003fa576000816000905550600101620003e0565b5090565b6000620004156200040f84620005dc565b620005b3565b90508281526020810184848401111562000434576200043362000728565b5b6200044184828562000623565b509392505050565b600082601f83011262000461576200046062000723565b5b815162000473848260208601620003fe565b91505092915050565b6000806000806080858703121562000499576200049862000732565b5b600085015167ffffffffffffffff811115620004ba57620004b96200072d565b5b620004c88782880162000449565b945050602085015167ffffffffffffffff811115620004ec57620004eb6200072d565b5b620004fa8782880162000449565b935050604085015167ffffffffffffffff8111156200051e576200051d6200072d565b5b6200052c8782880162000449565b925050606085015167ffffffffffffffff81111562000550576200054f6200072d565b5b6200055e8782880162000449565b91505092959194509250565b60006200057960208362000612565b9150620005868262000748565b602082019050919050565b60006020820190508181036000830152620005ac816200056a565b9050919050565b6000620005bf620005d2565b9050620005cd82826200068f565b919050565b6000604051905090565b600067ffffffffffffffff821115620005fa57620005f9620006f4565b5b620006058262000737565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200064357808201518184015260208101905062000626565b8381111562000653576000848401525b50505050565b600060028204905060018216806200067257607f821691505b60208210811415620006895762000688620006c5565b5b50919050565b6200069a8262000737565b810181811067ffffffffffffffff82111715620006bc57620006bb620006f4565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6144a980620007816000396000f3fe6080604052600436106102675760003560e01c80636bee23f711610144578063ba7d2c76116100b6578063da3ef23f1161007a578063da3ef23f14610916578063dc1907ed1461093f578063e807eb3214610968578063e985e9c514610991578063f2c4ce1e146109ce578063f2fde38b146109f757610267565b8063ba7d2c761461082f578063c66828621461085a578063c87b56dd14610885578063d0eb26b0146108c2578063d5abeb01146108eb57610267565b80638da5cb5b116101085780638da5cb5b1461075457806395d89b411461077f578063a0712d68146107aa578063a22cb465146107c6578063a475b5dd146107ef578063b88d4fde1461080657610267565b80636bee23f7146106815780636c0360eb146106ac57806370a08231146106d7578063715018a6146107145780637f00c7a61461072b57610267565b80632f745c59116101dd57806344a0d68a116101a157806344a0d68a1461055f5780634f6ccce71461058857806351830227146105c557806355f804b3146105f05780635c975abb146106195780636352211e1461064457610267565b80632f745c59146104755780633180ba8f146104b25780633ccfd60b146104ef57806342842e0e146104f9578063438b63001461052257610267565b8063095ea7b31161022f578063095ea7b31461036557806313faede61461038e57806318160ddd146103b95780631bb08904146103e4578063239c70ae1461042157806323b872dd1461044c57610267565b806301ffc9a71461026c57806302329a29146102a957806306fdde03146102d2578063081812fc146102fd578063081c8c441461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613244565b610a20565b6040516102a0919061382d565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613217565b610a9a565b005b3480156102de57600080fd5b506102e7610abf565b6040516102f49190613848565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f91906132e7565b610b51565b60405161033191906137a4565b60405180910390f35b34801561034657600080fd5b5061034f610b97565b60405161035c9190613848565b60405180910390f35b34801561037157600080fd5b5061038c6004803603810190610387919061318a565b610c25565b005b34801561039a57600080fd5b506103a3610d3d565b6040516103b09190613a8a565b60405180910390f35b3480156103c557600080fd5b506103ce610d43565b6040516103db9190613a8a565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190613007565b610d50565b604051610418919061382d565b60405180910390f35b34801561042d57600080fd5b50610436610dff565b6040516104439190613a8a565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190613074565b610e05565b005b34801561048157600080fd5b5061049c6004803603810190610497919061318a565b610e65565b6040516104a99190613a8a565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d491906132e7565b610f0a565b6040516104e691906137a4565b60405180910390f35b6104f7610f49565b005b34801561050557600080fd5b50610520600480360381019061051b9190613074565b610fd1565b005b34801561052e57600080fd5b5061054960048036038101906105449190613007565b610ff1565b604051610556919061380b565b60405180910390f35b34801561056b57600080fd5b50610586600480360381019061058191906132e7565b61109f565b005b34801561059457600080fd5b506105af60048036038101906105aa91906132e7565b6110b1565b6040516105bc9190613a8a565b60405180910390f35b3480156105d157600080fd5b506105da611122565b6040516105e7919061382d565b60405180910390f35b3480156105fc57600080fd5b506106176004803603810190610612919061329e565b611135565b005b34801561062557600080fd5b5061062e611157565b60405161063b919061382d565b60405180910390f35b34801561065057600080fd5b5061066b600480360381019061066691906132e7565b61116a565b60405161067891906137a4565b60405180910390f35b34801561068d57600080fd5b5061069661121c565b6040516106a3919061382d565b60405180910390f35b3480156106b857600080fd5b506106c161122f565b6040516106ce9190613848565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f99190613007565b6112bd565b60405161070b9190613a8a565b60405180910390f35b34801561072057600080fd5b50610729611375565b005b34801561073757600080fd5b50610752600480360381019061074d91906132e7565b611389565b005b34801561076057600080fd5b5061076961139b565b60405161077691906137a4565b60405180910390f35b34801561078b57600080fd5b506107946113c5565b6040516107a19190613848565b60405180910390f35b6107c460048036038101906107bf91906132e7565b611457565b005b3480156107d257600080fd5b506107ed60048036038101906107e8919061314a565b6115c4565b005b3480156107fb57600080fd5b506108046115da565b005b34801561081257600080fd5b5061082d600480360381019061082891906130c7565b6115ff565b005b34801561083b57600080fd5b50610844611661565b6040516108519190613a8a565b60405180910390f35b34801561086657600080fd5b5061086f611667565b60405161087c9190613848565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a791906132e7565b6116f5565b6040516108b99190613848565b60405180910390f35b3480156108ce57600080fd5b506108e960048036038101906108e491906132e7565b61184e565b005b3480156108f757600080fd5b50610900611860565b60405161090d9190613a8a565b60405180910390f35b34801561092257600080fd5b5061093d6004803603810190610938919061329e565b611866565b005b34801561094b57600080fd5b50610966600480360381019061096191906131ca565b611888565b005b34801561097457600080fd5b5061098f600480360381019061098a9190613217565b6118b4565b005b34801561099d57600080fd5b506109b860048036038101906109b39190613034565b6118d9565b6040516109c5919061382d565b60405180910390f35b3480156109da57600080fd5b506109f560048036038101906109f0919061329e565b61196d565b005b348015610a0357600080fd5b50610a1e6004803603810190610a199190613007565b61198f565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a935750610a9282611a13565b5b9050919050565b610aa2611af5565b80601260006101000a81548160ff02191690831515021790555050565b606060008054610ace90613d93565b80601f0160208091040260200160405190810160405280929190818152602001828054610afa90613d93565b8015610b475780601f10610b1c57610100808354040283529160200191610b47565b820191906000526020600020905b815481529060010190602001808311610b2a57829003601f168201915b5050505050905090565b6000610b5c82611b73565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610ba490613d93565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd090613d93565b8015610c1d5780601f10610bf257610100808354040283529160200191610c1d565b820191906000526020600020905b815481529060010190602001808311610c0057829003601f168201915b505050505081565b6000610c308261116a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890613a0a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc0611bbe565b73ffffffffffffffffffffffffffffffffffffffff161480610cef5750610cee81610ce9611bbe565b6118d9565b5b610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d259061396a565b60405180910390fd5b610d388383611bc6565b505050565b600e5481565b6000600880549050905090565b600080600090505b601380549050811015610df4578273ffffffffffffffffffffffffffffffffffffffff1660138281548110610d9057610d8f613f2c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610de1576001915050610dfa565b8080610dec90613df6565b915050610d58565b50600090505b919050565b60105481565b610e16610e10611bbe565b82611c7f565b610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90613a6a565b60405180910390fd5b610e60838383611d14565b505050565b6000610e70836112bd565b8210610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea89061386a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60138181548110610f1a57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f51611af5565b6000610f5b61139b565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f7e9061378f565b60006040518083038185875af1925050503d8060008114610fbb576040519150601f19603f3d011682016040523d82523d6000602084013e610fc0565b606091505b5050905080610fce57600080fd5b50565b610fec838383604051806020016040528060008152506115ff565b505050565b60606000610ffe836112bd565b905060008167ffffffffffffffff81111561101c5761101b613f5b565b5b60405190808252806020026020018201604052801561104a5781602001602082028036833780820191505090505b50905060005b82811015611094576110628582610e65565b82828151811061107557611074613f2c565b5b602002602001018181525050808061108c90613df6565b915050611050565b508092505050919050565b6110a7611af5565b80600e8190555050565b60006110bb610d43565b82106110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390613a4a565b60405180910390fd5b600882815481106111105761110f613f2c565b5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b61113d611af5565b80600b9080519060200190611153929190612d04565b5050565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a906139ea565b60405180910390fd5b80915050919050565b601260029054906101000a900460ff1681565b600b805461123c90613d93565b80601f016020809104026020016040519081016040528092919081815260200182805461126890613d93565b80156112b55780601f1061128a576101008083540402835291602001916112b5565b820191906000526020600020905b81548152906001019060200180831161129857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113259061394a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61137d611af5565b6113876000611f7b565b565b611391611af5565b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546113d490613d93565b80601f016020809104026020016040519081016040528092919081815260200182805461140090613d93565b801561144d5780601f106114225761010080835404028352916020019161144d565b820191906000526020600020905b81548152906001019060200180831161143057829003601f168201915b5050505050905090565b601260009054906101000a900460ff161561147157600080fd5b600061147b610d43565b90506000821161148a57600080fd5b60105482111561149957600080fd5b600f5482826114a89190613bc8565b11156114b357600080fd5b6114bb61139b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115895760011515601260029054906101000a900460ff161515141561156e5761151233610d50565b611551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154890613a2a565b60405180910390fd5b600061155c336112bd565b9050601154811061156c57600080fd5b505b81600e5461157c9190613c4f565b34101561158857600080fd5b5b6000600190505b8281116115bf576115ac3382846115a79190613bc8565b612041565b80806115b790613df6565b915050611590565b505050565b6115d66115cf611bbe565b838361205f565b5050565b6115e2611af5565b6001601260016101000a81548160ff021916908315150217905550565b61161061160a611bbe565b83611c7f565b61164f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164690613a6a565b60405180910390fd5b61165b848484846121cc565b50505050565b60115481565b600c805461167490613d93565b80601f01602080910402602001604051908101604052809291908181526020018280546116a090613d93565b80156116ed5780601f106116c2576101008083540402835291602001916116ed565b820191906000526020600020905b8154815290600101906020018083116116d057829003601f168201915b505050505081565b606061170082612228565b61173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906139ca565b60405180910390fd5b60001515601260019054906101000a900460ff16151514156117ed57600d805461176890613d93565b80601f016020809104026020016040519081016040528092919081815260200182805461179490613d93565b80156117e15780601f106117b6576101008083540402835291602001916117e1565b820191906000526020600020905b8154815290600101906020018083116117c457829003601f168201915b50505050509050611849565b60006117f7612294565b905060008151116118175760405180602001604052806000815250611845565b8061182184612326565b600c6040516020016118359392919061375e565b6040516020818303038152906040525b9150505b919050565b611856611af5565b8060118190555050565b600f5481565b61186e611af5565b80600c9080519060200190611884929190612d04565b5050565b611890611af5565b6013600061189e9190612d8a565b8181601391906118af929190612dab565b505050565b6118bc611af5565b80601260026101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611975611af5565b80600d908051906020019061198b929190612d04565b5050565b611997611af5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe906138aa565b60405180910390fd5b611a1081611f7b565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ade57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611aee5750611aed82612487565b5b9050919050565b611afd611bbe565b73ffffffffffffffffffffffffffffffffffffffff16611b1b61139b565b73ffffffffffffffffffffffffffffffffffffffff1614611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b68906139aa565b60405180910390fd5b565b611b7c81612228565b611bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb2906139ea565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c398361116a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611c8b8361116a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ccd5750611ccc81856118d9565b5b80611d0b57508373ffffffffffffffffffffffffffffffffffffffff16611cf384610b51565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d348261116a565b73ffffffffffffffffffffffffffffffffffffffff1614611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d81906138ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df19061390a565b60405180910390fd5b611e058383836124f1565b611e10600082611bc6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e609190613ca9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eb79190613bc8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f76838383612605565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61205b82826040518060200160405280600081525061260a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c59061392a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121bf919061382d565b60405180910390a3505050565b6121d7848484611d14565b6121e384848484612665565b612222576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122199061388a565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b80546122a390613d93565b80601f01602080910402602001604051908101604052809291908181526020018280546122cf90613d93565b801561231c5780601f106122f15761010080835404028352916020019161231c565b820191906000526020600020905b8154815290600101906020018083116122ff57829003601f168201915b5050505050905090565b6060600082141561236e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612482565b600082905060005b600082146123a057808061238990613df6565b915050600a826123999190613c1e565b9150612376565b60008167ffffffffffffffff8111156123bc576123bb613f5b565b5b6040519080825280601f01601f1916602001820160405280156123ee5781602001600182028036833780820191505090505b5090505b6000851461247b576001826124079190613ca9565b9150600a856124169190613e3f565b60306124229190613bc8565b60f81b81838151811061243857612437613f2c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124749190613c1e565b94506123f2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124fc8383836127fc565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561253f5761253a81612801565b61257e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461257d5761257c838261284a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c1576125bc816129b7565b612600565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125ff576125fe8282612a88565b5b5b505050565b505050565b6126148383612b07565b6126216000848484612665565b612660576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126579061388a565b60405180910390fd5b505050565b60006126868473ffffffffffffffffffffffffffffffffffffffff16612ce1565b156127ef578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126af611bbe565b8786866040518563ffffffff1660e01b81526004016126d194939291906137bf565b602060405180830381600087803b1580156126eb57600080fd5b505af192505050801561271c57506040513d601f19601f820116820180604052508101906127199190613271565b60015b61279f573d806000811461274c576040519150601f19603f3d011682016040523d82523d6000602084013e612751565b606091505b50600081511415612797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278e9061388a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127f4565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612857846112bd565b6128619190613ca9565b9050600060076000848152602001908152602001600020549050818114612946576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129cb9190613ca9565b90506000600960008481526020019081526020016000205490506000600883815481106129fb576129fa613f2c565b5b906000526020600020015490508060088381548110612a1d57612a1c613f2c565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a6c57612a6b613efd565b5b6001900381819060005260206000200160009055905550505050565b6000612a93836112bd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6e9061398a565b60405180910390fd5b612b8081612228565b15612bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb7906138ea565b60405180910390fd5b612bcc600083836124f1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c1c9190613bc8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cdd60008383612605565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612d1090613d93565b90600052602060002090601f016020900481019282612d325760008555612d79565b82601f10612d4b57805160ff1916838001178555612d79565b82800160010185558215612d79579182015b82811115612d78578251825591602001919060010190612d5d565b5b509050612d869190612e4b565b5090565b5080546000825590600052602060002090810190612da89190612e4b565b50565b828054828255906000526020600020908101928215612e3a579160200282015b82811115612e3957823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612dcb565b5b509050612e479190612e4b565b5090565b5b80821115612e64576000816000905550600101612e4c565b5090565b6000612e7b612e7684613aca565b613aa5565b905082815260208101848484011115612e9757612e96613f99565b5b612ea2848285613d51565b509392505050565b6000612ebd612eb884613afb565b613aa5565b905082815260208101848484011115612ed957612ed8613f99565b5b612ee4848285613d51565b509392505050565b600081359050612efb81614417565b92915050565b60008083601f840112612f1757612f16613f8f565b5b8235905067ffffffffffffffff811115612f3457612f33613f8a565b5b602083019150836020820283011115612f5057612f4f613f94565b5b9250929050565b600081359050612f668161442e565b92915050565b600081359050612f7b81614445565b92915050565b600081519050612f9081614445565b92915050565b600082601f830112612fab57612faa613f8f565b5b8135612fbb848260208601612e68565b91505092915050565b600082601f830112612fd957612fd8613f8f565b5b8135612fe9848260208601612eaa565b91505092915050565b6000813590506130018161445c565b92915050565b60006020828403121561301d5761301c613fa3565b5b600061302b84828501612eec565b91505092915050565b6000806040838503121561304b5761304a613fa3565b5b600061305985828601612eec565b925050602061306a85828601612eec565b9150509250929050565b60008060006060848603121561308d5761308c613fa3565b5b600061309b86828701612eec565b93505060206130ac86828701612eec565b92505060406130bd86828701612ff2565b9150509250925092565b600080600080608085870312156130e1576130e0613fa3565b5b60006130ef87828801612eec565b945050602061310087828801612eec565b935050604061311187828801612ff2565b925050606085013567ffffffffffffffff81111561313257613131613f9e565b5b61313e87828801612f96565b91505092959194509250565b6000806040838503121561316157613160613fa3565b5b600061316f85828601612eec565b925050602061318085828601612f57565b9150509250929050565b600080604083850312156131a1576131a0613fa3565b5b60006131af85828601612eec565b92505060206131c085828601612ff2565b9150509250929050565b600080602083850312156131e1576131e0613fa3565b5b600083013567ffffffffffffffff8111156131ff576131fe613f9e565b5b61320b85828601612f01565b92509250509250929050565b60006020828403121561322d5761322c613fa3565b5b600061323b84828501612f57565b91505092915050565b60006020828403121561325a57613259613fa3565b5b600061326884828501612f6c565b91505092915050565b60006020828403121561328757613286613fa3565b5b600061329584828501612f81565b91505092915050565b6000602082840312156132b4576132b3613fa3565b5b600082013567ffffffffffffffff8111156132d2576132d1613f9e565b5b6132de84828501612fc4565b91505092915050565b6000602082840312156132fd576132fc613fa3565b5b600061330b84828501612ff2565b91505092915050565b60006133208383613740565b60208301905092915050565b61333581613cdd565b82525050565b600061334682613b51565b6133508185613b7f565b935061335b83613b2c565b8060005b8381101561338c5781516133738882613314565b975061337e83613b72565b92505060018101905061335f565b5085935050505092915050565b6133a281613cef565b82525050565b60006133b382613b5c565b6133bd8185613b90565b93506133cd818560208601613d60565b6133d681613fa8565b840191505092915050565b60006133ec82613b67565b6133f68185613bac565b9350613406818560208601613d60565b61340f81613fa8565b840191505092915050565b600061342582613b67565b61342f8185613bbd565b935061343f818560208601613d60565b80840191505092915050565b6000815461345881613d93565b6134628186613bbd565b9450600182166000811461347d576001811461348e576134c1565b60ff198316865281860193506134c1565b61349785613b3c565b60005b838110156134b95781548189015260018201915060208101905061349a565b838801955050505b50505092915050565b60006134d7602b83613bac565b91506134e282613fb9565b604082019050919050565b60006134fa603283613bac565b915061350582614008565b604082019050919050565b600061351d602683613bac565b915061352882614057565b604082019050919050565b6000613540602583613bac565b915061354b826140a6565b604082019050919050565b6000613563601c83613bac565b915061356e826140f5565b602082019050919050565b6000613586602483613bac565b91506135918261411e565b604082019050919050565b60006135a9601983613bac565b91506135b48261416d565b602082019050919050565b60006135cc602983613bac565b91506135d782614196565b604082019050919050565b60006135ef603e83613bac565b91506135fa826141e5565b604082019050919050565b6000613612602083613bac565b915061361d82614234565b602082019050919050565b6000613635602083613bac565b91506136408261425d565b602082019050919050565b6000613658602f83613bac565b915061366382614286565b604082019050919050565b600061367b601883613bac565b9150613686826142d5565b602082019050919050565b600061369e602183613bac565b91506136a9826142fe565b604082019050919050565b60006136c1601683613bac565b91506136cc8261434d565b602082019050919050565b60006136e4600083613ba1565b91506136ef82614376565b600082019050919050565b6000613707602c83613bac565b915061371282614379565b604082019050919050565b600061372a602e83613bac565b9150613735826143c8565b604082019050919050565b61374981613d47565b82525050565b61375881613d47565b82525050565b600061376a828661341a565b9150613776828561341a565b9150613782828461344b565b9150819050949350505050565b600061379a826136d7565b9150819050919050565b60006020820190506137b9600083018461332c565b92915050565b60006080820190506137d4600083018761332c565b6137e1602083018661332c565b6137ee604083018561374f565b818103606083015261380081846133a8565b905095945050505050565b60006020820190508181036000830152613825818461333b565b905092915050565b60006020820190506138426000830184613399565b92915050565b6000602082019050818103600083015261386281846133e1565b905092915050565b60006020820190508181036000830152613883816134ca565b9050919050565b600060208201905081810360008301526138a3816134ed565b9050919050565b600060208201905081810360008301526138c381613510565b9050919050565b600060208201905081810360008301526138e381613533565b9050919050565b6000602082019050818103600083015261390381613556565b9050919050565b6000602082019050818103600083015261392381613579565b9050919050565b600060208201905081810360008301526139438161359c565b9050919050565b60006020820190508181036000830152613963816135bf565b9050919050565b60006020820190508181036000830152613983816135e2565b9050919050565b600060208201905081810360008301526139a381613605565b9050919050565b600060208201905081810360008301526139c381613628565b9050919050565b600060208201905081810360008301526139e38161364b565b9050919050565b60006020820190508181036000830152613a038161366e565b9050919050565b60006020820190508181036000830152613a2381613691565b9050919050565b60006020820190508181036000830152613a43816136b4565b9050919050565b60006020820190508181036000830152613a63816136fa565b9050919050565b60006020820190508181036000830152613a838161371d565b9050919050565b6000602082019050613a9f600083018461374f565b92915050565b6000613aaf613ac0565b9050613abb8282613dc5565b919050565b6000604051905090565b600067ffffffffffffffff821115613ae557613ae4613f5b565b5b613aee82613fa8565b9050602081019050919050565b600067ffffffffffffffff821115613b1657613b15613f5b565b5b613b1f82613fa8565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bd382613d47565b9150613bde83613d47565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c1357613c12613e70565b5b828201905092915050565b6000613c2982613d47565b9150613c3483613d47565b925082613c4457613c43613e9f565b5b828204905092915050565b6000613c5a82613d47565b9150613c6583613d47565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c9e57613c9d613e70565b5b828202905092915050565b6000613cb482613d47565b9150613cbf83613d47565b925082821015613cd257613cd1613e70565b5b828203905092915050565b6000613ce882613d27565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d7e578082015181840152602081019050613d63565b83811115613d8d576000848401525b50505050565b60006002820490506001821680613dab57607f821691505b60208210811415613dbf57613dbe613ece565b5b50919050565b613dce82613fa8565b810181811067ffffffffffffffff82111715613ded57613dec613f5b565b5b80604052505050565b6000613e0182613d47565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e3457613e33613e70565b5b600182019050919050565b6000613e4a82613d47565b9150613e5583613d47565b925082613e6557613e64613e9f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f55736572206973206e6f74204d6f6e6f6c697374656400000000000000000000600082015250565b50565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61442081613cdd565b811461442b57600080fd5b50565b61443781613cef565b811461444257600080fd5b50565b61444e81613cfb565b811461445957600080fd5b50565b61446581613d47565b811461447057600080fd5b5056fea2646970667358221220df6fd50483076d006b8af1663f3bd7bfd75f5627467d13768d27b34aacec3f9764736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000084d6f6e6f4269747a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4f4e4f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656963746565366e74656e336a6833357670357572626b74353367617673796a617869627873356b66666366637279787833357164342f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261666b726569667133326b6136793778326170657062777870746e616e6e796363626c696c35763367767a376968337332626e623575666c66652f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636bee23f711610144578063ba7d2c76116100b6578063da3ef23f1161007a578063da3ef23f14610916578063dc1907ed1461093f578063e807eb3214610968578063e985e9c514610991578063f2c4ce1e146109ce578063f2fde38b146109f757610267565b8063ba7d2c761461082f578063c66828621461085a578063c87b56dd14610885578063d0eb26b0146108c2578063d5abeb01146108eb57610267565b80638da5cb5b116101085780638da5cb5b1461075457806395d89b411461077f578063a0712d68146107aa578063a22cb465146107c6578063a475b5dd146107ef578063b88d4fde1461080657610267565b80636bee23f7146106815780636c0360eb146106ac57806370a08231146106d7578063715018a6146107145780637f00c7a61461072b57610267565b80632f745c59116101dd57806344a0d68a116101a157806344a0d68a1461055f5780634f6ccce71461058857806351830227146105c557806355f804b3146105f05780635c975abb146106195780636352211e1461064457610267565b80632f745c59146104755780633180ba8f146104b25780633ccfd60b146104ef57806342842e0e146104f9578063438b63001461052257610267565b8063095ea7b31161022f578063095ea7b31461036557806313faede61461038e57806318160ddd146103b95780631bb08904146103e4578063239c70ae1461042157806323b872dd1461044c57610267565b806301ffc9a71461026c57806302329a29146102a957806306fdde03146102d2578063081812fc146102fd578063081c8c441461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613244565b610a20565b6040516102a0919061382d565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613217565b610a9a565b005b3480156102de57600080fd5b506102e7610abf565b6040516102f49190613848565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f91906132e7565b610b51565b60405161033191906137a4565b60405180910390f35b34801561034657600080fd5b5061034f610b97565b60405161035c9190613848565b60405180910390f35b34801561037157600080fd5b5061038c6004803603810190610387919061318a565b610c25565b005b34801561039a57600080fd5b506103a3610d3d565b6040516103b09190613a8a565b60405180910390f35b3480156103c557600080fd5b506103ce610d43565b6040516103db9190613a8a565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190613007565b610d50565b604051610418919061382d565b60405180910390f35b34801561042d57600080fd5b50610436610dff565b6040516104439190613a8a565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190613074565b610e05565b005b34801561048157600080fd5b5061049c6004803603810190610497919061318a565b610e65565b6040516104a99190613a8a565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d491906132e7565b610f0a565b6040516104e691906137a4565b60405180910390f35b6104f7610f49565b005b34801561050557600080fd5b50610520600480360381019061051b9190613074565b610fd1565b005b34801561052e57600080fd5b5061054960048036038101906105449190613007565b610ff1565b604051610556919061380b565b60405180910390f35b34801561056b57600080fd5b50610586600480360381019061058191906132e7565b61109f565b005b34801561059457600080fd5b506105af60048036038101906105aa91906132e7565b6110b1565b6040516105bc9190613a8a565b60405180910390f35b3480156105d157600080fd5b506105da611122565b6040516105e7919061382d565b60405180910390f35b3480156105fc57600080fd5b506106176004803603810190610612919061329e565b611135565b005b34801561062557600080fd5b5061062e611157565b60405161063b919061382d565b60405180910390f35b34801561065057600080fd5b5061066b600480360381019061066691906132e7565b61116a565b60405161067891906137a4565b60405180910390f35b34801561068d57600080fd5b5061069661121c565b6040516106a3919061382d565b60405180910390f35b3480156106b857600080fd5b506106c161122f565b6040516106ce9190613848565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f99190613007565b6112bd565b60405161070b9190613a8a565b60405180910390f35b34801561072057600080fd5b50610729611375565b005b34801561073757600080fd5b50610752600480360381019061074d91906132e7565b611389565b005b34801561076057600080fd5b5061076961139b565b60405161077691906137a4565b60405180910390f35b34801561078b57600080fd5b506107946113c5565b6040516107a19190613848565b60405180910390f35b6107c460048036038101906107bf91906132e7565b611457565b005b3480156107d257600080fd5b506107ed60048036038101906107e8919061314a565b6115c4565b005b3480156107fb57600080fd5b506108046115da565b005b34801561081257600080fd5b5061082d600480360381019061082891906130c7565b6115ff565b005b34801561083b57600080fd5b50610844611661565b6040516108519190613a8a565b60405180910390f35b34801561086657600080fd5b5061086f611667565b60405161087c9190613848565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a791906132e7565b6116f5565b6040516108b99190613848565b60405180910390f35b3480156108ce57600080fd5b506108e960048036038101906108e491906132e7565b61184e565b005b3480156108f757600080fd5b50610900611860565b60405161090d9190613a8a565b60405180910390f35b34801561092257600080fd5b5061093d6004803603810190610938919061329e565b611866565b005b34801561094b57600080fd5b50610966600480360381019061096191906131ca565b611888565b005b34801561097457600080fd5b5061098f600480360381019061098a9190613217565b6118b4565b005b34801561099d57600080fd5b506109b860048036038101906109b39190613034565b6118d9565b6040516109c5919061382d565b60405180910390f35b3480156109da57600080fd5b506109f560048036038101906109f0919061329e565b61196d565b005b348015610a0357600080fd5b50610a1e6004803603810190610a199190613007565b61198f565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a935750610a9282611a13565b5b9050919050565b610aa2611af5565b80601260006101000a81548160ff02191690831515021790555050565b606060008054610ace90613d93565b80601f0160208091040260200160405190810160405280929190818152602001828054610afa90613d93565b8015610b475780601f10610b1c57610100808354040283529160200191610b47565b820191906000526020600020905b815481529060010190602001808311610b2a57829003601f168201915b5050505050905090565b6000610b5c82611b73565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610ba490613d93565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd090613d93565b8015610c1d5780601f10610bf257610100808354040283529160200191610c1d565b820191906000526020600020905b815481529060010190602001808311610c0057829003601f168201915b505050505081565b6000610c308261116a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890613a0a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc0611bbe565b73ffffffffffffffffffffffffffffffffffffffff161480610cef5750610cee81610ce9611bbe565b6118d9565b5b610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d259061396a565b60405180910390fd5b610d388383611bc6565b505050565b600e5481565b6000600880549050905090565b600080600090505b601380549050811015610df4578273ffffffffffffffffffffffffffffffffffffffff1660138281548110610d9057610d8f613f2c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610de1576001915050610dfa565b8080610dec90613df6565b915050610d58565b50600090505b919050565b60105481565b610e16610e10611bbe565b82611c7f565b610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90613a6a565b60405180910390fd5b610e60838383611d14565b505050565b6000610e70836112bd565b8210610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea89061386a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60138181548110610f1a57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f51611af5565b6000610f5b61139b565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f7e9061378f565b60006040518083038185875af1925050503d8060008114610fbb576040519150601f19603f3d011682016040523d82523d6000602084013e610fc0565b606091505b5050905080610fce57600080fd5b50565b610fec838383604051806020016040528060008152506115ff565b505050565b60606000610ffe836112bd565b905060008167ffffffffffffffff81111561101c5761101b613f5b565b5b60405190808252806020026020018201604052801561104a5781602001602082028036833780820191505090505b50905060005b82811015611094576110628582610e65565b82828151811061107557611074613f2c565b5b602002602001018181525050808061108c90613df6565b915050611050565b508092505050919050565b6110a7611af5565b80600e8190555050565b60006110bb610d43565b82106110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390613a4a565b60405180910390fd5b600882815481106111105761110f613f2c565b5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b61113d611af5565b80600b9080519060200190611153929190612d04565b5050565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a906139ea565b60405180910390fd5b80915050919050565b601260029054906101000a900460ff1681565b600b805461123c90613d93565b80601f016020809104026020016040519081016040528092919081815260200182805461126890613d93565b80156112b55780601f1061128a576101008083540402835291602001916112b5565b820191906000526020600020905b81548152906001019060200180831161129857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113259061394a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61137d611af5565b6113876000611f7b565b565b611391611af5565b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546113d490613d93565b80601f016020809104026020016040519081016040528092919081815260200182805461140090613d93565b801561144d5780601f106114225761010080835404028352916020019161144d565b820191906000526020600020905b81548152906001019060200180831161143057829003601f168201915b5050505050905090565b601260009054906101000a900460ff161561147157600080fd5b600061147b610d43565b90506000821161148a57600080fd5b60105482111561149957600080fd5b600f5482826114a89190613bc8565b11156114b357600080fd5b6114bb61139b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115895760011515601260029054906101000a900460ff161515141561156e5761151233610d50565b611551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154890613a2a565b60405180910390fd5b600061155c336112bd565b9050601154811061156c57600080fd5b505b81600e5461157c9190613c4f565b34101561158857600080fd5b5b6000600190505b8281116115bf576115ac3382846115a79190613bc8565b612041565b80806115b790613df6565b915050611590565b505050565b6115d66115cf611bbe565b838361205f565b5050565b6115e2611af5565b6001601260016101000a81548160ff021916908315150217905550565b61161061160a611bbe565b83611c7f565b61164f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164690613a6a565b60405180910390fd5b61165b848484846121cc565b50505050565b60115481565b600c805461167490613d93565b80601f01602080910402602001604051908101604052809291908181526020018280546116a090613d93565b80156116ed5780601f106116c2576101008083540402835291602001916116ed565b820191906000526020600020905b8154815290600101906020018083116116d057829003601f168201915b505050505081565b606061170082612228565b61173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906139ca565b60405180910390fd5b60001515601260019054906101000a900460ff16151514156117ed57600d805461176890613d93565b80601f016020809104026020016040519081016040528092919081815260200182805461179490613d93565b80156117e15780601f106117b6576101008083540402835291602001916117e1565b820191906000526020600020905b8154815290600101906020018083116117c457829003601f168201915b50505050509050611849565b60006117f7612294565b905060008151116118175760405180602001604052806000815250611845565b8061182184612326565b600c6040516020016118359392919061375e565b6040516020818303038152906040525b9150505b919050565b611856611af5565b8060118190555050565b600f5481565b61186e611af5565b80600c9080519060200190611884929190612d04565b5050565b611890611af5565b6013600061189e9190612d8a565b8181601391906118af929190612dab565b505050565b6118bc611af5565b80601260026101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611975611af5565b80600d908051906020019061198b929190612d04565b5050565b611997611af5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe906138aa565b60405180910390fd5b611a1081611f7b565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ade57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611aee5750611aed82612487565b5b9050919050565b611afd611bbe565b73ffffffffffffffffffffffffffffffffffffffff16611b1b61139b565b73ffffffffffffffffffffffffffffffffffffffff1614611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b68906139aa565b60405180910390fd5b565b611b7c81612228565b611bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb2906139ea565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c398361116a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611c8b8361116a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ccd5750611ccc81856118d9565b5b80611d0b57508373ffffffffffffffffffffffffffffffffffffffff16611cf384610b51565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d348261116a565b73ffffffffffffffffffffffffffffffffffffffff1614611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d81906138ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df19061390a565b60405180910390fd5b611e058383836124f1565b611e10600082611bc6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e609190613ca9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eb79190613bc8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f76838383612605565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61205b82826040518060200160405280600081525061260a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c59061392a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121bf919061382d565b60405180910390a3505050565b6121d7848484611d14565b6121e384848484612665565b612222576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122199061388a565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b80546122a390613d93565b80601f01602080910402602001604051908101604052809291908181526020018280546122cf90613d93565b801561231c5780601f106122f15761010080835404028352916020019161231c565b820191906000526020600020905b8154815290600101906020018083116122ff57829003601f168201915b5050505050905090565b6060600082141561236e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612482565b600082905060005b600082146123a057808061238990613df6565b915050600a826123999190613c1e565b9150612376565b60008167ffffffffffffffff8111156123bc576123bb613f5b565b5b6040519080825280601f01601f1916602001820160405280156123ee5781602001600182028036833780820191505090505b5090505b6000851461247b576001826124079190613ca9565b9150600a856124169190613e3f565b60306124229190613bc8565b60f81b81838151811061243857612437613f2c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124749190613c1e565b94506123f2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124fc8383836127fc565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561253f5761253a81612801565b61257e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461257d5761257c838261284a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c1576125bc816129b7565b612600565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125ff576125fe8282612a88565b5b5b505050565b505050565b6126148383612b07565b6126216000848484612665565b612660576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126579061388a565b60405180910390fd5b505050565b60006126868473ffffffffffffffffffffffffffffffffffffffff16612ce1565b156127ef578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126af611bbe565b8786866040518563ffffffff1660e01b81526004016126d194939291906137bf565b602060405180830381600087803b1580156126eb57600080fd5b505af192505050801561271c57506040513d601f19601f820116820180604052508101906127199190613271565b60015b61279f573d806000811461274c576040519150601f19603f3d011682016040523d82523d6000602084013e612751565b606091505b50600081511415612797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278e9061388a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127f4565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612857846112bd565b6128619190613ca9565b9050600060076000848152602001908152602001600020549050818114612946576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129cb9190613ca9565b90506000600960008481526020019081526020016000205490506000600883815481106129fb576129fa613f2c565b5b906000526020600020015490508060088381548110612a1d57612a1c613f2c565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a6c57612a6b613efd565b5b6001900381819060005260206000200160009055905550505050565b6000612a93836112bd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6e9061398a565b60405180910390fd5b612b8081612228565b15612bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb7906138ea565b60405180910390fd5b612bcc600083836124f1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c1c9190613bc8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cdd60008383612605565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612d1090613d93565b90600052602060002090601f016020900481019282612d325760008555612d79565b82601f10612d4b57805160ff1916838001178555612d79565b82800160010185558215612d79579182015b82811115612d78578251825591602001919060010190612d5d565b5b509050612d869190612e4b565b5090565b5080546000825590600052602060002090810190612da89190612e4b565b50565b828054828255906000526020600020908101928215612e3a579160200282015b82811115612e3957823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612dcb565b5b509050612e479190612e4b565b5090565b5b80821115612e64576000816000905550600101612e4c565b5090565b6000612e7b612e7684613aca565b613aa5565b905082815260208101848484011115612e9757612e96613f99565b5b612ea2848285613d51565b509392505050565b6000612ebd612eb884613afb565b613aa5565b905082815260208101848484011115612ed957612ed8613f99565b5b612ee4848285613d51565b509392505050565b600081359050612efb81614417565b92915050565b60008083601f840112612f1757612f16613f8f565b5b8235905067ffffffffffffffff811115612f3457612f33613f8a565b5b602083019150836020820283011115612f5057612f4f613f94565b5b9250929050565b600081359050612f668161442e565b92915050565b600081359050612f7b81614445565b92915050565b600081519050612f9081614445565b92915050565b600082601f830112612fab57612faa613f8f565b5b8135612fbb848260208601612e68565b91505092915050565b600082601f830112612fd957612fd8613f8f565b5b8135612fe9848260208601612eaa565b91505092915050565b6000813590506130018161445c565b92915050565b60006020828403121561301d5761301c613fa3565b5b600061302b84828501612eec565b91505092915050565b6000806040838503121561304b5761304a613fa3565b5b600061305985828601612eec565b925050602061306a85828601612eec565b9150509250929050565b60008060006060848603121561308d5761308c613fa3565b5b600061309b86828701612eec565b93505060206130ac86828701612eec565b92505060406130bd86828701612ff2565b9150509250925092565b600080600080608085870312156130e1576130e0613fa3565b5b60006130ef87828801612eec565b945050602061310087828801612eec565b935050604061311187828801612ff2565b925050606085013567ffffffffffffffff81111561313257613131613f9e565b5b61313e87828801612f96565b91505092959194509250565b6000806040838503121561316157613160613fa3565b5b600061316f85828601612eec565b925050602061318085828601612f57565b9150509250929050565b600080604083850312156131a1576131a0613fa3565b5b60006131af85828601612eec565b92505060206131c085828601612ff2565b9150509250929050565b600080602083850312156131e1576131e0613fa3565b5b600083013567ffffffffffffffff8111156131ff576131fe613f9e565b5b61320b85828601612f01565b92509250509250929050565b60006020828403121561322d5761322c613fa3565b5b600061323b84828501612f57565b91505092915050565b60006020828403121561325a57613259613fa3565b5b600061326884828501612f6c565b91505092915050565b60006020828403121561328757613286613fa3565b5b600061329584828501612f81565b91505092915050565b6000602082840312156132b4576132b3613fa3565b5b600082013567ffffffffffffffff8111156132d2576132d1613f9e565b5b6132de84828501612fc4565b91505092915050565b6000602082840312156132fd576132fc613fa3565b5b600061330b84828501612ff2565b91505092915050565b60006133208383613740565b60208301905092915050565b61333581613cdd565b82525050565b600061334682613b51565b6133508185613b7f565b935061335b83613b2c565b8060005b8381101561338c5781516133738882613314565b975061337e83613b72565b92505060018101905061335f565b5085935050505092915050565b6133a281613cef565b82525050565b60006133b382613b5c565b6133bd8185613b90565b93506133cd818560208601613d60565b6133d681613fa8565b840191505092915050565b60006133ec82613b67565b6133f68185613bac565b9350613406818560208601613d60565b61340f81613fa8565b840191505092915050565b600061342582613b67565b61342f8185613bbd565b935061343f818560208601613d60565b80840191505092915050565b6000815461345881613d93565b6134628186613bbd565b9450600182166000811461347d576001811461348e576134c1565b60ff198316865281860193506134c1565b61349785613b3c565b60005b838110156134b95781548189015260018201915060208101905061349a565b838801955050505b50505092915050565b60006134d7602b83613bac565b91506134e282613fb9565b604082019050919050565b60006134fa603283613bac565b915061350582614008565b604082019050919050565b600061351d602683613bac565b915061352882614057565b604082019050919050565b6000613540602583613bac565b915061354b826140a6565b604082019050919050565b6000613563601c83613bac565b915061356e826140f5565b602082019050919050565b6000613586602483613bac565b91506135918261411e565b604082019050919050565b60006135a9601983613bac565b91506135b48261416d565b602082019050919050565b60006135cc602983613bac565b91506135d782614196565b604082019050919050565b60006135ef603e83613bac565b91506135fa826141e5565b604082019050919050565b6000613612602083613bac565b915061361d82614234565b602082019050919050565b6000613635602083613bac565b91506136408261425d565b602082019050919050565b6000613658602f83613bac565b915061366382614286565b604082019050919050565b600061367b601883613bac565b9150613686826142d5565b602082019050919050565b600061369e602183613bac565b91506136a9826142fe565b604082019050919050565b60006136c1601683613bac565b91506136cc8261434d565b602082019050919050565b60006136e4600083613ba1565b91506136ef82614376565b600082019050919050565b6000613707602c83613bac565b915061371282614379565b604082019050919050565b600061372a602e83613bac565b9150613735826143c8565b604082019050919050565b61374981613d47565b82525050565b61375881613d47565b82525050565b600061376a828661341a565b9150613776828561341a565b9150613782828461344b565b9150819050949350505050565b600061379a826136d7565b9150819050919050565b60006020820190506137b9600083018461332c565b92915050565b60006080820190506137d4600083018761332c565b6137e1602083018661332c565b6137ee604083018561374f565b818103606083015261380081846133a8565b905095945050505050565b60006020820190508181036000830152613825818461333b565b905092915050565b60006020820190506138426000830184613399565b92915050565b6000602082019050818103600083015261386281846133e1565b905092915050565b60006020820190508181036000830152613883816134ca565b9050919050565b600060208201905081810360008301526138a3816134ed565b9050919050565b600060208201905081810360008301526138c381613510565b9050919050565b600060208201905081810360008301526138e381613533565b9050919050565b6000602082019050818103600083015261390381613556565b9050919050565b6000602082019050818103600083015261392381613579565b9050919050565b600060208201905081810360008301526139438161359c565b9050919050565b60006020820190508181036000830152613963816135bf565b9050919050565b60006020820190508181036000830152613983816135e2565b9050919050565b600060208201905081810360008301526139a381613605565b9050919050565b600060208201905081810360008301526139c381613628565b9050919050565b600060208201905081810360008301526139e38161364b565b9050919050565b60006020820190508181036000830152613a038161366e565b9050919050565b60006020820190508181036000830152613a2381613691565b9050919050565b60006020820190508181036000830152613a43816136b4565b9050919050565b60006020820190508181036000830152613a63816136fa565b9050919050565b60006020820190508181036000830152613a838161371d565b9050919050565b6000602082019050613a9f600083018461374f565b92915050565b6000613aaf613ac0565b9050613abb8282613dc5565b919050565b6000604051905090565b600067ffffffffffffffff821115613ae557613ae4613f5b565b5b613aee82613fa8565b9050602081019050919050565b600067ffffffffffffffff821115613b1657613b15613f5b565b5b613b1f82613fa8565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bd382613d47565b9150613bde83613d47565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c1357613c12613e70565b5b828201905092915050565b6000613c2982613d47565b9150613c3483613d47565b925082613c4457613c43613e9f565b5b828204905092915050565b6000613c5a82613d47565b9150613c6583613d47565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c9e57613c9d613e70565b5b828202905092915050565b6000613cb482613d47565b9150613cbf83613d47565b925082821015613cd257613cd1613e70565b5b828203905092915050565b6000613ce882613d27565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d7e578082015181840152602081019050613d63565b83811115613d8d576000848401525b50505050565b60006002820490506001821680613dab57607f821691505b60208210811415613dbf57613dbe613ece565b5b50919050565b613dce82613fa8565b810181811067ffffffffffffffff82111715613ded57613dec613f5b565b5b80604052505050565b6000613e0182613d47565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e3457613e33613e70565b5b600182019050919050565b6000613e4a82613d47565b9150613e5583613d47565b925082613e6557613e64613e9f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f55736572206973206e6f74204d6f6e6f6c697374656400000000000000000000600082015250565b50565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61442081613cdd565b811461442b57600080fd5b50565b61443781613cef565b811461444257600080fd5b50565b61444e81613cfb565b811461445957600080fd5b50565b61446581613d47565b811461447057600080fd5b5056fea2646970667358221220df6fd50483076d006b8af1663f3bd7bfd75f5627467d13768d27b34aacec3f9764736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000084d6f6e6f4269747a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4f4e4f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656963746565366e74656e336a6833357670357572626b74353367617673796a617869627873356b66666366637279787833357164342f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261666b726569667133326b6136793778326170657062777870746e616e6e796363626c696c35763367767a376968337332626e623575666c66652f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MonoBitz
Arg [1] : _symbol (string): MONO
Arg [2] : _initBaseURI (string): ipfs://bafybeictee6nten3jh35vp5urbkt53gavsyjaxibxs5kffcfcryxx35qd4/
Arg [3] : _initNotRevealedUri (string): ipfs://bafkreifq32ka6y7x2apepbwxptnannyccblil5v3gvz7ih3s2bnb5uflfe/

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 4d6f6e6f4269747a000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4d4f4e4f00000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [9] : 697066733a2f2f6261667962656963746565366e74656e336a68333576703575
Arg [10] : 72626b74353367617673796a617869627873356b666663666372797878333571
Arg [11] : 64342f0000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [13] : 697066733a2f2f6261666b726569667133326b61367937783261706570627778
Arg [14] : 70746e616e6e796363626c696c35763367767a376968337332626e623575666c
Arg [15] : 66652f0000000000000000000000000000000000000000000000000000000000


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.