ETH Price: $2,660.34 (+2.06%)

Token

Expantum Buildings (EXPT)
 

Overview

Max Total Supply

591 EXPT

Holders

283

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
stormstout.eth
Balance
2 EXPT
0xe80de17dd3fa25e11beda818305bfcf44146114a
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:
Expantum

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Expantum.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/*                                                                                                                                                                                         
Website: https://expantum.com
NFTs:    https://nft.expantum.com
Twitter: https://twitter.com/expantum
Discord: https://discord.gg/expantum
Youtube: https://www.youtube.com/channel/UCnEhV8bQdtwXXO4-UmsYjzA
 ________  __    __  _______    ______   __    __  ________  __    __  __       __ 
/        |/  |  /  |/       \  /      \ /  \  /  |/        |/  |  /  |/  \     /  |
$$$$$$$$/ $$ |  $$ |$$$$$$$  |/$$$$$$  |$$  \ $$ |$$$$$$$$/ $$ |  $$ |$$  \   /$$ |
$$ |__    $$  \/$$/ $$ |__$$ |$$ |__$$ |$$$  \$$ |   $$ |   $$ |  $$ |$$$  \ /$$$ |
$$    |    $$  $$<  $$    $$/ $$    $$ |$$$$  $$ |   $$ |   $$ |  $$ |$$$$  /$$$$ |
$$$$$/      $$$$  \ $$$$$$$/  $$$$$$$$ |$$ $$ $$ |   $$ |   $$ |  $$ |$$ $$ $$/$$ |
$$ |_____  $$ /$$  |$$ |      $$ |  $$ |$$ |$$$$ |   $$ |   $$ \__$$ |$$ |$$$/ $$ |
$$       |$$ |  $$ |$$ |      $$ |  $$ |$$ | $$$ |   $$ |   $$    $$/ $$ | $/  $$ |
$$$$$$$$/ $$/   $$/ $$/       $$/   $$/ $$/   $$/    $$/     $$$$$$/  $$/      $$/ 
*/                                                                                                                                                                                         

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

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

  string baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 130000000000000000 wei;
  uint256 public maxSupply = 7340;
  uint256 public maxMintAmount = 4;
  uint256 public maxSupplyPresale = 5000;
  mapping (address => bool) public whitelistedAdresses;
  bool onlyWhitelisted = true;
  bool paused = true;
  bool revealed = false;
  string public notRevealedUri;

  constructor(string memory _name, string memory _symbol, string memory _initNotRevealedUri) ERC721(_name, _symbol)
  {
    setNotRevealedURI(_initNotRevealedUri);
  }
  // internal
  function _baseURI() internal view virtual override returns (string memory)
  {
    return baseURI;
  }
  // public
  function mint(uint256 _mintAmount) public payable
  {
    require(!paused);
    uint256 supply = totalSupply();
    if (msg.sender != owner()) {
      if(onlyWhitelisted) {
        require(whitelistedAdresses[msg.sender] == true, "Address is not whitelisted");
        require(supply + _mintAmount <= maxSupplyPresale, "Presale Sold Out");
      }
      require(msg.value >= cost * _mintAmount,"Less then min cost");
    }
    require(_mintAmount > 0, "Mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "You can not mint more than maxMintAmount");
    require(supply + _mintAmount <= maxSupply, "Sale Sold Out");
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender,supply+i);
    }
  }
  function mintOnAddress(address _user,uint256 amount) public onlyOwner
  {
    uint256 supply = totalSupply();
    require(amount <= maxMintAmount);
    for (uint256 i = 1; i <= amount; i++) {
      _safeMint(_user,supply+i);
    }
  }
  function walletOfOwner(address _owner) public view returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }
  function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
      return notRevealedUri;
    }

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

  //only owner
  function reveal(string memory _newBaseURI) public onlyOwner()
  {
    require(!revealed, "Already revealed");
    setBaseURI(_newBaseURI);
    revealed = true;
  }
  function getReveal() public view returns (bool)
  {
    return revealed;
  }
  function setCost(uint256 _newCost) public onlyOwner()
  {
    cost = _newCost;
  }
  function setMaxOneMint(uint256 _newMaxMintAmount) public onlyOwner()
  {
    maxMintAmount = _newMaxMintAmount;
  }
  function setMaxMintAmount(uint256 _newMaxSupply) public onlyOwner()
  {
    maxSupply = _newMaxSupply;
  }
  function setMintAmountPresale(uint256 _newMaxSupplyPresale) public onlyOwner()
  {
    maxSupplyPresale = _newMaxSupplyPresale;
  }
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner()
  {
    notRevealedUri = _notRevealedURI;
  }
  function setBaseURI(string memory _newBaseURI) public onlyOwner()
  {
    baseURI = _newBaseURI;
  }
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner()
  {
    baseExtension = _newBaseExtension;
  }
  function setPause(bool _state) public onlyOwner()
  {
    paused = _state;
  }
  function getPause() public view returns (bool)
  {
    return paused;
  }
  function setPreSale(bool _state) public onlyOwner()
  {
    onlyWhitelisted = _state;
  }
  function getPreSale() public view returns (bool)
  {
    return onlyWhitelisted;
  }
  function removeWhitelistedAddress(address[] memory _users) public onlyOwner()
  {
    for(uint256 i = 0; i< _users.length;i++){
      delete whitelistedAdresses[_users[i]];
    }
  }
  function addWhitelistUsersOrUpdate(address[] memory _users,bool whitelisted) public onlyOwner()
  {
    for(uint256 i = 0; i< _users.length;i++){
      whitelistedAdresses[_users[i]]=whitelisted;
    }
  }
  function withdraw() public onlyOwner()
  {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 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 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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);
    }

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev 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 {}
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 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":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"},{"internalType":"bool","name":"whitelisted","type":"bool"}],"name":"addWhitelistUsersOrUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPreSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"maxSupplyPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintOnAddress","outputs":[],"stateMutability":"nonpayable","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":[],"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":"address[]","name":"_users","type":"address[]"}],"name":"removeWhitelistedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxOneMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupplyPresale","type":"uint256"}],"name":"setMintAmountPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAdresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000306565b506701cdda4faccd0000600d55611cac600e556004600f556113886010556001601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff021916908315150217905550348015620000cd57600080fd5b50604051620058f5380380620058f58339818101604052810190620000f3919062000428565b828281600090805190602001906200010d92919062000306565b5080600190805190602001906200012692919062000306565b505050620001496200013d6200016360201b60201c565b6200016b60201b60201c565b6200015a816200023160201b60201c565b505050620006bc565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002416200016360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000267620002dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b790620004f0565b60405180910390fd5b8060139080519060200190620002d892919062000306565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200031490620005b8565b90600052602060002090601f01602090048101928262000338576000855562000384565b82601f106200035357805160ff191683800117855562000384565b8280016001018555821562000384579182015b828111156200038357825182559160200191906001019062000366565b5b50905062000393919062000397565b5090565b5b80821115620003b257600081600090555060010162000398565b5090565b6000620003cd620003c7846200053b565b62000512565b905082815260208101848484011115620003e657600080fd5b620003f384828562000582565b509392505050565b600082601f8301126200040d57600080fd5b81516200041f848260208601620003b6565b91505092915050565b6000806000606084860312156200043e57600080fd5b600084015167ffffffffffffffff8111156200045957600080fd5b6200046786828701620003fb565b935050602084015167ffffffffffffffff8111156200048557600080fd5b6200049386828701620003fb565b925050604084015167ffffffffffffffff811115620004b157600080fd5b620004bf86828701620003fb565b9150509250925092565b6000620004d860208362000571565b9150620004e58262000693565b602082019050919050565b600060208201905081810360008301526200050b81620004c9565b9050919050565b60006200051e62000531565b90506200052c8282620005ee565b919050565b6000604051905090565b600067ffffffffffffffff82111562000559576200055862000653565b5b620005648262000682565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005a257808201518184015260208101905062000585565b83811115620005b2576000848401525b50505050565b60006002820490506001821680620005d157607f821691505b60208210811415620005e857620005e762000624565b5b50919050565b620005f98262000682565b810181811067ffffffffffffffff821117156200061b576200061a62000653565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61522980620006cc6000396000f3fe6080604052600436106102725760003560e01c80634f6ccce71161014f578063a0712d68116100c1578063c87b56dd1161007a578063c87b56dd1461093d578063d5abeb011461097a578063da3ef23f146109a5578063e985e9c5146109ce578063f2c4ce1e14610a0b578063f2fde38b14610a3457610272565b8063a0712d6814610852578063a22cb4651461086e578063b88d4fde14610897578063bc6ea5af146108c0578063bedb86fb146108e9578063c66828621461091257610272565b806370a082311161011357806370a0823114610754578063715018a61461079157806379a2e4e5146107a85780637ecf2f38146107d15780638da5cb5b146107fc57806395d89b411461082757610272565b80634f6ccce71461064957806354dcd4c61461068657806355f804b3146106c35780635af97082146106ec5780636352211e1461071757610272565b806323b872dd116101e85780633ccfd60b116101ac5780633ccfd60b1461054f5780633e3ca9d31461056657806342842e0e14610591578063438b6300146105ba57806344a0d68a146105f75780634c2612471461062057610272565b806323b872dd1461046e5780632831fc7e146104975780632f745c59146104c0578063396f8f44146104fd57806339b628221461052657610272565b8063095ea7b31161023a578063095ea7b3146103705780630d95ccc91461039957806313078948146103c257806313faede6146103ed57806318160ddd14610418578063239c70ae1461044357610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063081c8c441461031c578063088a4ed014610347575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613c30565b610a5d565b6040516102ab919061431d565b60405180910390f35b3480156102c057600080fd5b506102c9610ad7565b6040516102d69190614338565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613cc3565b610b69565b6040516103139190614294565b60405180910390f35b34801561032857600080fd5b50610331610bee565b60405161033e9190614338565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190613cc3565b610c7c565b005b34801561037c57600080fd5b5061039760048036038101906103929190613b36565b610d02565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190613c07565b610e1a565b005b3480156103ce57600080fd5b506103d7610eb3565b6040516103e4919061467a565b60405180910390f35b3480156103f957600080fd5b50610402610eb9565b60405161040f919061467a565b60405180910390f35b34801561042457600080fd5b5061042d610ebf565b60405161043a919061467a565b60405180910390f35b34801561044f57600080fd5b50610458610ecc565b604051610465919061467a565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190613a30565b610ed2565b005b3480156104a357600080fd5b506104be60048036038101906104b99190613b36565b610f32565b005b3480156104cc57600080fd5b506104e760048036038101906104e29190613b36565b611005565b6040516104f4919061467a565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190613b72565b6110aa565b005b34801561053257600080fd5b5061054d60048036038101906105489190613bb3565b6111d8565b005b34801561055b57600080fd5b5061056461130f565b005b34801561057257600080fd5b5061057b611404565b604051610588919061431d565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190613a30565b61141b565b005b3480156105c657600080fd5b506105e160048036038101906105dc91906139cb565b61143b565b6040516105ee91906142fb565b60405180910390f35b34801561060357600080fd5b5061061e60048036038101906106199190613cc3565b611535565b005b34801561062c57600080fd5b5061064760048036038101906106429190613c82565b6115bb565b005b34801561065557600080fd5b50610670600480360381019061066b9190613cc3565b6116ae565b60405161067d919061467a565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a891906139cb565b611745565b6040516106ba919061431d565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e59190613c82565b611765565b005b3480156106f857600080fd5b506107016117fb565b60405161070e919061431d565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190613cc3565b611812565b60405161074b9190614294565b60405180910390f35b34801561076057600080fd5b5061077b600480360381019061077691906139cb565b6118c4565b604051610788919061467a565b60405180910390f35b34801561079d57600080fd5b506107a661197c565b005b3480156107b457600080fd5b506107cf60048036038101906107ca9190613cc3565b611a04565b005b3480156107dd57600080fd5b506107e6611a8a565b6040516107f3919061431d565b60405180910390f35b34801561080857600080fd5b50610811611aa1565b60405161081e9190614294565b60405180910390f35b34801561083357600080fd5b5061083c611acb565b6040516108499190614338565b60405180910390f35b61086c60048036038101906108679190613cc3565b611b5d565b005b34801561087a57600080fd5b5061089560048036038101906108909190613afa565b611e1a565b005b3480156108a357600080fd5b506108be60048036038101906108b99190613a7f565b611e30565b005b3480156108cc57600080fd5b506108e760048036038101906108e29190613cc3565b611e92565b005b3480156108f557600080fd5b50610910600480360381019061090b9190613c07565b611f18565b005b34801561091e57600080fd5b50610927611fb1565b6040516109349190614338565b60405180910390f35b34801561094957600080fd5b50610964600480360381019061095f9190613cc3565b61203f565b6040516109719190614338565b60405180910390f35b34801561098657600080fd5b5061098f612198565b60405161099c919061467a565b60405180910390f35b3480156109b157600080fd5b506109cc60048036038101906109c79190613c82565b61219e565b005b3480156109da57600080fd5b506109f560048036038101906109f091906139f4565b612234565b604051610a02919061431d565b60405180910390f35b348015610a1757600080fd5b50610a326004803603810190610a2d9190613c82565b6122c8565b005b348015610a4057600080fd5b50610a5b6004803603810190610a5691906139cb565b61235e565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad05750610acf82612456565b5b9050919050565b606060008054610ae6906149af565b80601f0160208091040260200160405190810160405280929190818152602001828054610b12906149af565b8015610b5f5780601f10610b3457610100808354040283529160200191610b5f565b820191906000526020600020905b815481529060010190602001808311610b4257829003601f168201915b5050505050905090565b6000610b7482612538565b610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa9061457a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60138054610bfb906149af565b80601f0160208091040260200160405190810160405280929190818152602001828054610c27906149af565b8015610c745780601f10610c4957610100808354040283529160200191610c74565b820191906000526020600020905b815481529060010190602001808311610c5757829003601f168201915b505050505081565b610c846125a4565b73ffffffffffffffffffffffffffffffffffffffff16610ca2611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef9061459a565b60405180910390fd5b80600e8190555050565b6000610d0d82611812565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d75906145fa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d9d6125a4565b73ffffffffffffffffffffffffffffffffffffffff161480610dcc5750610dcb81610dc66125a4565b612234565b5b610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e02906144ba565b60405180910390fd5b610e1583836125ac565b505050565b610e226125a4565b73ffffffffffffffffffffffffffffffffffffffff16610e40611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614610e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8d9061459a565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b60105481565b600d5481565b6000600880549050905090565b600f5481565b610ee3610edd6125a4565b82612665565b610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f199061461a565b60405180910390fd5b610f2d838383612743565b505050565b610f3a6125a4565b73ffffffffffffffffffffffffffffffffffffffff16610f58611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614610fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa59061459a565b60405180910390fd5b6000610fb8610ebf565b9050600f54821115610fc957600080fd5b6000600190505b828111610fff57610fec848284610fe791906147e4565b61299f565b8080610ff790614a12565b915050610fd0565b50505050565b6000611010836118c4565b8210611051576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110489061435a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6110b26125a4565b73ffffffffffffffffffffffffffffffffffffffff166110d0611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d9061459a565b60405180910390fd5b60005b81518110156111d4576011600083838151811061116f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905580806111cc90614a12565b915050611129565b5050565b6111e06125a4565b73ffffffffffffffffffffffffffffffffffffffff166111fe611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b9061459a565b60405180910390fd5b60005b825181101561130a57816011600085848151811061129e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061130290614a12565b915050611257565b505050565b6113176125a4565b73ffffffffffffffffffffffffffffffffffffffff16611335611aa1565b73ffffffffffffffffffffffffffffffffffffffff161461138b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113829061459a565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516113b19061427f565b60006040518083038185875af1925050503d80600081146113ee576040519150601f19603f3d011682016040523d82523d6000602084013e6113f3565b606091505b505090508061140157600080fd5b50565b6000601260019054906101000a900460ff16905090565b61143683838360405180602001604052806000815250611e30565b505050565b60606000611448836118c4565b905060008167ffffffffffffffff81111561148c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114ba5781602001602082028036833780820191505090505b50905060005b8281101561152a576114d28582611005565b82828151811061150b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061152290614a12565b9150506114c0565b508092505050919050565b61153d6125a4565b73ffffffffffffffffffffffffffffffffffffffff1661155b611aa1565b73ffffffffffffffffffffffffffffffffffffffff16146115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a89061459a565b60405180910390fd5b80600d8190555050565b6115c36125a4565b73ffffffffffffffffffffffffffffffffffffffff166115e1611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e9061459a565b60405180910390fd5b601260029054906101000a900460ff1615611687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167e9061453a565b60405180910390fd5b61169081611765565b6001601260026101000a81548160ff02191690831515021790555050565b60006116b8610ebf565b82106116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f09061463a565b60405180910390fd5b60088281548110611733577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b60116020528060005260406000206000915054906101000a900460ff1681565b61176d6125a4565b73ffffffffffffffffffffffffffffffffffffffff1661178b611aa1565b73ffffffffffffffffffffffffffffffffffffffff16146117e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d89061459a565b60405180910390fd5b80600b90805190602001906117f7929190613759565b5050565b6000601260029054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b2906144fa565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c906144da565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119846125a4565b73ffffffffffffffffffffffffffffffffffffffff166119a2611aa1565b73ffffffffffffffffffffffffffffffffffffffff16146119f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ef9061459a565b60405180910390fd5b611a0260006129bd565b565b611a0c6125a4565b73ffffffffffffffffffffffffffffffffffffffff16611a2a611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a779061459a565b60405180910390fd5b8060108190555050565b6000601260009054906101000a900460ff16905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ada906149af565b80601f0160208091040260200160405190810160405280929190818152602001828054611b06906149af565b8015611b535780601f10611b2857610100808354040283529160200191611b53565b820191906000526020600020905b815481529060010190602001808311611b3657829003601f168201915b5050505050905090565b601260019054906101000a900460ff1615611b7757600080fd5b6000611b81610ebf565b9050611b8b611aa1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d0757601260009054906101000a900460ff1615611cb65760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c9061443a565b60405180910390fd5b6010548282611c7491906147e4565b1115611cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cac9061451a565b60405180910390fd5b5b81600d54611cc4919061486b565b341015611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd9061447a565b60405180910390fd5b5b60008211611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d41906143da565b60405180910390fd5b600f54821115611d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d869061465a565b60405180910390fd5b600e548282611d9e91906147e4565b1115611ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd69061445a565b60405180910390fd5b6000600190505b828111611e1557611e02338284611dfd91906147e4565b61299f565b8080611e0d90614a12565b915050611de6565b505050565b611e2c611e256125a4565b8383612a83565b5050565b611e41611e3b6125a4565b83612665565b611e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e779061461a565b60405180910390fd5b611e8c84848484612bf0565b50505050565b611e9a6125a4565b73ffffffffffffffffffffffffffffffffffffffff16611eb8611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614611f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f059061459a565b60405180910390fd5b80600f8190555050565b611f206125a4565b73ffffffffffffffffffffffffffffffffffffffff16611f3e611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614611f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8b9061459a565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b600c8054611fbe906149af565b80601f0160208091040260200160405190810160405280929190818152602001828054611fea906149af565b80156120375780601f1061200c57610100808354040283529160200191612037565b820191906000526020600020905b81548152906001019060200180831161201a57829003601f168201915b505050505081565b606061204a82612538565b612089576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612080906145da565b60405180910390fd5b60001515601260029054906101000a900460ff161515141561213757601380546120b2906149af565b80601f01602080910402602001604051908101604052809291908181526020018280546120de906149af565b801561212b5780601f106121005761010080835404028352916020019161212b565b820191906000526020600020905b81548152906001019060200180831161210e57829003601f168201915b50505050509050612193565b6000612141612c4c565b90506000815111612161576040518060200160405280600081525061218f565b8061216b84612cde565b600c60405160200161217f9392919061424e565b6040516020818303038152906040525b9150505b919050565b600e5481565b6121a66125a4565b73ffffffffffffffffffffffffffffffffffffffff166121c4611aa1565b73ffffffffffffffffffffffffffffffffffffffff161461221a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122119061459a565b60405180910390fd5b80600c9080519060200190612230929190613759565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122d06125a4565b73ffffffffffffffffffffffffffffffffffffffff166122ee611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614612344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233b9061459a565b60405180910390fd5b806013908051906020019061235a929190613759565b5050565b6123666125a4565b73ffffffffffffffffffffffffffffffffffffffff16612384611aa1565b73ffffffffffffffffffffffffffffffffffffffff16146123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d19061459a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561244a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124419061439a565b60405180910390fd5b612453816129bd565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061252157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612531575061253082612e8b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661261f83611812565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061267082612538565b6126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a69061449a565b60405180910390fd5b60006126ba83611812565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061272957508373ffffffffffffffffffffffffffffffffffffffff1661271184610b69565b73ffffffffffffffffffffffffffffffffffffffff16145b8061273a57506127398185612234565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661276382611812565b73ffffffffffffffffffffffffffffffffffffffff16146127b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b0906145ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612829576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612820906143fa565b60405180910390fd5b612834838383612ef5565b61283f6000826125ac565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461288f91906148c5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128e691906147e4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6129b9828260405180602001604052806000815250613009565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae99061441a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612be3919061431d565b60405180910390a3505050565b612bfb848484612743565b612c0784848484613064565b612c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3d9061437a565b60405180910390fd5b50505050565b6060600b8054612c5b906149af565b80601f0160208091040260200160405190810160405280929190818152602001828054612c87906149af565b8015612cd45780601f10612ca957610100808354040283529160200191612cd4565b820191906000526020600020905b815481529060010190602001808311612cb757829003601f168201915b5050505050905090565b60606000821415612d26576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e86565b600082905060005b60008214612d58578080612d4190614a12565b915050600a82612d51919061483a565b9150612d2e565b60008167ffffffffffffffff811115612d9a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612dcc5781602001600182028036833780820191505090505b5090505b60008514612e7f57600182612de591906148c5565b9150600a85612df49190614a5b565b6030612e0091906147e4565b60f81b818381518110612e3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e78919061483a565b9450612dd0565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f008383836131fb565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f4357612f3e81613200565b612f82565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f8157612f808382613249565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fc557612fc0816133b6565b613004565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130035761300282826134f9565b5b5b505050565b6130138383613578565b6130206000848484613064565b61305f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130569061437a565b60405180910390fd5b505050565b60006130858473ffffffffffffffffffffffffffffffffffffffff16613746565b156131ee578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130ae6125a4565b8786866040518563ffffffff1660e01b81526004016130d094939291906142af565b602060405180830381600087803b1580156130ea57600080fd5b505af192505050801561311b57506040513d601f19601f820116820180604052508101906131189190613c59565b60015b61319e573d806000811461314b576040519150601f19603f3d011682016040523d82523d6000602084013e613150565b606091505b50600081511415613196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318d9061437a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131f3565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613256846118c4565b61326091906148c5565b9050600060076000848152602001908152602001600020549050818114613345576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133ca91906148c5565b9050600060096000848152602001908152602001600020549050600060088381548110613420577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613468577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806134dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613504836118c4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135df9061455a565b60405180910390fd5b6135f181612538565b15613631576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613628906143ba565b60405180910390fd5b61363d60008383612ef5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461368d91906147e4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613765906149af565b90600052602060002090601f01602090048101928261378757600085556137ce565b82601f106137a057805160ff19168380011785556137ce565b828001600101855582156137ce579182015b828111156137cd5782518255916020019190600101906137b2565b5b5090506137db91906137df565b5090565b5b808211156137f85760008160009055506001016137e0565b5090565b600061380f61380a846146ba565b614695565b9050808382526020820190508285602086028201111561382e57600080fd5b60005b8581101561385e578161384488826138e4565b845260208401935060208301925050600181019050613831565b5050509392505050565b600061387b613876846146e6565b614695565b90508281526020810184848401111561389357600080fd5b61389e84828561496d565b509392505050565b60006138b96138b484614717565b614695565b9050828152602081018484840111156138d157600080fd5b6138dc84828561496d565b509392505050565b6000813590506138f381615197565b92915050565b600082601f83011261390a57600080fd5b813561391a8482602086016137fc565b91505092915050565b600081359050613932816151ae565b92915050565b600081359050613947816151c5565b92915050565b60008151905061395c816151c5565b92915050565b600082601f83011261397357600080fd5b8135613983848260208601613868565b91505092915050565b600082601f83011261399d57600080fd5b81356139ad8482602086016138a6565b91505092915050565b6000813590506139c5816151dc565b92915050565b6000602082840312156139dd57600080fd5b60006139eb848285016138e4565b91505092915050565b60008060408385031215613a0757600080fd5b6000613a15858286016138e4565b9250506020613a26858286016138e4565b9150509250929050565b600080600060608486031215613a4557600080fd5b6000613a53868287016138e4565b9350506020613a64868287016138e4565b9250506040613a75868287016139b6565b9150509250925092565b60008060008060808587031215613a9557600080fd5b6000613aa3878288016138e4565b9450506020613ab4878288016138e4565b9350506040613ac5878288016139b6565b925050606085013567ffffffffffffffff811115613ae257600080fd5b613aee87828801613962565b91505092959194509250565b60008060408385031215613b0d57600080fd5b6000613b1b858286016138e4565b9250506020613b2c85828601613923565b9150509250929050565b60008060408385031215613b4957600080fd5b6000613b57858286016138e4565b9250506020613b68858286016139b6565b9150509250929050565b600060208284031215613b8457600080fd5b600082013567ffffffffffffffff811115613b9e57600080fd5b613baa848285016138f9565b91505092915050565b60008060408385031215613bc657600080fd5b600083013567ffffffffffffffff811115613be057600080fd5b613bec858286016138f9565b9250506020613bfd85828601613923565b9150509250929050565b600060208284031215613c1957600080fd5b6000613c2784828501613923565b91505092915050565b600060208284031215613c4257600080fd5b6000613c5084828501613938565b91505092915050565b600060208284031215613c6b57600080fd5b6000613c798482850161394d565b91505092915050565b600060208284031215613c9457600080fd5b600082013567ffffffffffffffff811115613cae57600080fd5b613cba8482850161398c565b91505092915050565b600060208284031215613cd557600080fd5b6000613ce3848285016139b6565b91505092915050565b6000613cf88383614230565b60208301905092915050565b613d0d816148f9565b82525050565b6000613d1e8261476d565b613d28818561479b565b9350613d3383614748565b8060005b83811015613d64578151613d4b8882613cec565b9750613d568361478e565b925050600181019050613d37565b5085935050505092915050565b613d7a8161490b565b82525050565b6000613d8b82614778565b613d9581856147ac565b9350613da581856020860161497c565b613dae81614b48565b840191505092915050565b6000613dc482614783565b613dce81856147c8565b9350613dde81856020860161497c565b613de781614b48565b840191505092915050565b6000613dfd82614783565b613e0781856147d9565b9350613e1781856020860161497c565b80840191505092915050565b60008154613e30816149af565b613e3a81866147d9565b94506001821660008114613e555760018114613e6657613e99565b60ff19831686528186019350613e99565b613e6f85614758565b60005b83811015613e9157815481890152600182019150602081019050613e72565b838801955050505b50505092915050565b6000613eaf602b836147c8565b9150613eba82614b59565b604082019050919050565b6000613ed26032836147c8565b9150613edd82614ba8565b604082019050919050565b6000613ef56026836147c8565b9150613f0082614bf7565b604082019050919050565b6000613f18601c836147c8565b9150613f2382614c46565b602082019050919050565b6000613f3b6013836147c8565b9150613f4682614c6f565b602082019050919050565b6000613f5e6024836147c8565b9150613f6982614c98565b604082019050919050565b6000613f816019836147c8565b9150613f8c82614ce7565b602082019050919050565b6000613fa4601a836147c8565b9150613faf82614d10565b602082019050919050565b6000613fc7600d836147c8565b9150613fd282614d39565b602082019050919050565b6000613fea6012836147c8565b9150613ff582614d62565b602082019050919050565b600061400d602c836147c8565b915061401882614d8b565b604082019050919050565b60006140306038836147c8565b915061403b82614dda565b604082019050919050565b6000614053602a836147c8565b915061405e82614e29565b604082019050919050565b60006140766029836147c8565b915061408182614e78565b604082019050919050565b60006140996010836147c8565b91506140a482614ec7565b602082019050919050565b60006140bc6010836147c8565b91506140c782614ef0565b602082019050919050565b60006140df6020836147c8565b91506140ea82614f19565b602082019050919050565b6000614102602c836147c8565b915061410d82614f42565b604082019050919050565b60006141256020836147c8565b915061413082614f91565b602082019050919050565b60006141486029836147c8565b915061415382614fba565b604082019050919050565b600061416b602f836147c8565b915061417682615009565b604082019050919050565b600061418e6021836147c8565b915061419982615058565b604082019050919050565b60006141b16000836147bd565b91506141bc826150a7565b600082019050919050565b60006141d46031836147c8565b91506141df826150aa565b604082019050919050565b60006141f7602c836147c8565b9150614202826150f9565b604082019050919050565b600061421a6028836147c8565b915061422582615148565b604082019050919050565b61423981614963565b82525050565b61424881614963565b82525050565b600061425a8286613df2565b91506142668285613df2565b91506142728284613e23565b9150819050949350505050565b600061428a826141a4565b9150819050919050565b60006020820190506142a96000830184613d04565b92915050565b60006080820190506142c46000830187613d04565b6142d16020830186613d04565b6142de604083018561423f565b81810360608301526142f08184613d80565b905095945050505050565b600060208201905081810360008301526143158184613d13565b905092915050565b60006020820190506143326000830184613d71565b92915050565b600060208201905081810360008301526143528184613db9565b905092915050565b6000602082019050818103600083015261437381613ea2565b9050919050565b6000602082019050818103600083015261439381613ec5565b9050919050565b600060208201905081810360008301526143b381613ee8565b9050919050565b600060208201905081810360008301526143d381613f0b565b9050919050565b600060208201905081810360008301526143f381613f2e565b9050919050565b6000602082019050818103600083015261441381613f51565b9050919050565b6000602082019050818103600083015261443381613f74565b9050919050565b6000602082019050818103600083015261445381613f97565b9050919050565b6000602082019050818103600083015261447381613fba565b9050919050565b6000602082019050818103600083015261449381613fdd565b9050919050565b600060208201905081810360008301526144b381614000565b9050919050565b600060208201905081810360008301526144d381614023565b9050919050565b600060208201905081810360008301526144f381614046565b9050919050565b6000602082019050818103600083015261451381614069565b9050919050565b600060208201905081810360008301526145338161408c565b9050919050565b60006020820190508181036000830152614553816140af565b9050919050565b60006020820190508181036000830152614573816140d2565b9050919050565b60006020820190508181036000830152614593816140f5565b9050919050565b600060208201905081810360008301526145b381614118565b9050919050565b600060208201905081810360008301526145d38161413b565b9050919050565b600060208201905081810360008301526145f38161415e565b9050919050565b6000602082019050818103600083015261461381614181565b9050919050565b60006020820190508181036000830152614633816141c7565b9050919050565b60006020820190508181036000830152614653816141ea565b9050919050565b600060208201905081810360008301526146738161420d565b9050919050565b600060208201905061468f600083018461423f565b92915050565b600061469f6146b0565b90506146ab82826149e1565b919050565b6000604051905090565b600067ffffffffffffffff8211156146d5576146d4614b19565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561470157614700614b19565b5b61470a82614b48565b9050602081019050919050565b600067ffffffffffffffff82111561473257614731614b19565b5b61473b82614b48565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006147ef82614963565b91506147fa83614963565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561482f5761482e614a8c565b5b828201905092915050565b600061484582614963565b915061485083614963565b9250826148605761485f614abb565b5b828204905092915050565b600061487682614963565b915061488183614963565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148ba576148b9614a8c565b5b828202905092915050565b60006148d082614963565b91506148db83614963565b9250828210156148ee576148ed614a8c565b5b828203905092915050565b600061490482614943565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561499a57808201518184015260208101905061497f565b838111156149a9576000848401525b50505050565b600060028204905060018216806149c757607f821691505b602082108114156149db576149da614aea565b5b50919050565b6149ea82614b48565b810181811067ffffffffffffffff82111715614a0957614a08614b19565b5b80604052505050565b6000614a1d82614963565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a5057614a4f614a8c565b5b600182019050919050565b6000614a6682614963565b9150614a7183614963565b925082614a8157614a80614abb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74206174206c656173742031204e465400000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f41646472657373206973206e6f742077686974656c6973746564000000000000600082015250565b7f53616c6520536f6c64204f757400000000000000000000000000000000000000600082015250565b7f4c657373207468656e206d696e20636f73740000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f50726573616c6520536f6c64204f757400000000000000000000000000000000600082015250565b7f416c72656164792072657665616c656400000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f596f752063616e206e6f74206d696e74206d6f7265207468616e206d61784d6960008201527f6e74416d6f756e74000000000000000000000000000000000000000000000000602082015250565b6151a0816148f9565b81146151ab57600080fd5b50565b6151b78161490b565b81146151c257600080fd5b50565b6151ce81614917565b81146151d957600080fd5b50565b6151e581614963565b81146151f057600080fd5b5056fea26469706673582212205ddc4418e934173fdc103c94cc291228897f71e8f1a1d26c96a88886f48ea81f64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012457870616e74756d204275696c64696e6773000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044558505400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d63527378634376743445435a4e4e4a7a506d424442774e42714351525557743766667a7057566a416b4e6d4500000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80634f6ccce71161014f578063a0712d68116100c1578063c87b56dd1161007a578063c87b56dd1461093d578063d5abeb011461097a578063da3ef23f146109a5578063e985e9c5146109ce578063f2c4ce1e14610a0b578063f2fde38b14610a3457610272565b8063a0712d6814610852578063a22cb4651461086e578063b88d4fde14610897578063bc6ea5af146108c0578063bedb86fb146108e9578063c66828621461091257610272565b806370a082311161011357806370a0823114610754578063715018a61461079157806379a2e4e5146107a85780637ecf2f38146107d15780638da5cb5b146107fc57806395d89b411461082757610272565b80634f6ccce71461064957806354dcd4c61461068657806355f804b3146106c35780635af97082146106ec5780636352211e1461071757610272565b806323b872dd116101e85780633ccfd60b116101ac5780633ccfd60b1461054f5780633e3ca9d31461056657806342842e0e14610591578063438b6300146105ba57806344a0d68a146105f75780634c2612471461062057610272565b806323b872dd1461046e5780632831fc7e146104975780632f745c59146104c0578063396f8f44146104fd57806339b628221461052657610272565b8063095ea7b31161023a578063095ea7b3146103705780630d95ccc91461039957806313078948146103c257806313faede6146103ed57806318160ddd14610418578063239c70ae1461044357610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063081c8c441461031c578063088a4ed014610347575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613c30565b610a5d565b6040516102ab919061431d565b60405180910390f35b3480156102c057600080fd5b506102c9610ad7565b6040516102d69190614338565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613cc3565b610b69565b6040516103139190614294565b60405180910390f35b34801561032857600080fd5b50610331610bee565b60405161033e9190614338565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190613cc3565b610c7c565b005b34801561037c57600080fd5b5061039760048036038101906103929190613b36565b610d02565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190613c07565b610e1a565b005b3480156103ce57600080fd5b506103d7610eb3565b6040516103e4919061467a565b60405180910390f35b3480156103f957600080fd5b50610402610eb9565b60405161040f919061467a565b60405180910390f35b34801561042457600080fd5b5061042d610ebf565b60405161043a919061467a565b60405180910390f35b34801561044f57600080fd5b50610458610ecc565b604051610465919061467a565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190613a30565b610ed2565b005b3480156104a357600080fd5b506104be60048036038101906104b99190613b36565b610f32565b005b3480156104cc57600080fd5b506104e760048036038101906104e29190613b36565b611005565b6040516104f4919061467a565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190613b72565b6110aa565b005b34801561053257600080fd5b5061054d60048036038101906105489190613bb3565b6111d8565b005b34801561055b57600080fd5b5061056461130f565b005b34801561057257600080fd5b5061057b611404565b604051610588919061431d565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190613a30565b61141b565b005b3480156105c657600080fd5b506105e160048036038101906105dc91906139cb565b61143b565b6040516105ee91906142fb565b60405180910390f35b34801561060357600080fd5b5061061e60048036038101906106199190613cc3565b611535565b005b34801561062c57600080fd5b5061064760048036038101906106429190613c82565b6115bb565b005b34801561065557600080fd5b50610670600480360381019061066b9190613cc3565b6116ae565b60405161067d919061467a565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a891906139cb565b611745565b6040516106ba919061431d565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e59190613c82565b611765565b005b3480156106f857600080fd5b506107016117fb565b60405161070e919061431d565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190613cc3565b611812565b60405161074b9190614294565b60405180910390f35b34801561076057600080fd5b5061077b600480360381019061077691906139cb565b6118c4565b604051610788919061467a565b60405180910390f35b34801561079d57600080fd5b506107a661197c565b005b3480156107b457600080fd5b506107cf60048036038101906107ca9190613cc3565b611a04565b005b3480156107dd57600080fd5b506107e6611a8a565b6040516107f3919061431d565b60405180910390f35b34801561080857600080fd5b50610811611aa1565b60405161081e9190614294565b60405180910390f35b34801561083357600080fd5b5061083c611acb565b6040516108499190614338565b60405180910390f35b61086c60048036038101906108679190613cc3565b611b5d565b005b34801561087a57600080fd5b5061089560048036038101906108909190613afa565b611e1a565b005b3480156108a357600080fd5b506108be60048036038101906108b99190613a7f565b611e30565b005b3480156108cc57600080fd5b506108e760048036038101906108e29190613cc3565b611e92565b005b3480156108f557600080fd5b50610910600480360381019061090b9190613c07565b611f18565b005b34801561091e57600080fd5b50610927611fb1565b6040516109349190614338565b60405180910390f35b34801561094957600080fd5b50610964600480360381019061095f9190613cc3565b61203f565b6040516109719190614338565b60405180910390f35b34801561098657600080fd5b5061098f612198565b60405161099c919061467a565b60405180910390f35b3480156109b157600080fd5b506109cc60048036038101906109c79190613c82565b61219e565b005b3480156109da57600080fd5b506109f560048036038101906109f091906139f4565b612234565b604051610a02919061431d565b60405180910390f35b348015610a1757600080fd5b50610a326004803603810190610a2d9190613c82565b6122c8565b005b348015610a4057600080fd5b50610a5b6004803603810190610a5691906139cb565b61235e565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad05750610acf82612456565b5b9050919050565b606060008054610ae6906149af565b80601f0160208091040260200160405190810160405280929190818152602001828054610b12906149af565b8015610b5f5780601f10610b3457610100808354040283529160200191610b5f565b820191906000526020600020905b815481529060010190602001808311610b4257829003601f168201915b5050505050905090565b6000610b7482612538565b610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa9061457a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60138054610bfb906149af565b80601f0160208091040260200160405190810160405280929190818152602001828054610c27906149af565b8015610c745780601f10610c4957610100808354040283529160200191610c74565b820191906000526020600020905b815481529060010190602001808311610c5757829003601f168201915b505050505081565b610c846125a4565b73ffffffffffffffffffffffffffffffffffffffff16610ca2611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef9061459a565b60405180910390fd5b80600e8190555050565b6000610d0d82611812565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d75906145fa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d9d6125a4565b73ffffffffffffffffffffffffffffffffffffffff161480610dcc5750610dcb81610dc66125a4565b612234565b5b610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e02906144ba565b60405180910390fd5b610e1583836125ac565b505050565b610e226125a4565b73ffffffffffffffffffffffffffffffffffffffff16610e40611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614610e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8d9061459a565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b60105481565b600d5481565b6000600880549050905090565b600f5481565b610ee3610edd6125a4565b82612665565b610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f199061461a565b60405180910390fd5b610f2d838383612743565b505050565b610f3a6125a4565b73ffffffffffffffffffffffffffffffffffffffff16610f58611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614610fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa59061459a565b60405180910390fd5b6000610fb8610ebf565b9050600f54821115610fc957600080fd5b6000600190505b828111610fff57610fec848284610fe791906147e4565b61299f565b8080610ff790614a12565b915050610fd0565b50505050565b6000611010836118c4565b8210611051576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110489061435a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6110b26125a4565b73ffffffffffffffffffffffffffffffffffffffff166110d0611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d9061459a565b60405180910390fd5b60005b81518110156111d4576011600083838151811061116f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905580806111cc90614a12565b915050611129565b5050565b6111e06125a4565b73ffffffffffffffffffffffffffffffffffffffff166111fe611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b9061459a565b60405180910390fd5b60005b825181101561130a57816011600085848151811061129e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061130290614a12565b915050611257565b505050565b6113176125a4565b73ffffffffffffffffffffffffffffffffffffffff16611335611aa1565b73ffffffffffffffffffffffffffffffffffffffff161461138b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113829061459a565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516113b19061427f565b60006040518083038185875af1925050503d80600081146113ee576040519150601f19603f3d011682016040523d82523d6000602084013e6113f3565b606091505b505090508061140157600080fd5b50565b6000601260019054906101000a900460ff16905090565b61143683838360405180602001604052806000815250611e30565b505050565b60606000611448836118c4565b905060008167ffffffffffffffff81111561148c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114ba5781602001602082028036833780820191505090505b50905060005b8281101561152a576114d28582611005565b82828151811061150b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061152290614a12565b9150506114c0565b508092505050919050565b61153d6125a4565b73ffffffffffffffffffffffffffffffffffffffff1661155b611aa1565b73ffffffffffffffffffffffffffffffffffffffff16146115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a89061459a565b60405180910390fd5b80600d8190555050565b6115c36125a4565b73ffffffffffffffffffffffffffffffffffffffff166115e1611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e9061459a565b60405180910390fd5b601260029054906101000a900460ff1615611687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167e9061453a565b60405180910390fd5b61169081611765565b6001601260026101000a81548160ff02191690831515021790555050565b60006116b8610ebf565b82106116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f09061463a565b60405180910390fd5b60088281548110611733577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b60116020528060005260406000206000915054906101000a900460ff1681565b61176d6125a4565b73ffffffffffffffffffffffffffffffffffffffff1661178b611aa1565b73ffffffffffffffffffffffffffffffffffffffff16146117e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d89061459a565b60405180910390fd5b80600b90805190602001906117f7929190613759565b5050565b6000601260029054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b2906144fa565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c906144da565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119846125a4565b73ffffffffffffffffffffffffffffffffffffffff166119a2611aa1565b73ffffffffffffffffffffffffffffffffffffffff16146119f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ef9061459a565b60405180910390fd5b611a0260006129bd565b565b611a0c6125a4565b73ffffffffffffffffffffffffffffffffffffffff16611a2a611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a779061459a565b60405180910390fd5b8060108190555050565b6000601260009054906101000a900460ff16905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ada906149af565b80601f0160208091040260200160405190810160405280929190818152602001828054611b06906149af565b8015611b535780601f10611b2857610100808354040283529160200191611b53565b820191906000526020600020905b815481529060010190602001808311611b3657829003601f168201915b5050505050905090565b601260019054906101000a900460ff1615611b7757600080fd5b6000611b81610ebf565b9050611b8b611aa1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d0757601260009054906101000a900460ff1615611cb65760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c9061443a565b60405180910390fd5b6010548282611c7491906147e4565b1115611cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cac9061451a565b60405180910390fd5b5b81600d54611cc4919061486b565b341015611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd9061447a565b60405180910390fd5b5b60008211611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d41906143da565b60405180910390fd5b600f54821115611d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d869061465a565b60405180910390fd5b600e548282611d9e91906147e4565b1115611ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd69061445a565b60405180910390fd5b6000600190505b828111611e1557611e02338284611dfd91906147e4565b61299f565b8080611e0d90614a12565b915050611de6565b505050565b611e2c611e256125a4565b8383612a83565b5050565b611e41611e3b6125a4565b83612665565b611e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e779061461a565b60405180910390fd5b611e8c84848484612bf0565b50505050565b611e9a6125a4565b73ffffffffffffffffffffffffffffffffffffffff16611eb8611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614611f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f059061459a565b60405180910390fd5b80600f8190555050565b611f206125a4565b73ffffffffffffffffffffffffffffffffffffffff16611f3e611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614611f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8b9061459a565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b600c8054611fbe906149af565b80601f0160208091040260200160405190810160405280929190818152602001828054611fea906149af565b80156120375780601f1061200c57610100808354040283529160200191612037565b820191906000526020600020905b81548152906001019060200180831161201a57829003601f168201915b505050505081565b606061204a82612538565b612089576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612080906145da565b60405180910390fd5b60001515601260029054906101000a900460ff161515141561213757601380546120b2906149af565b80601f01602080910402602001604051908101604052809291908181526020018280546120de906149af565b801561212b5780601f106121005761010080835404028352916020019161212b565b820191906000526020600020905b81548152906001019060200180831161210e57829003601f168201915b50505050509050612193565b6000612141612c4c565b90506000815111612161576040518060200160405280600081525061218f565b8061216b84612cde565b600c60405160200161217f9392919061424e565b6040516020818303038152906040525b9150505b919050565b600e5481565b6121a66125a4565b73ffffffffffffffffffffffffffffffffffffffff166121c4611aa1565b73ffffffffffffffffffffffffffffffffffffffff161461221a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122119061459a565b60405180910390fd5b80600c9080519060200190612230929190613759565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122d06125a4565b73ffffffffffffffffffffffffffffffffffffffff166122ee611aa1565b73ffffffffffffffffffffffffffffffffffffffff1614612344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233b9061459a565b60405180910390fd5b806013908051906020019061235a929190613759565b5050565b6123666125a4565b73ffffffffffffffffffffffffffffffffffffffff16612384611aa1565b73ffffffffffffffffffffffffffffffffffffffff16146123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d19061459a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561244a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124419061439a565b60405180910390fd5b612453816129bd565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061252157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612531575061253082612e8b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661261f83611812565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061267082612538565b6126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a69061449a565b60405180910390fd5b60006126ba83611812565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061272957508373ffffffffffffffffffffffffffffffffffffffff1661271184610b69565b73ffffffffffffffffffffffffffffffffffffffff16145b8061273a57506127398185612234565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661276382611812565b73ffffffffffffffffffffffffffffffffffffffff16146127b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b0906145ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612829576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612820906143fa565b60405180910390fd5b612834838383612ef5565b61283f6000826125ac565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461288f91906148c5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128e691906147e4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6129b9828260405180602001604052806000815250613009565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae99061441a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612be3919061431d565b60405180910390a3505050565b612bfb848484612743565b612c0784848484613064565b612c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3d9061437a565b60405180910390fd5b50505050565b6060600b8054612c5b906149af565b80601f0160208091040260200160405190810160405280929190818152602001828054612c87906149af565b8015612cd45780601f10612ca957610100808354040283529160200191612cd4565b820191906000526020600020905b815481529060010190602001808311612cb757829003601f168201915b5050505050905090565b60606000821415612d26576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e86565b600082905060005b60008214612d58578080612d4190614a12565b915050600a82612d51919061483a565b9150612d2e565b60008167ffffffffffffffff811115612d9a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612dcc5781602001600182028036833780820191505090505b5090505b60008514612e7f57600182612de591906148c5565b9150600a85612df49190614a5b565b6030612e0091906147e4565b60f81b818381518110612e3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e78919061483a565b9450612dd0565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f008383836131fb565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f4357612f3e81613200565b612f82565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f8157612f808382613249565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fc557612fc0816133b6565b613004565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130035761300282826134f9565b5b5b505050565b6130138383613578565b6130206000848484613064565b61305f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130569061437a565b60405180910390fd5b505050565b60006130858473ffffffffffffffffffffffffffffffffffffffff16613746565b156131ee578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130ae6125a4565b8786866040518563ffffffff1660e01b81526004016130d094939291906142af565b602060405180830381600087803b1580156130ea57600080fd5b505af192505050801561311b57506040513d601f19601f820116820180604052508101906131189190613c59565b60015b61319e573d806000811461314b576040519150601f19603f3d011682016040523d82523d6000602084013e613150565b606091505b50600081511415613196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318d9061437a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131f3565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613256846118c4565b61326091906148c5565b9050600060076000848152602001908152602001600020549050818114613345576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133ca91906148c5565b9050600060096000848152602001908152602001600020549050600060088381548110613420577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613468577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806134dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613504836118c4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135df9061455a565b60405180910390fd5b6135f181612538565b15613631576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613628906143ba565b60405180910390fd5b61363d60008383612ef5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461368d91906147e4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613765906149af565b90600052602060002090601f01602090048101928261378757600085556137ce565b82601f106137a057805160ff19168380011785556137ce565b828001600101855582156137ce579182015b828111156137cd5782518255916020019190600101906137b2565b5b5090506137db91906137df565b5090565b5b808211156137f85760008160009055506001016137e0565b5090565b600061380f61380a846146ba565b614695565b9050808382526020820190508285602086028201111561382e57600080fd5b60005b8581101561385e578161384488826138e4565b845260208401935060208301925050600181019050613831565b5050509392505050565b600061387b613876846146e6565b614695565b90508281526020810184848401111561389357600080fd5b61389e84828561496d565b509392505050565b60006138b96138b484614717565b614695565b9050828152602081018484840111156138d157600080fd5b6138dc84828561496d565b509392505050565b6000813590506138f381615197565b92915050565b600082601f83011261390a57600080fd5b813561391a8482602086016137fc565b91505092915050565b600081359050613932816151ae565b92915050565b600081359050613947816151c5565b92915050565b60008151905061395c816151c5565b92915050565b600082601f83011261397357600080fd5b8135613983848260208601613868565b91505092915050565b600082601f83011261399d57600080fd5b81356139ad8482602086016138a6565b91505092915050565b6000813590506139c5816151dc565b92915050565b6000602082840312156139dd57600080fd5b60006139eb848285016138e4565b91505092915050565b60008060408385031215613a0757600080fd5b6000613a15858286016138e4565b9250506020613a26858286016138e4565b9150509250929050565b600080600060608486031215613a4557600080fd5b6000613a53868287016138e4565b9350506020613a64868287016138e4565b9250506040613a75868287016139b6565b9150509250925092565b60008060008060808587031215613a9557600080fd5b6000613aa3878288016138e4565b9450506020613ab4878288016138e4565b9350506040613ac5878288016139b6565b925050606085013567ffffffffffffffff811115613ae257600080fd5b613aee87828801613962565b91505092959194509250565b60008060408385031215613b0d57600080fd5b6000613b1b858286016138e4565b9250506020613b2c85828601613923565b9150509250929050565b60008060408385031215613b4957600080fd5b6000613b57858286016138e4565b9250506020613b68858286016139b6565b9150509250929050565b600060208284031215613b8457600080fd5b600082013567ffffffffffffffff811115613b9e57600080fd5b613baa848285016138f9565b91505092915050565b60008060408385031215613bc657600080fd5b600083013567ffffffffffffffff811115613be057600080fd5b613bec858286016138f9565b9250506020613bfd85828601613923565b9150509250929050565b600060208284031215613c1957600080fd5b6000613c2784828501613923565b91505092915050565b600060208284031215613c4257600080fd5b6000613c5084828501613938565b91505092915050565b600060208284031215613c6b57600080fd5b6000613c798482850161394d565b91505092915050565b600060208284031215613c9457600080fd5b600082013567ffffffffffffffff811115613cae57600080fd5b613cba8482850161398c565b91505092915050565b600060208284031215613cd557600080fd5b6000613ce3848285016139b6565b91505092915050565b6000613cf88383614230565b60208301905092915050565b613d0d816148f9565b82525050565b6000613d1e8261476d565b613d28818561479b565b9350613d3383614748565b8060005b83811015613d64578151613d4b8882613cec565b9750613d568361478e565b925050600181019050613d37565b5085935050505092915050565b613d7a8161490b565b82525050565b6000613d8b82614778565b613d9581856147ac565b9350613da581856020860161497c565b613dae81614b48565b840191505092915050565b6000613dc482614783565b613dce81856147c8565b9350613dde81856020860161497c565b613de781614b48565b840191505092915050565b6000613dfd82614783565b613e0781856147d9565b9350613e1781856020860161497c565b80840191505092915050565b60008154613e30816149af565b613e3a81866147d9565b94506001821660008114613e555760018114613e6657613e99565b60ff19831686528186019350613e99565b613e6f85614758565b60005b83811015613e9157815481890152600182019150602081019050613e72565b838801955050505b50505092915050565b6000613eaf602b836147c8565b9150613eba82614b59565b604082019050919050565b6000613ed26032836147c8565b9150613edd82614ba8565b604082019050919050565b6000613ef56026836147c8565b9150613f0082614bf7565b604082019050919050565b6000613f18601c836147c8565b9150613f2382614c46565b602082019050919050565b6000613f3b6013836147c8565b9150613f4682614c6f565b602082019050919050565b6000613f5e6024836147c8565b9150613f6982614c98565b604082019050919050565b6000613f816019836147c8565b9150613f8c82614ce7565b602082019050919050565b6000613fa4601a836147c8565b9150613faf82614d10565b602082019050919050565b6000613fc7600d836147c8565b9150613fd282614d39565b602082019050919050565b6000613fea6012836147c8565b9150613ff582614d62565b602082019050919050565b600061400d602c836147c8565b915061401882614d8b565b604082019050919050565b60006140306038836147c8565b915061403b82614dda565b604082019050919050565b6000614053602a836147c8565b915061405e82614e29565b604082019050919050565b60006140766029836147c8565b915061408182614e78565b604082019050919050565b60006140996010836147c8565b91506140a482614ec7565b602082019050919050565b60006140bc6010836147c8565b91506140c782614ef0565b602082019050919050565b60006140df6020836147c8565b91506140ea82614f19565b602082019050919050565b6000614102602c836147c8565b915061410d82614f42565b604082019050919050565b60006141256020836147c8565b915061413082614f91565b602082019050919050565b60006141486029836147c8565b915061415382614fba565b604082019050919050565b600061416b602f836147c8565b915061417682615009565b604082019050919050565b600061418e6021836147c8565b915061419982615058565b604082019050919050565b60006141b16000836147bd565b91506141bc826150a7565b600082019050919050565b60006141d46031836147c8565b91506141df826150aa565b604082019050919050565b60006141f7602c836147c8565b9150614202826150f9565b604082019050919050565b600061421a6028836147c8565b915061422582615148565b604082019050919050565b61423981614963565b82525050565b61424881614963565b82525050565b600061425a8286613df2565b91506142668285613df2565b91506142728284613e23565b9150819050949350505050565b600061428a826141a4565b9150819050919050565b60006020820190506142a96000830184613d04565b92915050565b60006080820190506142c46000830187613d04565b6142d16020830186613d04565b6142de604083018561423f565b81810360608301526142f08184613d80565b905095945050505050565b600060208201905081810360008301526143158184613d13565b905092915050565b60006020820190506143326000830184613d71565b92915050565b600060208201905081810360008301526143528184613db9565b905092915050565b6000602082019050818103600083015261437381613ea2565b9050919050565b6000602082019050818103600083015261439381613ec5565b9050919050565b600060208201905081810360008301526143b381613ee8565b9050919050565b600060208201905081810360008301526143d381613f0b565b9050919050565b600060208201905081810360008301526143f381613f2e565b9050919050565b6000602082019050818103600083015261441381613f51565b9050919050565b6000602082019050818103600083015261443381613f74565b9050919050565b6000602082019050818103600083015261445381613f97565b9050919050565b6000602082019050818103600083015261447381613fba565b9050919050565b6000602082019050818103600083015261449381613fdd565b9050919050565b600060208201905081810360008301526144b381614000565b9050919050565b600060208201905081810360008301526144d381614023565b9050919050565b600060208201905081810360008301526144f381614046565b9050919050565b6000602082019050818103600083015261451381614069565b9050919050565b600060208201905081810360008301526145338161408c565b9050919050565b60006020820190508181036000830152614553816140af565b9050919050565b60006020820190508181036000830152614573816140d2565b9050919050565b60006020820190508181036000830152614593816140f5565b9050919050565b600060208201905081810360008301526145b381614118565b9050919050565b600060208201905081810360008301526145d38161413b565b9050919050565b600060208201905081810360008301526145f38161415e565b9050919050565b6000602082019050818103600083015261461381614181565b9050919050565b60006020820190508181036000830152614633816141c7565b9050919050565b60006020820190508181036000830152614653816141ea565b9050919050565b600060208201905081810360008301526146738161420d565b9050919050565b600060208201905061468f600083018461423f565b92915050565b600061469f6146b0565b90506146ab82826149e1565b919050565b6000604051905090565b600067ffffffffffffffff8211156146d5576146d4614b19565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561470157614700614b19565b5b61470a82614b48565b9050602081019050919050565b600067ffffffffffffffff82111561473257614731614b19565b5b61473b82614b48565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006147ef82614963565b91506147fa83614963565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561482f5761482e614a8c565b5b828201905092915050565b600061484582614963565b915061485083614963565b9250826148605761485f614abb565b5b828204905092915050565b600061487682614963565b915061488183614963565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148ba576148b9614a8c565b5b828202905092915050565b60006148d082614963565b91506148db83614963565b9250828210156148ee576148ed614a8c565b5b828203905092915050565b600061490482614943565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561499a57808201518184015260208101905061497f565b838111156149a9576000848401525b50505050565b600060028204905060018216806149c757607f821691505b602082108114156149db576149da614aea565b5b50919050565b6149ea82614b48565b810181811067ffffffffffffffff82111715614a0957614a08614b19565b5b80604052505050565b6000614a1d82614963565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a5057614a4f614a8c565b5b600182019050919050565b6000614a6682614963565b9150614a7183614963565b925082614a8157614a80614abb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74206174206c656173742031204e465400000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f41646472657373206973206e6f742077686974656c6973746564000000000000600082015250565b7f53616c6520536f6c64204f757400000000000000000000000000000000000000600082015250565b7f4c657373207468656e206d696e20636f73740000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f50726573616c6520536f6c64204f757400000000000000000000000000000000600082015250565b7f416c72656164792072657665616c656400000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f596f752063616e206e6f74206d696e74206d6f7265207468616e206d61784d6960008201527f6e74416d6f756e74000000000000000000000000000000000000000000000000602082015250565b6151a0816148f9565b81146151ab57600080fd5b50565b6151b78161490b565b81146151c257600080fd5b50565b6151ce81614917565b81146151d957600080fd5b50565b6151e581614963565b81146151f057600080fd5b5056fea26469706673582212205ddc4418e934173fdc103c94cc291228897f71e8f1a1d26c96a88886f48ea81f64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012457870616e74756d204275696c64696e6773000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044558505400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d63527378634376743445435a4e4e4a7a506d424442774e42714351525557743766667a7057566a416b4e6d4500000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Expantum Buildings
Arg [1] : _symbol (string): EXPT
Arg [2] : _initNotRevealedUri (string): https://gateway.pinata.cloud/ipfs/QmcRsxcCvt4ECZNNJzPmBDBwNBqCQRUWt7ffzpWVjAkNmE

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 457870616e74756d204275696c64696e67730000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4558505400000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d63527378634376743445435a4e4e4a7a506d424442774e4271435152
Arg [10] : 5557743766667a7057566a416b4e6d4500000000000000000000000000000000


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.