ETH Price: $3,348.77 (+0.42%)

Token

ANTI APE ASSOCIATION (AAA)
 

Overview

Max Total Supply

333 AAA

Holders

160

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AAA
0x6052ec4185924340093124279f5d8874f02a5681
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:
AntiApeAssociation

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : AntiApeAssociation.sol
// SPDX-License-Identifier: GPL-3.0


pragma solidity >=0.7.0 <0.9.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
contract AntiApeAssociation is ERC721, Ownable, ERC721Burnable {
  using Strings for uint256;
  using Counters for Counters.Counter;
  
  Counters.Counter private supply;
   
  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri="";
  uint256 public cost = 0.1 ether;
  uint256 public maxSupply = 11111;
  uint256 public presaleSupply=4444;
  uint256 public maxMintAmount = 50;
  
   bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  bool public presale=true;
  bool public paused = false;
  bool public revealed = false;
 

  mapping(address => uint256) public addressMintedBalance;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _notRevealedUri
  
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedBaseURI(_notRevealedUri);
   
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
  
  function totalSupply() external view returns (uint256) {
    return supply.current();
  }
  function burnForOwner(address owner,uint256 tokenCount)public onlyOwner{
   uint256 ownerTokenCount= balanceOf(owner);
   uint256 start=0;
   while(ownerTokenCount!=start){
     if(ownerOf(start+1)==owner){
       start+=1;
       if(start==tokenCount){
         return;
       }
       burn(start);
     }
   }
  }
  function presaleMint(uint256 _mintAmount)public payable {
    require(!paused, "the contract is paused");
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply.current() + _mintAmount <= presaleSupply, "max NFT limit exceeded");
  
    if (msg.sender != owner()) {
         uint256 ownerMintedCount = addressMintedBalance[msg.sender];
           if(!onlyWhitelisted){
               uint256 wlCount=checkWhitelist(msg.sender);
               require(ownerMintedCount + _mintAmount <= wlCount, "max NFT per address exceeded");
           }
           
          require(msg.value >= cost * _mintAmount, "insufficient funds");
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      addressMintedBalance[msg.sender]++;
       supply.increment();
      _safeMint(msg.sender, supply.current());
     
    }
  }
  
  function mint(uint256 _mintAmount) public payable {
    require(!presale,"still presale try later");
    require(!paused, "the contract is paused");
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply.current() + _mintAmount <= maxSupply, "max NFT limit exceeded");
  
    if (msg.sender != owner()) {
         uint256 ownerMintedCount = addressMintedBalance[msg.sender];
           if(!onlyWhitelisted){
             
               uint256 wlCount=checkWhitelist(msg.sender);
               require(ownerMintedCount + _mintAmount <= wlCount, "max NFT per address exceeded");
           }
          
          require(msg.value >= cost * _mintAmount, "insufficient funds");
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      addressMintedBalance[msg.sender]++;
       supply.increment();
      _safeMint(msg.sender, supply.current());
     
    }
  }

 function checkWhitelist(address _user) public view returns (uint256) {
   uint count=0;
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          count++;
      }
    }
    if(count==0){
      return 0;
    }
    else if(count==1){
      return 4;
    }
     else if(count==2){
      return 10;
    }
     else if(count==3){
      return 15;
    }
    else if(count==4){
      return 50;
      //COLLECTOR
    }
    else{
      return 0;
    }
  }


  




  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 setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }
  

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  


  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
   
 
 function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function offPresale(bool _state) public onlyOwner {
    presale = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
 
  function withdraw() public payable onlyOwner {
   
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 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 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 12 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 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"
      ]
    }
  },
  "libraries": {}
}

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":"_notRevealedUri","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":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"tokenCount","type":"uint256"}],"name":"burnForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"offPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"onlyWhitelisted","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":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"string","name":"_notRevealedUri","type":"string"}],"name":"setNotRevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","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":"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":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200005192919062000406565b5060405180602001604052806000815250600a90805190602001906200007992919062000406565b5067016345785d8a0000600b55612b67600c5561115c600d556032600e556001600f60006101000a81548160ff0219169083151502179055506001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055503480156200011057600080fd5b506040516200569238038062005692833981810160405281019062000136919062000528565b838381600090805190602001906200015092919062000406565b5080600190805190602001906200016992919062000406565b5050506200018c62000180620001b860201b60201c565b620001c060201b60201c565b6200019d826200028660201b60201c565b620001ae816200033160201b60201c565b50505050620007eb565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000296620001b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002bc620003dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000315576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030c906200061f565b60405180910390fd5b80600890805190602001906200032d92919062000406565b5050565b62000341620001b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000367620003dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b7906200061f565b60405180910390fd5b80600a9080519060200190620003d892919062000406565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200041490620006e7565b90600052602060002090601f01602090048101928262000438576000855562000484565b82601f106200045357805160ff191683800117855562000484565b8280016001018555821562000484579182015b828111156200048357825182559160200191906001019062000466565b5b50905062000493919062000497565b5090565b5b80821115620004b257600081600090555060010162000498565b5090565b6000620004cd620004c7846200066a565b62000641565b905082815260208101848484011115620004e657600080fd5b620004f3848285620006b1565b509392505050565b600082601f8301126200050d57600080fd5b81516200051f848260208601620004b6565b91505092915050565b600080600080608085870312156200053f57600080fd5b600085015167ffffffffffffffff8111156200055a57600080fd5b6200056887828801620004fb565b945050602085015167ffffffffffffffff8111156200058657600080fd5b6200059487828801620004fb565b935050604085015167ffffffffffffffff811115620005b257600080fd5b620005c087828801620004fb565b925050606085015167ffffffffffffffff811115620005de57600080fd5b620005ec87828801620004fb565b91505092959194509250565b600062000607602083620006a0565b91506200061482620007c2565b602082019050919050565b600060208201905081810360008301526200063a81620005f8565b9050919050565b60006200064d62000660565b90506200065b82826200071d565b919050565b6000604051905090565b600067ffffffffffffffff82111562000688576200068762000782565b5b6200069382620007b1565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006d1578082015181840152602081019050620006b4565b83811115620006e1576000848401525b50505050565b600060028204905060018216806200070057607f821691505b6020821081141562000717576200071662000753565b5b50919050565b6200072882620007b1565b810181811067ffffffffffffffff821117156200074a576200074962000782565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614e9780620007fb6000396000f3fe60806040526004361061027d5760003560e01c80636f81ad0a1161014f578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f14610949578063e985e9c514610972578063edec5f27146109af578063f2fde38b146109d8578063f75aef6314610a01578063fdea8e0b14610a2a5761027d565b8063b88d4fde14610834578063ba4e5c491461085d578063c66828621461089a578063c87b56dd146108c5578063c9b298f114610902578063d5abeb011461091e5761027d565b806395d89b411161011357806395d89b41146107575780639c70b51214610782578063a0712d68146107ad578063a22cb465146107c9578063a475b5dd146107f2578063b3a196e9146108095761027d565b80636f81ad0a1461068657806370a08231146106af578063715018a6146106ec5780637f00c7a6146107035780638da5cb5b1461072c5761027d565b8063239c70ae116101f357806344a0d68a116101ac57806344a0d68a14610576578063518302271461059f57806355f804b3146105ca5780635c975abb146105f35780636352211e1461061e5780636c0360eb1461065b5761027d565b8063239c70ae1461049d57806323b872dd146104c85780633c952764146104f15780633ccfd60b1461051a57806342842e0e1461052457806342966c681461054d5761027d565b8063095ea7b311610245578063095ea7b31461037b57806313faede6146103a457806318160ddd146103cf57806318cae269146103fa578063194c2936146104375780631950c218146104605761027d565b806301ffc9a71461028257806302329a29146102bf57806306fdde03146102e8578063081812fc14610313578063081c8c4414610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613a3c565b610a55565b6040516102b6919061405f565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613a13565b610b37565b005b3480156102f457600080fd5b506102fd610bd0565b60405161030a919061407a565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613acf565b610c62565b6040516103479190613ff8565b60405180910390f35b34801561035c57600080fd5b50610365610ce7565b604051610372919061407a565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613992565b610d75565b005b3480156103b057600080fd5b506103b9610e8d565b6040516103c6919061439c565b60405180910390f35b3480156103db57600080fd5b506103e4610e93565b6040516103f1919061439c565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c9190613827565b610ea4565b60405161042e919061439c565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190613a8e565b610ebc565b005b34801561046c57600080fd5b5061048760048036038101906104829190613827565b610f52565b604051610494919061439c565b60405180910390f35b3480156104a957600080fd5b506104b261108e565b6040516104bf919061439c565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea919061388c565b611094565b005b3480156104fd57600080fd5b5061051860048036038101906105139190613a13565b6110f4565b005b61052261118d565b005b34801561053057600080fd5b5061054b6004803603810190610546919061388c565b611289565b005b34801561055957600080fd5b50610574600480360381019061056f9190613acf565b6112a9565b005b34801561058257600080fd5b5061059d60048036038101906105989190613acf565b611305565b005b3480156105ab57600080fd5b506105b461138b565b6040516105c1919061405f565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec9190613a8e565b61139e565b005b3480156105ff57600080fd5b50610608611434565b604051610615919061405f565b60405180910390f35b34801561062a57600080fd5b5061064560048036038101906106409190613acf565b611447565b6040516106529190613ff8565b60405180910390f35b34801561066757600080fd5b506106706114f9565b60405161067d919061407a565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a89190613992565b611587565b005b3480156106bb57600080fd5b506106d660048036038101906106d19190613827565b611696565b6040516106e3919061439c565b60405180910390f35b3480156106f857600080fd5b5061070161174e565b005b34801561070f57600080fd5b5061072a60048036038101906107259190613acf565b6117d6565b005b34801561073857600080fd5b5061074161185c565b60405161074e9190613ff8565b60405180910390f35b34801561076357600080fd5b5061076c611886565b604051610779919061407a565b60405180910390f35b34801561078e57600080fd5b50610797611918565b6040516107a4919061405f565b60405180910390f35b6107c760048036038101906107c29190613acf565b61192b565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190613956565b611c84565b005b3480156107fe57600080fd5b50610807611c9a565b005b34801561081557600080fd5b5061081e611d33565b60405161082b919061439c565b60405180910390f35b34801561084057600080fd5b5061085b600480360381019061085691906138db565b611d39565b005b34801561086957600080fd5b50610884600480360381019061087f9190613acf565b611d9b565b6040516108919190613ff8565b60405180910390f35b3480156108a657600080fd5b506108af611dda565b6040516108bc919061407a565b60405180910390f35b3480156108d157600080fd5b506108ec60048036038101906108e79190613acf565b611e68565b6040516108f9919061407a565b60405180910390f35b61091c60048036038101906109179190613acf565b611fc1565b005b34801561092a57600080fd5b506109336122ca565b604051610940919061439c565b60405180910390f35b34801561095557600080fd5b50610970600480360381019061096b9190613a8e565b6122d0565b005b34801561097e57600080fd5b5061099960048036038101906109949190613850565b612366565b6040516109a6919061405f565b60405180910390f35b3480156109bb57600080fd5b506109d660048036038101906109d191906139ce565b6123fa565b005b3480156109e457600080fd5b506109ff60048036038101906109fa9190613827565b61249a565b005b348015610a0d57600080fd5b50610a286004803603810190610a239190613a13565b612592565b005b348015610a3657600080fd5b50610a3f61262b565b604051610a4c919061405f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b305750610b2f8261263e565b5b9050919050565b610b3f6126a8565b73ffffffffffffffffffffffffffffffffffffffff16610b5d61185c565b73ffffffffffffffffffffffffffffffffffffffff1614610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa9061427c565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b606060008054610bdf9061466c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0b9061466c565b8015610c585780601f10610c2d57610100808354040283529160200191610c58565b820191906000526020600020905b815481529060010190602001808311610c3b57829003601f168201915b5050505050905090565b6000610c6d826126b0565b610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca39061425c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600a8054610cf49061466c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d209061466c565b8015610d6d5780601f10610d4257610100808354040283529160200191610d6d565b820191906000526020600020905b815481529060010190602001808311610d5057829003601f168201915b505050505081565b6000610d8082611447565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de8906142dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e106126a8565b73ffffffffffffffffffffffffffffffffffffffff161480610e3f5750610e3e81610e396126a8565b612366565b5b610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e759061419c565b60405180910390fd5b610e88838361271c565b505050565b600b5481565b6000610e9f60076127d5565b905090565b60126020528060005260406000206000915090505481565b610ec46126a8565b73ffffffffffffffffffffffffffffffffffffffff16610ee261185c565b73ffffffffffffffffffffffffffffffffffffffff1614610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f9061427c565b60405180910390fd5b80600a9080519060200190610f4e929190613540565b5050565b6000806000905060005b601080549050811015611023578373ffffffffffffffffffffffffffffffffffffffff1660108281548110610fba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561101057818061100c906146cf565b9250505b808061101b906146cf565b915050610f5c565b506000811415611037576000915050611089565b600181141561104a576004915050611089565b600281141561105d57600a915050611089565b600381141561107057600f915050611089565b6004811415611083576032915050611089565b60009150505b919050565b600e5481565b6110a561109f6126a8565b826127e3565b6110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db9061431c565b60405180910390fd5b6110ef8383836128c1565b505050565b6110fc6126a8565b73ffffffffffffffffffffffffffffffffffffffff1661111a61185c565b73ffffffffffffffffffffffffffffffffffffffff1614611170576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111679061427c565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6111956126a8565b73ffffffffffffffffffffffffffffffffffffffff166111b361185c565b73ffffffffffffffffffffffffffffffffffffffff1614611209576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112009061427c565b60405180910390fd5b600061121361185c565b73ffffffffffffffffffffffffffffffffffffffff164760405161123690613fe3565b60006040518083038185875af1925050503d8060008114611273576040519150601f19603f3d011682016040523d82523d6000602084013e611278565b606091505b505090508061128657600080fd5b50565b6112a483838360405180602001604052806000815250611d39565b505050565b6112ba6112b46126a8565b826127e3565b6112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f09061435c565b60405180910390fd5b61130281612b28565b50565b61130d6126a8565b73ffffffffffffffffffffffffffffffffffffffff1661132b61185c565b73ffffffffffffffffffffffffffffffffffffffff1614611381576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113789061427c565b60405180910390fd5b80600b8190555050565b601160029054906101000a900460ff1681565b6113a66126a8565b73ffffffffffffffffffffffffffffffffffffffff166113c461185c565b73ffffffffffffffffffffffffffffffffffffffff161461141a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114119061427c565b60405180910390fd5b8060089080519060200190611430929190613540565b5050565b601160019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e7906141dc565b60405180910390fd5b80915050919050565b600880546115069061466c565b80601f01602080910402602001604051908101604052809291908181526020018280546115329061466c565b801561157f5780601f106115545761010080835404028352916020019161157f565b820191906000526020600020905b81548152906001019060200180831161156257829003601f168201915b505050505081565b61158f6126a8565b73ffffffffffffffffffffffffffffffffffffffff166115ad61185c565b73ffffffffffffffffffffffffffffffffffffffff1614611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa9061427c565b60405180910390fd5b600061160e83611696565b905060005b80821461168f578373ffffffffffffffffffffffffffffffffffffffff1661164660018361164191906144a1565b611447565b73ffffffffffffffffffffffffffffffffffffffff16141561168a5760018161166f91906144a1565b905082811415611680575050611692565b611689816112a9565b5b611613565b50505b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe906141bc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117566126a8565b73ffffffffffffffffffffffffffffffffffffffff1661177461185c565b73ffffffffffffffffffffffffffffffffffffffff16146117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c19061427c565b60405180910390fd5b6117d46000612c45565b565b6117de6126a8565b73ffffffffffffffffffffffffffffffffffffffff166117fc61185c565b73ffffffffffffffffffffffffffffffffffffffff1614611852576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118499061427c565b60405180910390fd5b80600e8190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546118959061466c565b80601f01602080910402602001604051908101604052809291908181526020018280546118c19061466c565b801561190e5780601f106118e35761010080835404028352916020019161190e565b820191906000526020600020905b8154815290600101906020018083116118f157829003601f168201915b5050505050905090565b600f60009054906101000a900460ff1681565b601160009054906101000a900460ff161561197b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119729061433c565b60405180910390fd5b601160019054906101000a900460ff16156119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c29061429c565b60405180910390fd5b60008111611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a059061437c565b60405180910390fd5b600e54811115611a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4a9061421c565b60405180910390fd5b600c5481611a6160076127d5565b611a6b91906144a1565b1115611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa3906141fc565b60405180910390fd5b611ab461185c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611bed576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f60009054906101000a900460ff16611b9b576000611b4933610f52565b9050808383611b5891906144a1565b1115611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b909061411c565b60405180910390fd5b505b81600b54611ba99190614528565b341015611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be2906142fc565b60405180910390fd5b505b6000600190505b818111611c8057601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611c4b906146cf565b9190505550611c5a6007612d0b565b611c6d33611c6860076127d5565b612d21565b8080611c78906146cf565b915050611bf4565b5050565b611c96611c8f6126a8565b8383612d3f565b5050565b611ca26126a8565b73ffffffffffffffffffffffffffffffffffffffff16611cc061185c565b73ffffffffffffffffffffffffffffffffffffffff1614611d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d9061427c565b60405180910390fd5b6001601160026101000a81548160ff021916908315150217905550565b600d5481565b611d4a611d446126a8565b836127e3565b611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d809061431c565b60405180910390fd5b611d9584848484612eac565b50505050565b60108181548110611dab57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60098054611de79061466c565b80601f0160208091040260200160405190810160405280929190818152602001828054611e139061466c565b8015611e605780601f10611e3557610100808354040283529160200191611e60565b820191906000526020600020905b815481529060010190602001808311611e4357829003601f168201915b505050505081565b6060611e73826126b0565b611eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea9906142bc565b60405180910390fd5b60001515601160029054906101000a900460ff1615151415611f6057600a8054611edb9061466c565b80601f0160208091040260200160405190810160405280929190818152602001828054611f079061466c565b8015611f545780601f10611f2957610100808354040283529160200191611f54565b820191906000526020600020905b815481529060010190602001808311611f3757829003601f168201915b50505050509050611fbc565b6000611f6a612f08565b90506000815111611f8a5760405180602001604052806000815250611fb8565b80611f9484612f9a565b6009604051602001611fa893929190613fb2565b6040516020818303038152906040525b9150505b919050565b601160019054906101000a900460ff1615612011576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120089061429c565b60405180910390fd5b60008111612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204b9061437c565b60405180910390fd5b600e54811115612099576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120909061421c565b60405180910390fd5b600d54816120a760076127d5565b6120b191906144a1565b11156120f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e9906141fc565b60405180910390fd5b6120fa61185c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612233576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f60009054906101000a900460ff166121e157600061218f33610f52565b905080838361219e91906144a1565b11156121df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d69061411c565b60405180910390fd5b505b81600b546121ef9190614528565b341015612231576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612228906142fc565b60405180910390fd5b505b6000600190505b8181116122c657601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612291906146cf565b91905055506122a06007612d0b565b6122b3336122ae60076127d5565b612d21565b80806122be906146cf565b91505061223a565b5050565b600c5481565b6122d86126a8565b73ffffffffffffffffffffffffffffffffffffffff166122f661185c565b73ffffffffffffffffffffffffffffffffffffffff161461234c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123439061427c565b60405180910390fd5b8060099080519060200190612362929190613540565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124026126a8565b73ffffffffffffffffffffffffffffffffffffffff1661242061185c565b73ffffffffffffffffffffffffffffffffffffffff1614612476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d9061427c565b60405180910390fd5b6010600061248491906135c6565b8181601091906124959291906135e7565b505050565b6124a26126a8565b73ffffffffffffffffffffffffffffffffffffffff166124c061185c565b73ffffffffffffffffffffffffffffffffffffffff1614612516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250d9061427c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257d906140bc565b60405180910390fd5b61258f81612c45565b50565b61259a6126a8565b73ffffffffffffffffffffffffffffffffffffffff166125b861185c565b73ffffffffffffffffffffffffffffffffffffffff161461260e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126059061427c565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b601160009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661278f83611447565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006127ee826126b0565b61282d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128249061417c565b60405180910390fd5b600061283883611447565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128a757508373ffffffffffffffffffffffffffffffffffffffff1661288f84610c62565b73ffffffffffffffffffffffffffffffffffffffff16145b806128b857506128b78185612366565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128e182611447565b73ffffffffffffffffffffffffffffffffffffffff1614612937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292e906140dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299e9061413c565b60405180910390fd5b6129b2838383613147565b6129bd60008261271c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a0d9190614582565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a6491906144a1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b2383838361314c565b505050565b6000612b3382611447565b9050612b4181600084613147565b612b4c60008361271c565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b9c9190614582565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c418160008461314c565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b612d3b828260405180602001604052806000815250613151565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da59061415c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e9f919061405f565b60405180910390a3505050565b612eb78484846128c1565b612ec3848484846131ac565b612f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef99061409c565b60405180910390fd5b50505050565b606060088054612f179061466c565b80601f0160208091040260200160405190810160405280929190818152602001828054612f439061466c565b8015612f905780601f10612f6557610100808354040283529160200191612f90565b820191906000526020600020905b815481529060010190602001808311612f7357829003601f168201915b5050505050905090565b60606000821415612fe2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613142565b600082905060005b60008214613014578080612ffd906146cf565b915050600a8261300d91906144f7565b9150612fea565b60008167ffffffffffffffff811115613056577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130885781602001600182028036833780820191505090505b5090505b6000851461313b576001826130a19190614582565b9150600a856130b09190614718565b60306130bc91906144a1565b60f81b8183815181106130f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561313491906144f7565b945061308c565b8093505050505b919050565b505050565b505050565b61315b8383613343565b61316860008484846131ac565b6131a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319e9061409c565b60405180910390fd5b505050565b60006131cd8473ffffffffffffffffffffffffffffffffffffffff1661351d565b15613336578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131f66126a8565b8786866040518563ffffffff1660e01b81526004016132189493929190614013565b602060405180830381600087803b15801561323257600080fd5b505af192505050801561326357506040513d601f19601f820116820180604052508101906132609190613a65565b60015b6132e6573d8060008114613293576040519150601f19603f3d011682016040523d82523d6000602084013e613298565b606091505b506000815114156132de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d59061409c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061333b565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133aa9061423c565b60405180910390fd5b6133bc816126b0565b156133fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f3906140fc565b60405180910390fd5b61340860008383613147565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461345891906144a1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135196000838361314c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461354c9061466c565b90600052602060002090601f01602090048101928261356e57600085556135b5565b82601f1061358757805160ff19168380011785556135b5565b828001600101855582156135b5579182015b828111156135b4578251825591602001919060010190613599565b5b5090506135c29190613687565b5090565b50805460008255906000526020600020908101906135e49190613687565b50565b828054828255906000526020600020908101928215613676579160200282015b8281111561367557823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613607565b5b5090506136839190613687565b5090565b5b808211156136a0576000816000905550600101613688565b5090565b60006136b76136b2846143dc565b6143b7565b9050828152602081018484840111156136cf57600080fd5b6136da84828561462a565b509392505050565b60006136f56136f08461440d565b6143b7565b90508281526020810184848401111561370d57600080fd5b61371884828561462a565b509392505050565b60008135905061372f81614e05565b92915050565b60008083601f84011261374757600080fd5b8235905067ffffffffffffffff81111561376057600080fd5b60208301915083602082028301111561377857600080fd5b9250929050565b60008135905061378e81614e1c565b92915050565b6000813590506137a381614e33565b92915050565b6000815190506137b881614e33565b92915050565b600082601f8301126137cf57600080fd5b81356137df8482602086016136a4565b91505092915050565b600082601f8301126137f957600080fd5b81356138098482602086016136e2565b91505092915050565b60008135905061382181614e4a565b92915050565b60006020828403121561383957600080fd5b600061384784828501613720565b91505092915050565b6000806040838503121561386357600080fd5b600061387185828601613720565b925050602061388285828601613720565b9150509250929050565b6000806000606084860312156138a157600080fd5b60006138af86828701613720565b93505060206138c086828701613720565b92505060406138d186828701613812565b9150509250925092565b600080600080608085870312156138f157600080fd5b60006138ff87828801613720565b945050602061391087828801613720565b935050604061392187828801613812565b925050606085013567ffffffffffffffff81111561393e57600080fd5b61394a878288016137be565b91505092959194509250565b6000806040838503121561396957600080fd5b600061397785828601613720565b92505060206139888582860161377f565b9150509250929050565b600080604083850312156139a557600080fd5b60006139b385828601613720565b92505060206139c485828601613812565b9150509250929050565b600080602083850312156139e157600080fd5b600083013567ffffffffffffffff8111156139fb57600080fd5b613a0785828601613735565b92509250509250929050565b600060208284031215613a2557600080fd5b6000613a338482850161377f565b91505092915050565b600060208284031215613a4e57600080fd5b6000613a5c84828501613794565b91505092915050565b600060208284031215613a7757600080fd5b6000613a85848285016137a9565b91505092915050565b600060208284031215613aa057600080fd5b600082013567ffffffffffffffff811115613aba57600080fd5b613ac6848285016137e8565b91505092915050565b600060208284031215613ae157600080fd5b6000613aef84828501613812565b91505092915050565b613b01816145b6565b82525050565b613b10816145c8565b82525050565b6000613b2182614453565b613b2b8185614469565b9350613b3b818560208601614639565b613b4481614805565b840191505092915050565b6000613b5a8261445e565b613b648185614485565b9350613b74818560208601614639565b613b7d81614805565b840191505092915050565b6000613b938261445e565b613b9d8185614496565b9350613bad818560208601614639565b80840191505092915050565b60008154613bc68161466c565b613bd08186614496565b94506001821660008114613beb5760018114613bfc57613c2f565b60ff19831686528186019350613c2f565b613c058561443e565b60005b83811015613c2757815481890152600182019150602081019050613c08565b838801955050505b50505092915050565b6000613c45603283614485565b9150613c5082614816565b604082019050919050565b6000613c68602683614485565b9150613c7382614865565b604082019050919050565b6000613c8b602583614485565b9150613c96826148b4565b604082019050919050565b6000613cae601c83614485565b9150613cb982614903565b602082019050919050565b6000613cd1601c83614485565b9150613cdc8261492c565b602082019050919050565b6000613cf4602483614485565b9150613cff82614955565b604082019050919050565b6000613d17601983614485565b9150613d22826149a4565b602082019050919050565b6000613d3a602c83614485565b9150613d45826149cd565b604082019050919050565b6000613d5d603883614485565b9150613d6882614a1c565b604082019050919050565b6000613d80602a83614485565b9150613d8b82614a6b565b604082019050919050565b6000613da3602983614485565b9150613dae82614aba565b604082019050919050565b6000613dc6601683614485565b9150613dd182614b09565b602082019050919050565b6000613de9602483614485565b9150613df482614b32565b604082019050919050565b6000613e0c602083614485565b9150613e1782614b81565b602082019050919050565b6000613e2f602c83614485565b9150613e3a82614baa565b604082019050919050565b6000613e52602083614485565b9150613e5d82614bf9565b602082019050919050565b6000613e75601683614485565b9150613e8082614c22565b602082019050919050565b6000613e98602f83614485565b9150613ea382614c4b565b604082019050919050565b6000613ebb602183614485565b9150613ec682614c9a565b604082019050919050565b6000613ede60008361447a565b9150613ee982614ce9565b600082019050919050565b6000613f01601283614485565b9150613f0c82614cec565b602082019050919050565b6000613f24603183614485565b9150613f2f82614d15565b604082019050919050565b6000613f47601783614485565b9150613f5282614d64565b602082019050919050565b6000613f6a603083614485565b9150613f7582614d8d565b604082019050919050565b6000613f8d601b83614485565b9150613f9882614ddc565b602082019050919050565b613fac81614620565b82525050565b6000613fbe8286613b88565b9150613fca8285613b88565b9150613fd68284613bb9565b9150819050949350505050565b6000613fee82613ed1565b9150819050919050565b600060208201905061400d6000830184613af8565b92915050565b60006080820190506140286000830187613af8565b6140356020830186613af8565b6140426040830185613fa3565b81810360608301526140548184613b16565b905095945050505050565b60006020820190506140746000830184613b07565b92915050565b600060208201905081810360008301526140948184613b4f565b905092915050565b600060208201905081810360008301526140b581613c38565b9050919050565b600060208201905081810360008301526140d581613c5b565b9050919050565b600060208201905081810360008301526140f581613c7e565b9050919050565b6000602082019050818103600083015261411581613ca1565b9050919050565b6000602082019050818103600083015261413581613cc4565b9050919050565b6000602082019050818103600083015261415581613ce7565b9050919050565b6000602082019050818103600083015261417581613d0a565b9050919050565b6000602082019050818103600083015261419581613d2d565b9050919050565b600060208201905081810360008301526141b581613d50565b9050919050565b600060208201905081810360008301526141d581613d73565b9050919050565b600060208201905081810360008301526141f581613d96565b9050919050565b6000602082019050818103600083015261421581613db9565b9050919050565b6000602082019050818103600083015261423581613ddc565b9050919050565b6000602082019050818103600083015261425581613dff565b9050919050565b6000602082019050818103600083015261427581613e22565b9050919050565b6000602082019050818103600083015261429581613e45565b9050919050565b600060208201905081810360008301526142b581613e68565b9050919050565b600060208201905081810360008301526142d581613e8b565b9050919050565b600060208201905081810360008301526142f581613eae565b9050919050565b6000602082019050818103600083015261431581613ef4565b9050919050565b6000602082019050818103600083015261433581613f17565b9050919050565b6000602082019050818103600083015261435581613f3a565b9050919050565b6000602082019050818103600083015261437581613f5d565b9050919050565b6000602082019050818103600083015261439581613f80565b9050919050565b60006020820190506143b16000830184613fa3565b92915050565b60006143c16143d2565b90506143cd828261469e565b919050565b6000604051905090565b600067ffffffffffffffff8211156143f7576143f66147d6565b5b61440082614805565b9050602081019050919050565b600067ffffffffffffffff821115614428576144276147d6565b5b61443182614805565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144ac82614620565b91506144b783614620565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144ec576144eb614749565b5b828201905092915050565b600061450282614620565b915061450d83614620565b92508261451d5761451c614778565b5b828204905092915050565b600061453382614620565b915061453e83614620565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561457757614576614749565b5b828202905092915050565b600061458d82614620565b915061459883614620565b9250828210156145ab576145aa614749565b5b828203905092915050565b60006145c182614600565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561465757808201518184015260208101905061463c565b83811115614666576000848401525b50505050565b6000600282049050600182168061468457607f821691505b60208210811415614698576146976147a7565b5b50919050565b6146a782614805565b810181811067ffffffffffffffff821117156146c6576146c56147d6565b5b80604052505050565b60006146da82614620565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561470d5761470c614749565b5b600182019050919050565b600061472382614620565b915061472e83614620565b92508261473e5761473d614778565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f7374696c6c2070726573616c6520747279206c61746572000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b614e0e816145b6565b8114614e1957600080fd5b50565b614e25816145c8565b8114614e3057600080fd5b50565b614e3c816145d4565b8114614e4757600080fd5b50565b614e5381614620565b8114614e5e57600080fd5b5056fea26469706673582212206e5d7e4f04c34f868d14ec6eb07765259e99323c0694867cdd02c925ea834a1d64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000014414e544920415045204153534f43494154494f4e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000003414141000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6546456e756277736463396457647964435157716a6f4c51536344464e4a3431443633707535537a4b4a4d680000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636f81ad0a1161014f578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f14610949578063e985e9c514610972578063edec5f27146109af578063f2fde38b146109d8578063f75aef6314610a01578063fdea8e0b14610a2a5761027d565b8063b88d4fde14610834578063ba4e5c491461085d578063c66828621461089a578063c87b56dd146108c5578063c9b298f114610902578063d5abeb011461091e5761027d565b806395d89b411161011357806395d89b41146107575780639c70b51214610782578063a0712d68146107ad578063a22cb465146107c9578063a475b5dd146107f2578063b3a196e9146108095761027d565b80636f81ad0a1461068657806370a08231146106af578063715018a6146106ec5780637f00c7a6146107035780638da5cb5b1461072c5761027d565b8063239c70ae116101f357806344a0d68a116101ac57806344a0d68a14610576578063518302271461059f57806355f804b3146105ca5780635c975abb146105f35780636352211e1461061e5780636c0360eb1461065b5761027d565b8063239c70ae1461049d57806323b872dd146104c85780633c952764146104f15780633ccfd60b1461051a57806342842e0e1461052457806342966c681461054d5761027d565b8063095ea7b311610245578063095ea7b31461037b57806313faede6146103a457806318160ddd146103cf57806318cae269146103fa578063194c2936146104375780631950c218146104605761027d565b806301ffc9a71461028257806302329a29146102bf57806306fdde03146102e8578063081812fc14610313578063081c8c4414610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613a3c565b610a55565b6040516102b6919061405f565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613a13565b610b37565b005b3480156102f457600080fd5b506102fd610bd0565b60405161030a919061407a565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613acf565b610c62565b6040516103479190613ff8565b60405180910390f35b34801561035c57600080fd5b50610365610ce7565b604051610372919061407a565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613992565b610d75565b005b3480156103b057600080fd5b506103b9610e8d565b6040516103c6919061439c565b60405180910390f35b3480156103db57600080fd5b506103e4610e93565b6040516103f1919061439c565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c9190613827565b610ea4565b60405161042e919061439c565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190613a8e565b610ebc565b005b34801561046c57600080fd5b5061048760048036038101906104829190613827565b610f52565b604051610494919061439c565b60405180910390f35b3480156104a957600080fd5b506104b261108e565b6040516104bf919061439c565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea919061388c565b611094565b005b3480156104fd57600080fd5b5061051860048036038101906105139190613a13565b6110f4565b005b61052261118d565b005b34801561053057600080fd5b5061054b6004803603810190610546919061388c565b611289565b005b34801561055957600080fd5b50610574600480360381019061056f9190613acf565b6112a9565b005b34801561058257600080fd5b5061059d60048036038101906105989190613acf565b611305565b005b3480156105ab57600080fd5b506105b461138b565b6040516105c1919061405f565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec9190613a8e565b61139e565b005b3480156105ff57600080fd5b50610608611434565b604051610615919061405f565b60405180910390f35b34801561062a57600080fd5b5061064560048036038101906106409190613acf565b611447565b6040516106529190613ff8565b60405180910390f35b34801561066757600080fd5b506106706114f9565b60405161067d919061407a565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a89190613992565b611587565b005b3480156106bb57600080fd5b506106d660048036038101906106d19190613827565b611696565b6040516106e3919061439c565b60405180910390f35b3480156106f857600080fd5b5061070161174e565b005b34801561070f57600080fd5b5061072a60048036038101906107259190613acf565b6117d6565b005b34801561073857600080fd5b5061074161185c565b60405161074e9190613ff8565b60405180910390f35b34801561076357600080fd5b5061076c611886565b604051610779919061407a565b60405180910390f35b34801561078e57600080fd5b50610797611918565b6040516107a4919061405f565b60405180910390f35b6107c760048036038101906107c29190613acf565b61192b565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190613956565b611c84565b005b3480156107fe57600080fd5b50610807611c9a565b005b34801561081557600080fd5b5061081e611d33565b60405161082b919061439c565b60405180910390f35b34801561084057600080fd5b5061085b600480360381019061085691906138db565b611d39565b005b34801561086957600080fd5b50610884600480360381019061087f9190613acf565b611d9b565b6040516108919190613ff8565b60405180910390f35b3480156108a657600080fd5b506108af611dda565b6040516108bc919061407a565b60405180910390f35b3480156108d157600080fd5b506108ec60048036038101906108e79190613acf565b611e68565b6040516108f9919061407a565b60405180910390f35b61091c60048036038101906109179190613acf565b611fc1565b005b34801561092a57600080fd5b506109336122ca565b604051610940919061439c565b60405180910390f35b34801561095557600080fd5b50610970600480360381019061096b9190613a8e565b6122d0565b005b34801561097e57600080fd5b5061099960048036038101906109949190613850565b612366565b6040516109a6919061405f565b60405180910390f35b3480156109bb57600080fd5b506109d660048036038101906109d191906139ce565b6123fa565b005b3480156109e457600080fd5b506109ff60048036038101906109fa9190613827565b61249a565b005b348015610a0d57600080fd5b50610a286004803603810190610a239190613a13565b612592565b005b348015610a3657600080fd5b50610a3f61262b565b604051610a4c919061405f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b305750610b2f8261263e565b5b9050919050565b610b3f6126a8565b73ffffffffffffffffffffffffffffffffffffffff16610b5d61185c565b73ffffffffffffffffffffffffffffffffffffffff1614610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa9061427c565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b606060008054610bdf9061466c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0b9061466c565b8015610c585780601f10610c2d57610100808354040283529160200191610c58565b820191906000526020600020905b815481529060010190602001808311610c3b57829003601f168201915b5050505050905090565b6000610c6d826126b0565b610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca39061425c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600a8054610cf49061466c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d209061466c565b8015610d6d5780601f10610d4257610100808354040283529160200191610d6d565b820191906000526020600020905b815481529060010190602001808311610d5057829003601f168201915b505050505081565b6000610d8082611447565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de8906142dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e106126a8565b73ffffffffffffffffffffffffffffffffffffffff161480610e3f5750610e3e81610e396126a8565b612366565b5b610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e759061419c565b60405180910390fd5b610e88838361271c565b505050565b600b5481565b6000610e9f60076127d5565b905090565b60126020528060005260406000206000915090505481565b610ec46126a8565b73ffffffffffffffffffffffffffffffffffffffff16610ee261185c565b73ffffffffffffffffffffffffffffffffffffffff1614610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f9061427c565b60405180910390fd5b80600a9080519060200190610f4e929190613540565b5050565b6000806000905060005b601080549050811015611023578373ffffffffffffffffffffffffffffffffffffffff1660108281548110610fba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561101057818061100c906146cf565b9250505b808061101b906146cf565b915050610f5c565b506000811415611037576000915050611089565b600181141561104a576004915050611089565b600281141561105d57600a915050611089565b600381141561107057600f915050611089565b6004811415611083576032915050611089565b60009150505b919050565b600e5481565b6110a561109f6126a8565b826127e3565b6110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db9061431c565b60405180910390fd5b6110ef8383836128c1565b505050565b6110fc6126a8565b73ffffffffffffffffffffffffffffffffffffffff1661111a61185c565b73ffffffffffffffffffffffffffffffffffffffff1614611170576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111679061427c565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6111956126a8565b73ffffffffffffffffffffffffffffffffffffffff166111b361185c565b73ffffffffffffffffffffffffffffffffffffffff1614611209576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112009061427c565b60405180910390fd5b600061121361185c565b73ffffffffffffffffffffffffffffffffffffffff164760405161123690613fe3565b60006040518083038185875af1925050503d8060008114611273576040519150601f19603f3d011682016040523d82523d6000602084013e611278565b606091505b505090508061128657600080fd5b50565b6112a483838360405180602001604052806000815250611d39565b505050565b6112ba6112b46126a8565b826127e3565b6112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f09061435c565b60405180910390fd5b61130281612b28565b50565b61130d6126a8565b73ffffffffffffffffffffffffffffffffffffffff1661132b61185c565b73ffffffffffffffffffffffffffffffffffffffff1614611381576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113789061427c565b60405180910390fd5b80600b8190555050565b601160029054906101000a900460ff1681565b6113a66126a8565b73ffffffffffffffffffffffffffffffffffffffff166113c461185c565b73ffffffffffffffffffffffffffffffffffffffff161461141a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114119061427c565b60405180910390fd5b8060089080519060200190611430929190613540565b5050565b601160019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e7906141dc565b60405180910390fd5b80915050919050565b600880546115069061466c565b80601f01602080910402602001604051908101604052809291908181526020018280546115329061466c565b801561157f5780601f106115545761010080835404028352916020019161157f565b820191906000526020600020905b81548152906001019060200180831161156257829003601f168201915b505050505081565b61158f6126a8565b73ffffffffffffffffffffffffffffffffffffffff166115ad61185c565b73ffffffffffffffffffffffffffffffffffffffff1614611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa9061427c565b60405180910390fd5b600061160e83611696565b905060005b80821461168f578373ffffffffffffffffffffffffffffffffffffffff1661164660018361164191906144a1565b611447565b73ffffffffffffffffffffffffffffffffffffffff16141561168a5760018161166f91906144a1565b905082811415611680575050611692565b611689816112a9565b5b611613565b50505b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe906141bc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117566126a8565b73ffffffffffffffffffffffffffffffffffffffff1661177461185c565b73ffffffffffffffffffffffffffffffffffffffff16146117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c19061427c565b60405180910390fd5b6117d46000612c45565b565b6117de6126a8565b73ffffffffffffffffffffffffffffffffffffffff166117fc61185c565b73ffffffffffffffffffffffffffffffffffffffff1614611852576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118499061427c565b60405180910390fd5b80600e8190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546118959061466c565b80601f01602080910402602001604051908101604052809291908181526020018280546118c19061466c565b801561190e5780601f106118e35761010080835404028352916020019161190e565b820191906000526020600020905b8154815290600101906020018083116118f157829003601f168201915b5050505050905090565b600f60009054906101000a900460ff1681565b601160009054906101000a900460ff161561197b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119729061433c565b60405180910390fd5b601160019054906101000a900460ff16156119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c29061429c565b60405180910390fd5b60008111611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a059061437c565b60405180910390fd5b600e54811115611a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4a9061421c565b60405180910390fd5b600c5481611a6160076127d5565b611a6b91906144a1565b1115611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa3906141fc565b60405180910390fd5b611ab461185c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611bed576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f60009054906101000a900460ff16611b9b576000611b4933610f52565b9050808383611b5891906144a1565b1115611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b909061411c565b60405180910390fd5b505b81600b54611ba99190614528565b341015611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be2906142fc565b60405180910390fd5b505b6000600190505b818111611c8057601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611c4b906146cf565b9190505550611c5a6007612d0b565b611c6d33611c6860076127d5565b612d21565b8080611c78906146cf565b915050611bf4565b5050565b611c96611c8f6126a8565b8383612d3f565b5050565b611ca26126a8565b73ffffffffffffffffffffffffffffffffffffffff16611cc061185c565b73ffffffffffffffffffffffffffffffffffffffff1614611d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d9061427c565b60405180910390fd5b6001601160026101000a81548160ff021916908315150217905550565b600d5481565b611d4a611d446126a8565b836127e3565b611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d809061431c565b60405180910390fd5b611d9584848484612eac565b50505050565b60108181548110611dab57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60098054611de79061466c565b80601f0160208091040260200160405190810160405280929190818152602001828054611e139061466c565b8015611e605780601f10611e3557610100808354040283529160200191611e60565b820191906000526020600020905b815481529060010190602001808311611e4357829003601f168201915b505050505081565b6060611e73826126b0565b611eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea9906142bc565b60405180910390fd5b60001515601160029054906101000a900460ff1615151415611f6057600a8054611edb9061466c565b80601f0160208091040260200160405190810160405280929190818152602001828054611f079061466c565b8015611f545780601f10611f2957610100808354040283529160200191611f54565b820191906000526020600020905b815481529060010190602001808311611f3757829003601f168201915b50505050509050611fbc565b6000611f6a612f08565b90506000815111611f8a5760405180602001604052806000815250611fb8565b80611f9484612f9a565b6009604051602001611fa893929190613fb2565b6040516020818303038152906040525b9150505b919050565b601160019054906101000a900460ff1615612011576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120089061429c565b60405180910390fd5b60008111612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204b9061437c565b60405180910390fd5b600e54811115612099576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120909061421c565b60405180910390fd5b600d54816120a760076127d5565b6120b191906144a1565b11156120f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e9906141fc565b60405180910390fd5b6120fa61185c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612233576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f60009054906101000a900460ff166121e157600061218f33610f52565b905080838361219e91906144a1565b11156121df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d69061411c565b60405180910390fd5b505b81600b546121ef9190614528565b341015612231576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612228906142fc565b60405180910390fd5b505b6000600190505b8181116122c657601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612291906146cf565b91905055506122a06007612d0b565b6122b3336122ae60076127d5565b612d21565b80806122be906146cf565b91505061223a565b5050565b600c5481565b6122d86126a8565b73ffffffffffffffffffffffffffffffffffffffff166122f661185c565b73ffffffffffffffffffffffffffffffffffffffff161461234c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123439061427c565b60405180910390fd5b8060099080519060200190612362929190613540565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124026126a8565b73ffffffffffffffffffffffffffffffffffffffff1661242061185c565b73ffffffffffffffffffffffffffffffffffffffff1614612476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d9061427c565b60405180910390fd5b6010600061248491906135c6565b8181601091906124959291906135e7565b505050565b6124a26126a8565b73ffffffffffffffffffffffffffffffffffffffff166124c061185c565b73ffffffffffffffffffffffffffffffffffffffff1614612516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250d9061427c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257d906140bc565b60405180910390fd5b61258f81612c45565b50565b61259a6126a8565b73ffffffffffffffffffffffffffffffffffffffff166125b861185c565b73ffffffffffffffffffffffffffffffffffffffff161461260e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126059061427c565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b601160009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661278f83611447565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006127ee826126b0565b61282d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128249061417c565b60405180910390fd5b600061283883611447565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128a757508373ffffffffffffffffffffffffffffffffffffffff1661288f84610c62565b73ffffffffffffffffffffffffffffffffffffffff16145b806128b857506128b78185612366565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128e182611447565b73ffffffffffffffffffffffffffffffffffffffff1614612937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292e906140dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299e9061413c565b60405180910390fd5b6129b2838383613147565b6129bd60008261271c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a0d9190614582565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a6491906144a1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b2383838361314c565b505050565b6000612b3382611447565b9050612b4181600084613147565b612b4c60008361271c565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b9c9190614582565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c418160008461314c565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b612d3b828260405180602001604052806000815250613151565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da59061415c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e9f919061405f565b60405180910390a3505050565b612eb78484846128c1565b612ec3848484846131ac565b612f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef99061409c565b60405180910390fd5b50505050565b606060088054612f179061466c565b80601f0160208091040260200160405190810160405280929190818152602001828054612f439061466c565b8015612f905780601f10612f6557610100808354040283529160200191612f90565b820191906000526020600020905b815481529060010190602001808311612f7357829003601f168201915b5050505050905090565b60606000821415612fe2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613142565b600082905060005b60008214613014578080612ffd906146cf565b915050600a8261300d91906144f7565b9150612fea565b60008167ffffffffffffffff811115613056577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130885781602001600182028036833780820191505090505b5090505b6000851461313b576001826130a19190614582565b9150600a856130b09190614718565b60306130bc91906144a1565b60f81b8183815181106130f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561313491906144f7565b945061308c565b8093505050505b919050565b505050565b505050565b61315b8383613343565b61316860008484846131ac565b6131a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319e9061409c565b60405180910390fd5b505050565b60006131cd8473ffffffffffffffffffffffffffffffffffffffff1661351d565b15613336578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131f66126a8565b8786866040518563ffffffff1660e01b81526004016132189493929190614013565b602060405180830381600087803b15801561323257600080fd5b505af192505050801561326357506040513d601f19601f820116820180604052508101906132609190613a65565b60015b6132e6573d8060008114613293576040519150601f19603f3d011682016040523d82523d6000602084013e613298565b606091505b506000815114156132de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d59061409c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061333b565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133aa9061423c565b60405180910390fd5b6133bc816126b0565b156133fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f3906140fc565b60405180910390fd5b61340860008383613147565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461345891906144a1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135196000838361314c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461354c9061466c565b90600052602060002090601f01602090048101928261356e57600085556135b5565b82601f1061358757805160ff19168380011785556135b5565b828001600101855582156135b5579182015b828111156135b4578251825591602001919060010190613599565b5b5090506135c29190613687565b5090565b50805460008255906000526020600020908101906135e49190613687565b50565b828054828255906000526020600020908101928215613676579160200282015b8281111561367557823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613607565b5b5090506136839190613687565b5090565b5b808211156136a0576000816000905550600101613688565b5090565b60006136b76136b2846143dc565b6143b7565b9050828152602081018484840111156136cf57600080fd5b6136da84828561462a565b509392505050565b60006136f56136f08461440d565b6143b7565b90508281526020810184848401111561370d57600080fd5b61371884828561462a565b509392505050565b60008135905061372f81614e05565b92915050565b60008083601f84011261374757600080fd5b8235905067ffffffffffffffff81111561376057600080fd5b60208301915083602082028301111561377857600080fd5b9250929050565b60008135905061378e81614e1c565b92915050565b6000813590506137a381614e33565b92915050565b6000815190506137b881614e33565b92915050565b600082601f8301126137cf57600080fd5b81356137df8482602086016136a4565b91505092915050565b600082601f8301126137f957600080fd5b81356138098482602086016136e2565b91505092915050565b60008135905061382181614e4a565b92915050565b60006020828403121561383957600080fd5b600061384784828501613720565b91505092915050565b6000806040838503121561386357600080fd5b600061387185828601613720565b925050602061388285828601613720565b9150509250929050565b6000806000606084860312156138a157600080fd5b60006138af86828701613720565b93505060206138c086828701613720565b92505060406138d186828701613812565b9150509250925092565b600080600080608085870312156138f157600080fd5b60006138ff87828801613720565b945050602061391087828801613720565b935050604061392187828801613812565b925050606085013567ffffffffffffffff81111561393e57600080fd5b61394a878288016137be565b91505092959194509250565b6000806040838503121561396957600080fd5b600061397785828601613720565b92505060206139888582860161377f565b9150509250929050565b600080604083850312156139a557600080fd5b60006139b385828601613720565b92505060206139c485828601613812565b9150509250929050565b600080602083850312156139e157600080fd5b600083013567ffffffffffffffff8111156139fb57600080fd5b613a0785828601613735565b92509250509250929050565b600060208284031215613a2557600080fd5b6000613a338482850161377f565b91505092915050565b600060208284031215613a4e57600080fd5b6000613a5c84828501613794565b91505092915050565b600060208284031215613a7757600080fd5b6000613a85848285016137a9565b91505092915050565b600060208284031215613aa057600080fd5b600082013567ffffffffffffffff811115613aba57600080fd5b613ac6848285016137e8565b91505092915050565b600060208284031215613ae157600080fd5b6000613aef84828501613812565b91505092915050565b613b01816145b6565b82525050565b613b10816145c8565b82525050565b6000613b2182614453565b613b2b8185614469565b9350613b3b818560208601614639565b613b4481614805565b840191505092915050565b6000613b5a8261445e565b613b648185614485565b9350613b74818560208601614639565b613b7d81614805565b840191505092915050565b6000613b938261445e565b613b9d8185614496565b9350613bad818560208601614639565b80840191505092915050565b60008154613bc68161466c565b613bd08186614496565b94506001821660008114613beb5760018114613bfc57613c2f565b60ff19831686528186019350613c2f565b613c058561443e565b60005b83811015613c2757815481890152600182019150602081019050613c08565b838801955050505b50505092915050565b6000613c45603283614485565b9150613c5082614816565b604082019050919050565b6000613c68602683614485565b9150613c7382614865565b604082019050919050565b6000613c8b602583614485565b9150613c96826148b4565b604082019050919050565b6000613cae601c83614485565b9150613cb982614903565b602082019050919050565b6000613cd1601c83614485565b9150613cdc8261492c565b602082019050919050565b6000613cf4602483614485565b9150613cff82614955565b604082019050919050565b6000613d17601983614485565b9150613d22826149a4565b602082019050919050565b6000613d3a602c83614485565b9150613d45826149cd565b604082019050919050565b6000613d5d603883614485565b9150613d6882614a1c565b604082019050919050565b6000613d80602a83614485565b9150613d8b82614a6b565b604082019050919050565b6000613da3602983614485565b9150613dae82614aba565b604082019050919050565b6000613dc6601683614485565b9150613dd182614b09565b602082019050919050565b6000613de9602483614485565b9150613df482614b32565b604082019050919050565b6000613e0c602083614485565b9150613e1782614b81565b602082019050919050565b6000613e2f602c83614485565b9150613e3a82614baa565b604082019050919050565b6000613e52602083614485565b9150613e5d82614bf9565b602082019050919050565b6000613e75601683614485565b9150613e8082614c22565b602082019050919050565b6000613e98602f83614485565b9150613ea382614c4b565b604082019050919050565b6000613ebb602183614485565b9150613ec682614c9a565b604082019050919050565b6000613ede60008361447a565b9150613ee982614ce9565b600082019050919050565b6000613f01601283614485565b9150613f0c82614cec565b602082019050919050565b6000613f24603183614485565b9150613f2f82614d15565b604082019050919050565b6000613f47601783614485565b9150613f5282614d64565b602082019050919050565b6000613f6a603083614485565b9150613f7582614d8d565b604082019050919050565b6000613f8d601b83614485565b9150613f9882614ddc565b602082019050919050565b613fac81614620565b82525050565b6000613fbe8286613b88565b9150613fca8285613b88565b9150613fd68284613bb9565b9150819050949350505050565b6000613fee82613ed1565b9150819050919050565b600060208201905061400d6000830184613af8565b92915050565b60006080820190506140286000830187613af8565b6140356020830186613af8565b6140426040830185613fa3565b81810360608301526140548184613b16565b905095945050505050565b60006020820190506140746000830184613b07565b92915050565b600060208201905081810360008301526140948184613b4f565b905092915050565b600060208201905081810360008301526140b581613c38565b9050919050565b600060208201905081810360008301526140d581613c5b565b9050919050565b600060208201905081810360008301526140f581613c7e565b9050919050565b6000602082019050818103600083015261411581613ca1565b9050919050565b6000602082019050818103600083015261413581613cc4565b9050919050565b6000602082019050818103600083015261415581613ce7565b9050919050565b6000602082019050818103600083015261417581613d0a565b9050919050565b6000602082019050818103600083015261419581613d2d565b9050919050565b600060208201905081810360008301526141b581613d50565b9050919050565b600060208201905081810360008301526141d581613d73565b9050919050565b600060208201905081810360008301526141f581613d96565b9050919050565b6000602082019050818103600083015261421581613db9565b9050919050565b6000602082019050818103600083015261423581613ddc565b9050919050565b6000602082019050818103600083015261425581613dff565b9050919050565b6000602082019050818103600083015261427581613e22565b9050919050565b6000602082019050818103600083015261429581613e45565b9050919050565b600060208201905081810360008301526142b581613e68565b9050919050565b600060208201905081810360008301526142d581613e8b565b9050919050565b600060208201905081810360008301526142f581613eae565b9050919050565b6000602082019050818103600083015261431581613ef4565b9050919050565b6000602082019050818103600083015261433581613f17565b9050919050565b6000602082019050818103600083015261435581613f3a565b9050919050565b6000602082019050818103600083015261437581613f5d565b9050919050565b6000602082019050818103600083015261439581613f80565b9050919050565b60006020820190506143b16000830184613fa3565b92915050565b60006143c16143d2565b90506143cd828261469e565b919050565b6000604051905090565b600067ffffffffffffffff8211156143f7576143f66147d6565b5b61440082614805565b9050602081019050919050565b600067ffffffffffffffff821115614428576144276147d6565b5b61443182614805565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144ac82614620565b91506144b783614620565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144ec576144eb614749565b5b828201905092915050565b600061450282614620565b915061450d83614620565b92508261451d5761451c614778565b5b828204905092915050565b600061453382614620565b915061453e83614620565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561457757614576614749565b5b828202905092915050565b600061458d82614620565b915061459883614620565b9250828210156145ab576145aa614749565b5b828203905092915050565b60006145c182614600565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561465757808201518184015260208101905061463c565b83811115614666576000848401525b50505050565b6000600282049050600182168061468457607f821691505b60208210811415614698576146976147a7565b5b50919050565b6146a782614805565b810181811067ffffffffffffffff821117156146c6576146c56147d6565b5b80604052505050565b60006146da82614620565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561470d5761470c614749565b5b600182019050919050565b600061472382614620565b915061472e83614620565b92508261473e5761473d614778565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f7374696c6c2070726573616c6520747279206c61746572000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b614e0e816145b6565b8114614e1957600080fd5b50565b614e25816145c8565b8114614e3057600080fd5b50565b614e3c816145d4565b8114614e4757600080fd5b50565b614e5381614620565b8114614e5e57600080fd5b5056fea26469706673582212206e5d7e4f04c34f868d14ec6eb07765259e99323c0694867cdd02c925ea834a1d64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000014414e544920415045204153534f43494154494f4e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000003414141000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6546456e756277736463396457647964435157716a6f4c51536344464e4a3431443633707535537a4b4a4d680000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): ANTI APE ASSOCIATION
Arg [1] : _symbol (string): AAA
Arg [2] : _initBaseURI (string):
Arg [3] : _notRevealedUri (string): ipfs://QmeFEnubwsdc9dWdydCQWqjoLQScDFNJ41D63pu5SzKJMh

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [5] : 414e544920415045204153534f43494154494f4e000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4141410000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [10] : 697066733a2f2f516d6546456e756277736463396457647964435157716a6f4c
Arg [11] : 51536344464e4a3431443633707535537a4b4a4d680000000000000000000000


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.