ETH Price: $3,158.54 (+1.35%)
Gas: 1 Gwei

Token

XONE NFT (XONE)
 

Overview

Max Total Supply

3,431 XONE

Holders

917

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 XONE
0xd30e749c39dceea4b4988d05b000a6f278bd3dc6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

XONE is a parcel of land where can showcase your passions, achievements, real life and digital events visited and the digital assets you own.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
XoneNFT

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

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

import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/math/SafeMath.sol';
import '@openzeppelin/contracts/utils/Counters.sol';

contract XoneNFT is ERC721Enumerable, Ownable, ERC721Burnable {
  using SafeMath for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private _tokenIdTracker;

  mapping(uint256 => string) private _tokenURIs;

  string public baseTokenURI;

  event Minted(address sedner, uint256 tokenId);

  struct Plan {
    string name;
    bool isOpen;
    bool isWhiteListSale;
    uint256 createdAt;
    uint256 Max_Amount;
    uint256 minted_amount;
    uint256 whitelist_price;
    uint256 price;
    uint256 Max_Mint_Amount_Per_Address;
    uint256 team_amount;
    uint256 airdrop_amount;
    bool state; //
  }

  uint256 public Minimum_Price = 0.08 ether;
  uint256 public Max_Team_Perc_Every_Plan = 7;
  uint256 public Max_Airdrop_Perc_Every_Plan = 1;
  uint256 public Denominator = 100;

  mapping(string => mapping(address => uint256)) private mint_status;
  mapping(string => mapping(address => bool)) private whitelists;
  mapping(string => Plan) private plans;

  string public Current_Plan;

  address private _wallet1 = 0x9960d00ee6574fEb813f7e958514a3109991224B; // pre-sold 1.
  uint256 private _amount1 = 400;
  address private _wallet2 = 0x6ec95018056ee917ea87D3d2b34ad2348b111195; // pre-sold 2.
  uint256 private _amount2 = 300;
  address private _wallet3 = 0x2a9Da28bCbF97A8C008Fd211f5127b860613922D; // pre-sold 3.
  uint256 private _amount3 = 54;
  address private _teamWallet = 0xad2df8eB6A259f9dA33e2a56E4459E65eBFf832C; //

  event CreatedXoneNFT(address indexed _owner, uint256 indexed _id);

  constructor() ERC721('XONE NFT', 'XONE') {
    createPlan('Jan-2022', false, false, 2500, 0.1 ether, 0.08 ether, 2, 154, 10);
  }

  function setWhiteLists(
    address[] memory _addresses,
    string memory _plan,
    bool _isWhiteListed
  ) public onlyOwner {
    for (uint256 i = 0; i < _addresses.length; i++) {
      whitelists[_plan][_addresses[i]] = _isWhiteListed;
    }
  }

  function createPlan(
    string memory _plan,
    bool _isOpen,
    bool _isWhiteListSale,
    uint256 _max_amount,
    uint256 _price,
    uint256 _whitelist_price,
    uint256 _max_mint_amount_per_address,
    uint256 _team_amount,
    uint256 _airdrop_amount
  ) public onlyOwner {
    require(plans[_plan].state == false, 'XONE: Plan is already existed');
    require(_price >= Minimum_Price, "XONE: price can't be lower than minimum price");
    require(_whitelist_price >= Minimum_Price, "XONE: whitelist price can't be lower than minimum price");
    require(_max_amount >= 1);
    require(_max_mint_amount_per_address >= 1);
    require(
      (_team_amount.mul(Denominator)).div(_max_amount) <= Max_Team_Perc_Every_Plan,
      'XONE: Limit max team amount error'
    );
    require(
      (_airdrop_amount.mul(Denominator)).div(_max_amount) <= Max_Airdrop_Perc_Every_Plan,
      'XONE: Limit max airdrop amount error'
    );

    Plan storage plan = plans[_plan];
    plan.name = _plan;
    plan.isOpen = _isOpen;
    plan.isWhiteListSale = _isWhiteListSale;
    plan.price = _price;
    plan.whitelist_price = _whitelist_price;
    plan.Max_Amount = _max_amount;
    plan.createdAt = block.timestamp;
    plan.state = true;
    plan.team_amount = _team_amount;
    plan.airdrop_amount = _airdrop_amount;
    plan.Max_Mint_Amount_Per_Address = _max_mint_amount_per_address;

    Current_Plan = _plan;
  }

  function updatePlanState(
    string memory _plan,
    bool _isOpen,
    bool _isWhiteListSale,
    uint256 _max_mint_amount_per_address
  ) public onlyOwner {
    require(plans[_plan].state == true, 'XONE: Plan is not existed');
    require(_max_mint_amount_per_address >= 1);
    Plan storage plan = plans[_plan];
    if (plan.isOpen != _isOpen) {
      plan.isOpen = _isOpen;
    }
    if (plan.isWhiteListSale != _isWhiteListSale) {
      plan.isWhiteListSale = _isWhiteListSale;
    }
    plan.Max_Mint_Amount_Per_Address = _max_mint_amount_per_address;
  }

  function isWhiteListed(address _address, string memory _plan) public view returns (bool) {
    return whitelists[_plan][_address];
  }

  function _totalSupply() internal view returns (uint256) {
    return _tokenIdTracker.current();
  }

  function mint(
    address _to,
    uint256 _amount,
    string memory _plan
  ) public payable returns (uint256[] memory) {
    require(plans[_plan].state, 'XONE: Invalid Plan');
    require(_amount > 0, 'XONE: minimum mint is 1');
    if (_msgSender() != owner()) {
      require(plans[_plan].isOpen, 'XONE: This plan is not open');
    }
    if (_msgSender() != owner() && plans[_plan].isWhiteListSale) {
      require(whitelists[_plan][_to], 'XONE: This plan is whitelist sale and your address is not whitelisted');
    }
    require((plans[_plan].minted_amount).add(_amount) <= plans[_plan].Max_Amount, 'XONE: Exceed Plan Max limit');
    require(
      (mint_status[_plan][_to]).add(_amount) <= plans[_plan].Max_Mint_Amount_Per_Address,
      'XONE: Exceed Max Per Mint limit'
    );
    require(msg.value >= prices(_amount, _plan, plans[_plan].isWhiteListSale), 'XONE: Value Below Price');

    Plan storage plan = plans[_plan];
    plan.minted_amount = (plan.minted_amount).add(_amount);
    mint_status[_plan][_to] = (mint_status[_plan][_to]).add(_amount);
    uint256[] memory ids = new uint256[](_amount);
    for (uint256 i = 0; i < _amount; i++) {
      ids[i] = _mintAnElement(_to);
    }
    return ids;
  }

  function _mintAnElement(address _to) private returns (uint256) {
    uint256 id = _totalSupply();
    _tokenIdTracker.increment();
    _safeMint(_to, id);
    emit Minted(_to, id);
    return id;
  }

  function _mintForBulk(address _to) private {
    uint256 id = _totalSupply();
    _tokenIdTracker.increment();
    _safeMint(_to, id);
    emit Minted(_to, id);
  }

  function mintTeam(uint256 _amount, string memory _plan) external onlyOwner {
    // _amount: because of gasLiimit
    require(_amount > 0);
    require(_amount <= plans[_plan].team_amount);
    require((plans[_plan].minted_amount).add(_amount) <= plans[_plan].Max_Amount, 'XONE: Exceed Plan Max limit');

    Plan storage plan = plans[_plan];
    plan.minted_amount = (plan.minted_amount).add(_amount);
    plan.team_amount = plan.team_amount.sub(_amount);

    for (uint256 i = 0; i < _amount; i++) {
      _mintForBulk(_teamWallet);
    }
  }

  function mintWallet1(uint256 _amount) external onlyOwner {
    require(_amount > 0);
    require(_amount <= _amount1);
    require(
      (plans['Jan-2022'].minted_amount).add(_amount) <= plans['Jan-2022'].Max_Amount,
      'XONE: Exceed Plan Max limit'
    );

    Plan storage plan = plans['Jan-2022'];
    plan.minted_amount = (plan.minted_amount).add(_amount);
    _amount1 = _amount1.sub(_amount);

    for (uint256 i = 0; i < _amount; i++) {
      _mintForBulk(_wallet1);
    }
  }

  function mintWallet2(uint256 _amount) external onlyOwner {
    require(_amount > 0);
    require(_amount <= _amount2);
    require(
      (plans['Jan-2022'].minted_amount).add(_amount) <= plans['Jan-2022'].Max_Amount,
      'XONE: Exceed Plan Max limit'
    );

    Plan storage plan = plans['Jan-2022'];
    plan.minted_amount = (plan.minted_amount).add(_amount);
    _amount2 = _amount2.sub(_amount);

    for (uint256 i = 0; i < _amount; i++) {
      _mintForBulk(_wallet2);
    }
  }

  function mintWallet3(uint256 _amount) external onlyOwner {
    require(_amount > 0);
    require(_amount <= _amount3);
    require(
      (plans['Jan-2022'].minted_amount).add(_amount) <= plans['Jan-2022'].Max_Amount,
      'XONE: Exceed Plan Max limit'
    );

    Plan storage plan = plans['Jan-2022'];
    plan.minted_amount = (plan.minted_amount).add(_amount);
    _amount3 = _amount3.sub(_amount);

    for (uint256 i = 0; i < _amount; i++) {
      _mintForBulk(_wallet3);
    }
  }

  function prices(
    uint256 _count,
    string memory _plan,
    bool _isWhiteListSale
  ) internal view returns (uint256) {
    if (_isWhiteListSale) return ((plans[_plan].whitelist_price).mul(_count));
    return ((plans[_plan].price).mul(_count));
  }

  function tokenIdsOfOwner(address _owner) external view returns (uint256[] memory) {
    uint256 tokenCount = balanceOf(_owner);

    uint256[] memory tokenIds = new uint256[](tokenCount);
    for (uint256 i = 0; i < tokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }

    return tokenIds;
  }

  function withdrawETH(address to, uint256 amount) public onlyOwner {
    uint256 balance = address(this).balance;
    require(balance > 0);
    if (amount <= balance) {
      _widthdraw(to, amount);
    } else {
      _widthdraw(to, balance);
    }
  }

  function _widthdraw(address _address, uint256 _amount) private {
    (bool success, ) = _address.call{value: _amount}('');
    require(success, 'Transfer failed.');
  }

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

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

  function tokenURI(uint256 tokenId) public view virtual override(ERC721) returns (string memory) {
    require(_exists(tokenId), 'ERC721URIStorage: URI query for nonexistent token');
    string memory _tokenURI = _tokenURIs[tokenId];
    string memory base = _baseURI();

    // If there is no base URI, return the token URI.
    if (bytes(base).length == 0) {
      return _tokenURI;
    }
    // If there is _tokenURI, return the token URI.
    if (bytes(_tokenURI).length > 0) {
      return _tokenURI;
    }
    return super.tokenURI(tokenId);
  }

  function _burn(uint256 tokenId) internal virtual override(ERC721) {
    super._burn(tokenId);
    if (bytes(_tokenURIs[tokenId]).length != 0) {
      delete _tokenURIs[tokenId];
    }
  }

  function updateCurrentPlan(string memory _plan) public onlyOwner {
    require(plans[_plan].state, "XONE: can't update to invalid plan");
    Current_Plan = _plan;
  }

  function planInfo(string memory _plan) public view returns (Plan memory) {
    return plans[_plan];
  }

  function airdrop(
    string memory _plan,
    uint256 _amount,
    address[] memory _addresses
  ) public onlyOwner {
    require(plans[_plan].state == true, 'XONE: Plan is not existed');
    require(_amount > 0);
    require(_addresses.length == _amount);
    require(_amount <= plans[_plan].airdrop_amount);

    Plan storage plan = plans[_plan];
    plan.airdrop_amount = plan.airdrop_amount.sub(_amount);

    for (uint256 i = 0; i < _amount; i++) {
      _mintForBulk(_addresses[i]);
    }
  }

  function airdropGiftMode(
    string memory _plan,
    uint256 _amount,
    address[] memory _addresses,
    string[] memory _tokenUris
  ) public onlyOwner {
    require(plans[_plan].state == true, 'XONE: Plan is not existed');
    require(_amount > 0);
    require(_addresses.length == _amount);
    require(_addresses.length == _tokenUris.length);
    require(_amount <= plans[_plan].airdrop_amount);

    Plan storage plan = plans[_plan];
    plan.airdrop_amount = plan.airdrop_amount.sub(_amount);

    for (uint256 i = 0; i < _amount; i++) {
      uint256 id = _totalSupply();
      _tokenIdTracker.increment();
      _safeMint(_addresses[i], id);
      _setTokenURI(id,_tokenUris[i]);
      emit Minted(_addresses[i], id);
    }
  }

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

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

  function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal {
    require(_exists(tokenId), 'ERC721URIStorage: URI set of nonexistent token');
    _tokenURIs[tokenId] = _tokenURI;
  }
}

File 2 of 16 : 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 3 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 5 of 16 : 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 6 of 16 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 8 of 16 : 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 9 of 16 : 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 10 of 16 : 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 11 of 16 : 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 12 of 16 : 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 13 of 16 : 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 14 of 16 : 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 15 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 16 of 16 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"_owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"CreatedXoneNFT","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sedner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Current_Plan","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Denominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Max_Airdrop_Perc_Every_Plan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Max_Team_Perc_Every_Plan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Minimum_Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_plan","type":"string"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_plan","type":"string"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"string[]","name":"_tokenUris","type":"string[]"}],"name":"airdropGiftMode","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_plan","type":"string"},{"internalType":"bool","name":"_isOpen","type":"bool"},{"internalType":"bool","name":"_isWhiteListSale","type":"bool"},{"internalType":"uint256","name":"_max_amount","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_whitelist_price","type":"uint256"},{"internalType":"uint256","name":"_max_mint_amount_per_address","type":"uint256"},{"internalType":"uint256","name":"_team_amount","type":"uint256"},{"internalType":"uint256","name":"_airdrop_amount","type":"uint256"}],"name":"createPlan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"string","name":"_plan","type":"string"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"string","name":"_plan","type":"string"}],"name":"mint","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"string","name":"_plan","type":"string"}],"name":"mintTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintWallet1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintWallet2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintWallet3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","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":"string","name":"_plan","type":"string"}],"name":"planInfo","outputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"bool","name":"isOpen","type":"bool"},{"internalType":"bool","name":"isWhiteListSale","type":"bool"},{"internalType":"uint256","name":"createdAt","type":"uint256"},{"internalType":"uint256","name":"Max_Amount","type":"uint256"},{"internalType":"uint256","name":"minted_amount","type":"uint256"},{"internalType":"uint256","name":"whitelist_price","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"Max_Mint_Amount_Per_Address","type":"uint256"},{"internalType":"uint256","name":"team_amount","type":"uint256"},{"internalType":"uint256","name":"airdrop_amount","type":"uint256"},{"internalType":"bool","name":"state","type":"bool"}],"internalType":"struct XoneNFT.Plan","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"string","name":"_plan","type":"string"},{"internalType":"bool","name":"_isWhiteListed","type":"bool"}],"name":"setWhiteLists","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"}],"name":"tokenIdsOfOwner","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":"string","name":"_plan","type":"string"}],"name":"updateCurrentPlan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_plan","type":"string"},{"internalType":"bool","name":"_isOpen","type":"bool"},{"internalType":"bool","name":"_isWhiteListSale","type":"bool"},{"internalType":"uint256","name":"_max_mint_amount_per_address","type":"uint256"}],"name":"updatePlanState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267011c37937e080000600e556007600f5560016010556064601155601680546001600160a01b0319908116739960d00ee6574feb813f7e958514a3109991224b17909155610190601755601880548216736ec95018056ee917ea87d3d2b34ad2348b11119517905561012c601955601a80548216732a9da28bcbf97a8c008fd211f5127b860613922d1790556036601b55601c805490911673ad2df8eb6a259f9da33e2a56e4459e65ebff832c179055348015620000c157600080fd5b5060408051808201825260088152671613d3914813919560c21b602080830191825283518085019094526004845263584f4e4560e01b9084015281519192916200010e9160009162000474565b5080516200012490600190602084019062000474565b505050620001416200013b6200018f60201b60201c565b62000193565b6040805180820190915260088152672530b7169918191960c11b602082015262000189906000806109c467016345785d8a000067011c37937e0800006002609a600a620001e5565b6200077b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001ef6200018f565b6001600160a01b03166200020262000442565b6001600160a01b031614620002345760405162461bcd60e51b81526004016200022b906200066f565b60405180910390fd5b6014896040516200024691906200051a565b908152604051908190036020019020600a015460ff16156200027c5760405162461bcd60e51b81526004016200022b9062000638565b600e54851015620002a15760405162461bcd60e51b81526004016200022b90620006a4565b600e54841015620002c65760405162461bcd60e51b81526004016200022b90620005db565b6001861015620002d557600080fd5b6001831015620002e457600080fd5b600f546200031c8762000308601154866200045160201b620021881790919060201c565b6200046660201b620021941790919060201c565b11156200033d5760405162461bcd60e51b81526004016200022b9062000556565b601054620003618762000308601154856200045160201b620021881790919060201c565b1115620003825760405162461bcd60e51b81526004016200022b9062000597565b600060148a6040516200039691906200051a565b9081526020016040518091039020905089816000019080519060200190620003c092919062000474565b50600180820180548a15156101000261ff00198d151560ff19938416171617909155600683018890556005830187905560038301899055426002840155600a8301805490911690911790556008810183905560098101829055600781018490558951620004359060159060208d019062000474565b5050505050505050505050565b600a546001600160a01b031690565b60006200045f828462000712565b9392505050565b60006200045f8284620006f1565b82805462000482906200073e565b90600052602060002090601f016020900481019282620004a65760008555620004f1565b82601f10620004c157805160ff1916838001178555620004f1565b82800160010185558215620004f1579182015b82811115620004f1578251825591602001919060010190620004d4565b50620004ff92915062000503565b5090565b5b80821115620004ff576000815560010162000504565b60008251815b818110156200053c576020818601810151858301520162000520565b818111156200054b5782828501525b509190910192915050565b60208082526021908201527f584f4e453a204c696d6974206d6178207465616d20616d6f756e74206572726f6040820152603960f91b606082015260800190565b60208082526024908201527f584f4e453a204c696d6974206d61782061697264726f7020616d6f756e742065604082015263393937b960e11b606082015260800190565b60208082526037908201527f584f4e453a2077686974656c6973742070726963652063616e2774206265206c60408201527f6f776572207468616e206d696e696d756d207072696365000000000000000000606082015260800190565b6020808252601d908201527f584f4e453a20506c616e20697320616c72656164792065786973746564000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602d908201527f584f4e453a2070726963652063616e2774206265206c6f776572207468616e2060408201526c6d696e696d756d20707269636560981b606082015260800190565b6000826200070d57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156200073957634e487b7160e01b81526011600452602481fd5b500290565b6002810460018216806200075357607f821691505b602082108114156200077557634e487b7160e01b600052602260045260246000fd5b50919050565b614430806200078b6000396000f3fe6080604052600436106102515760003560e01c806382cbb21c11610139578063bc2f92bf116100b6578063d547cfb71161007a578063d547cfb7146106b4578063d7ec2497146106c9578063e985e9c5146106e9578063ebbb478f14610709578063f2fde38b14610729578063f7c277401461074957610251565b8063bc2f92bf14610637578063be4b72381461064c578063c87b56dd1461066c578063d1a557861461068c578063d3fc9864146106a157610251565b80639844a1f3116100fd5780639844a1f31461058a5780639e445d40146105aa5780639e59e598146105ca578063a22cb465146105f7578063b88d4fde1461061757610251565b806382cbb21c1461050b57806385b76cb31461052b5780638da5cb5b1461054b57806395d89b4114610560578063973d0f231461057557610251565b806342966c68116101d25780635deccf53116101965780635deccf53146104615780636352211e146104765780636b1db16a1461049657806370a08231146104b6578063715018a6146104d657806375e95862146104eb57610251565b806342966c68146103c15780634541c0d7146103e15780634782f779146104015780634f6ccce71461042157806355f804b31461044157610251565b80631e69ff34116102195780631e69ff341461031f57806323b872dd1461034c57806328f0a8291461036c5780632f745c591461038157806342842e0e146103a157610251565b806301ffc9a71461025657806306fdde031461028c578063081812fc146102ae578063095ea7b3146102db57806318160ddd146102fd575b600080fd5b34801561026257600080fd5b506102766102713660046133af565b610769565b60405161028391906137d2565b60405180910390f35b34801561029857600080fd5b506102a161077c565b60405161028391906137dd565b3480156102ba57600080fd5b506102ce6102c936600461364a565b61080e565b6040516102839190613724565b3480156102e757600080fd5b506102fb6102f63660046132c2565b61085a565b005b34801561030957600080fd5b506103126108f2565b6040516102839190614255565b34801561032b57600080fd5b5061033f61033a3660046133e7565b6108f8565b604051610283919061418f565b34801561035857600080fd5b506102fb61036736600461319b565b610a48565b34801561037857600080fd5b50610312610a80565b34801561038d57600080fd5b5061031261039c3660046132c2565b610a86565b3480156103ad57600080fd5b506102fb6103bc36600461319b565b610ad8565b3480156103cd57600080fd5b506102fb6103dc36600461364a565b610af3565b3480156103ed57600080fd5b506102fb6103fc36600461350f565b610b26565b34801561040d57600080fd5b506102fb61041c3660046132c2565b610c86565b34801561042d57600080fd5b5061031261043c36600461364a565b610cf0565b34801561044d57600080fd5b506102fb61045c3660046133e7565b610d4b565b34801561046d57600080fd5b506102a1610da1565b34801561048257600080fd5b506102ce61049136600461364a565b610e2f565b3480156104a257600080fd5b506102766104b1366004613277565b610e64565b3480156104c257600080fd5b506103126104d136600461314f565b610ea8565b3480156104e257600080fd5b506102fb610eec565b3480156104f757600080fd5b506102fb610506366004613662565b610f37565b34801561051757600080fd5b506102fb61052636600461364a565b6110a8565b34801561053757600080fd5b506102fb61054636600461364a565b6111d1565b34801561055757600080fd5b506102ce6112fa565b34801561056c57600080fd5b506102a1611309565b34801561058157600080fd5b50610312611318565b34801561059657600080fd5b506102fb6105a536600461356e565b61131e565b3480156105b657600080fd5b506102fb6105c53660046133e7565b611536565b3480156105d657600080fd5b506105ea6105e536600461314f565b6115ca565b604051610283919061378e565b34801561060357600080fd5b506102fb61061236600461324e565b611687565b34801561062357600080fd5b506102fb6106323660046131d6565b611699565b34801561064357600080fd5b506103126116d2565b34801561065857600080fd5b506102fb610667366004613419565b6116d8565b34801561067857600080fd5b506102a161068736600461364a565b6117ea565b34801561069857600080fd5b506103126118e8565b6105ea6106af3660046132eb565b6118ee565b3480156106c057600080fd5b506102a1611cd0565b3480156106d557600080fd5b506102fb6106e436600461364a565b611cdd565b3480156106f557600080fd5b50610276610704366004613169565b611e06565b34801561071557600080fd5b506102fb61072436600461347c565b611e34565b34801561073557600080fd5b506102fb61074436600461314f565b61204a565b34801561075557600080fd5b506102fb61076436600461333f565b6120b8565b6000610774826121a0565b90505b919050565b60606000805461078b90614338565b80601f01602080910402602001604051908101604052809291908181526020018280546107b790614338565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b6000610819826121c5565b61083e5760405162461bcd60e51b815260040161083590613dc1565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061086582610e2f565b9050806001600160a01b0316836001600160a01b031614156108995760405162461bcd60e51b815260040161083590613f27565b806001600160a01b03166108ab6121e2565b6001600160a01b031614806108c757506108c7816107046121e2565b6108e35760405162461bcd60e51b815260040161083590613bc6565b6108ed83836121e6565b505050565b60085490565b610900612f07565b60148260405161091091906136c2565b90815260200160405180910390206040518061018001604052908160008201805461093a90614338565b80601f016020809104026020016040519081016040528092919081815260200182805461096690614338565b80156109b35780601f10610988576101008083540402835291602001916109b3565b820191906000526020600020905b81548152906001019060200180831161099657829003601f168201915b5050509183525050600182015460ff80821615156020840152610100918290048116151560408401526002840154606084015260038401546080840152600484015460a0840152600584015460c0840152600684015460e084015260078401549183019190915260088301546101208301526009830154610140830152600a9092015490911615156101609091015292915050565b610a59610a536121e2565b82612254565b610a755760405162461bcd60e51b815260040161083590613fc9565b6108ed8383836122d1565b60115481565b6000610a9183610ea8565b8210610aaf5760405162461bcd60e51b81526004016108359061389f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108ed83838360405180602001604052806000815250611699565b610afe610a536121e2565b610b1a5760405162461bcd60e51b8152600401610835906140d4565b610b23816123fe565b50565b610b2e6121e2565b6001600160a01b0316610b3f6112fa565b6001600160a01b031614610b655760405162461bcd60e51b815260040161083590613e0d565b601483604051610b7591906136c2565b908152604051908190036020019020600a015460ff161515600114610bac5760405162461bcd60e51b8152600401610835906139b9565b60008211610bb957600080fd5b81815114610bc657600080fd5b601483604051610bd691906136c2565b908152602001604051809103902060090154821115610bf457600080fd5b6000601484604051610c0691906136c2565b90815260200160405180910390209050610c2d83826009015461243e90919063ffffffff16565b600982015560005b83811015610c7f57610c6d838281518110610c6057634e487b7160e01b600052603260045260246000fd5b602002602001015161244a565b80610c7781614373565b915050610c35565b5050505050565b610c8e6121e2565b6001600160a01b0316610c9f6112fa565b6001600160a01b031614610cc55760405162461bcd60e51b815260040161083590613e0d565b4780610cd057600080fd5b808211610ce657610ce183836124a7565b6108ed565b6108ed83826124a7565b6000610cfa6108f2565b8210610d185760405162461bcd60e51b81526004016108359061401a565b60088281548110610d3957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610d536121e2565b6001600160a01b0316610d646112fa565b6001600160a01b031614610d8a5760405162461bcd60e51b815260040161083590613e0d565b8051610d9d90600d906020840190612f6e565b5050565b60158054610dae90614338565b80601f0160208091040260200160405190810160405280929190818152602001828054610dda90614338565b8015610e275780601f10610dfc57610100808354040283529160200191610e27565b820191906000526020600020905b815481529060010190602001808311610e0a57829003601f168201915b505050505081565b6000818152600260205260408120546001600160a01b0316806107745760405162461bcd60e51b815260040161083590613c6d565b6000601382604051610e7691906136c2565b908152604080519182900360209081019092206001600160a01b0386166000908152925290205460ff16905092915050565b60006001600160a01b038216610ed05760405162461bcd60e51b815260040161083590613c23565b506001600160a01b031660009081526003602052604090205490565b610ef46121e2565b6001600160a01b0316610f056112fa565b6001600160a01b031614610f2b5760405162461bcd60e51b815260040161083590613e0d565b610f356000612523565b565b610f3f6121e2565b6001600160a01b0316610f506112fa565b6001600160a01b031614610f765760405162461bcd60e51b815260040161083590613e0d565b60008211610f8357600080fd5b601481604051610f9391906136c2565b908152602001604051809103902060080154821115610fb157600080fd5b601481604051610fc191906136c2565b90815260200160405180910390206003015461100083601484604051610fe791906136c2565b9081526040519081900360200190206004015490612575565b111561101e5760405162461bcd60e51b815260040161083590613b8f565b600060148260405161103091906136c2565b9081526020016040518091039020905061105783826004015461257590919063ffffffff16565b6004820155600881015461106b908461243e565b600882015560005b838110156110a257601c54611090906001600160a01b031661244a565b8061109a81614373565b915050611073565b50505050565b6110b06121e2565b6001600160a01b03166110c16112fa565b6001600160a01b0316146110e75760405162461bcd60e51b815260040161083590613e0d565b600081116110f457600080fd5b60195481111561110357600080fd5b60146040516111119061370d565b908152602001604051809103902060030154611135826014604051610fe79061370d565b11156111535760405162461bcd60e51b815260040161083590613b8f565b600060146040516111639061370d565b9081526020016040518091039020905061118a82826004015461257590919063ffffffff16565b600482015560195461119c908361243e565b60195560005b828110156108ed576018546111bf906001600160a01b031661244a565b806111c981614373565b9150506111a2565b6111d96121e2565b6001600160a01b03166111ea6112fa565b6001600160a01b0316146112105760405162461bcd60e51b815260040161083590613e0d565b6000811161121d57600080fd5b60175481111561122c57600080fd5b601460405161123a9061370d565b90815260200160405180910390206003015461125e826014604051610fe79061370d565b111561127c5760405162461bcd60e51b815260040161083590613b8f565b6000601460405161128c9061370d565b908152602001604051809103902090506112b382826004015461257590919063ffffffff16565b60048201556017546112c5908361243e565b60175560005b828110156108ed576016546112e8906001600160a01b031661244a565b806112f281614373565b9150506112cb565b600a546001600160a01b031690565b60606001805461078b90614338565b60105481565b6113266121e2565b6001600160a01b03166113376112fa565b6001600160a01b03161461135d5760405162461bcd60e51b815260040161083590613e0d565b60148460405161136d91906136c2565b908152604051908190036020019020600a015460ff1615156001146113a45760405162461bcd60e51b8152600401610835906139b9565b600083116113b157600080fd5b828251146113be57600080fd5b80518251146113cc57600080fd5b6014846040516113dc91906136c2565b9081526020016040518091039020600901548311156113fa57600080fd5b600060148560405161140c91906136c2565b9081526020016040518091039020905061143384826009015461243e90919063ffffffff16565b600982015560005b8481101561152e57600061144d612581565b9050611459600b612592565b61148a85838151811061147c57634e487b7160e01b600052603260045260246000fd5b60200260200101518261259b565b6114bb818584815181106114ae57634e487b7160e01b600052603260045260246000fd5b60200260200101516125b5565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe8583815181106114fc57634e487b7160e01b600052603260045260246000fd5b602002602001015182604051611513929190613775565b60405180910390a1508061152681614373565b91505061143b565b505050505050565b61153e6121e2565b6001600160a01b031661154f6112fa565b6001600160a01b0316146115755760405162461bcd60e51b815260040161083590613e0d565b60148160405161158591906136c2565b908152604051908190036020019020600a015460ff166115b75760405162461bcd60e51b815260040161083590613831565b8051610d9d906015906020840190612f6e565b606060006115d783610ea8565b90506000816001600160401b0381111561160157634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561162a578160200160208202803683370190505b50905060005b8281101561167f576116428582610a86565b82828151811061166257634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061167781614373565b915050611630565b509392505050565b610d9d6116926121e2565b83836125f9565b6116aa6116a46121e2565b83612254565b6116c65760405162461bcd60e51b815260040161083590613fc9565b6110a28484848461269c565b600e5481565b6116e06121e2565b6001600160a01b03166116f16112fa565b6001600160a01b0316146117175760405162461bcd60e51b815260040161083590613e0d565b60148460405161172791906136c2565b908152604051908190036020019020600a015460ff16151560011461175e5760405162461bcd60e51b8152600401610835906139b9565b600181101561176c57600080fd5b600060148560405161177e91906136c2565b908152604051908190036020019020600181015490915060ff161515841515146117b35760018101805460ff19168515151790555b600181015460ff610100909104161515831515146117e15760018101805461ff001916610100851515021790555b60070155505050565b60606117f5826121c5565b6118115760405162461bcd60e51b815260040161083590613d70565b6000828152600c60205260408120805461182a90614338565b80601f016020809104026020016040519081016040528092919081815260200182805461185690614338565b80156118a35780601f10611878576101008083540402835291602001916118a3565b820191906000526020600020905b81548152906001019060200180831161188657829003601f168201915b5050505050905060006118b46126cf565b90508051600014156118c857509050610777565b8151156118d757509050610777565b6118e0846126de565b949350505050565b600f5481565b606060148260405161190091906136c2565b908152604051908190036020019020600a015460ff166119325760405162461bcd60e51b815260040161083590613873565b600083116119525760405162461bcd60e51b815260040161083590613b58565b61195a6112fa565b6001600160a01b031661196b6121e2565b6001600160a01b0316146119bb5760148260405161198991906136c2565b9081526040519081900360200190206001015460ff166119bb5760405162461bcd60e51b815260040161083590614066565b6119c36112fa565b6001600160a01b03166119d46121e2565b6001600160a01b031614158015611a1357506014826040516119f691906136c2565b9081526040519081900360200190206001015460ff610100909104165b15611a6c57601382604051611a2891906136c2565b90815260408051602092819003830190206001600160a01b0387166000908152925290205460ff16611a6c5760405162461bcd60e51b815260040161083590614124565b601482604051611a7c91906136c2565b908152602001604051809103902060030154611aa284601485604051610fe791906136c2565b1115611ac05760405162461bcd60e51b815260040161083590613b8f565b601482604051611ad091906136c2565b908152602001604051809103902060070154611b2184601285604051611af691906136c2565b90815260408051602092819003830190206001600160a01b038a166000908152925290205490612575565b1115611b3f5760405162461bcd60e51b81526004016108359061409d565b611b758383601485604051611b5491906136c2565b9081526040519081900360200190206001015460ff61010090910416612760565b341015611b945760405162461bcd60e51b815260040161083590613f68565b6000601483604051611ba691906136c2565b90815260200160405180910390209050611bcd84826004015461257590919063ffffffff16565b8160040181905550611be984601285604051611af691906136c2565b601284604051611bf991906136c2565b90815260408051602092819003830190206001600160a01b03891660009081529252812091909155846001600160401b03811115611c4757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611c70578160200160208202803683370190505b50905060005b85811015611cc457611c87876127c9565b828281518110611ca757634e487b7160e01b600052603260045260246000fd5b602090810291909101015280611cbc81614373565b915050611c76565b509150505b9392505050565b600d8054610dae90614338565b611ce56121e2565b6001600160a01b0316611cf66112fa565b6001600160a01b031614611d1c5760405162461bcd60e51b815260040161083590613e0d565b60008111611d2957600080fd5b601b54811115611d3857600080fd5b6014604051611d469061370d565b908152602001604051809103902060030154611d6a826014604051610fe79061370d565b1115611d885760405162461bcd60e51b815260040161083590613b8f565b60006014604051611d989061370d565b90815260200160405180910390209050611dbf82826004015461257590919063ffffffff16565b6004820155601b54611dd1908361243e565b601b5560005b828110156108ed57601a54611df4906001600160a01b031661244a565b80611dfe81614373565b915050611dd7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611e3c6121e2565b6001600160a01b0316611e4d6112fa565b6001600160a01b031614611e735760405162461bcd60e51b815260040161083590613e0d565b601489604051611e8391906136c2565b908152604051908190036020019020600a015460ff1615611eb65760405162461bcd60e51b815260040161083590613d04565b600e54851015611ed85760405162461bcd60e51b815260040161083590613e42565b600e54841015611efa5760405162461bcd60e51b815260040161083590613aaf565b6001861015611f0857600080fd5b6001831015611f1657600080fd5b600f54611f3887611f326011548661218890919063ffffffff16565b90612194565b1115611f565760405162461bcd60e51b8152600401610835906137f0565b601054611f7287611f326011548561218890919063ffffffff16565b1115611f905760405162461bcd60e51b8152600401610835906139f0565b600060148a604051611fa291906136c2565b9081526020016040518091039020905089816000019080519060200190611fca929190612f6e565b50600180820180548a15156101000261ff00198d151560ff19938416171617909155600683018890556005830187905560038301899055426002840155600a830180549091169091179055600881018390556009810182905560078101849055895161203d9060159060208d0190612f6e565b5050505050505050505050565b6120526121e2565b6001600160a01b03166120636112fa565b6001600160a01b0316146120895760405162461bcd60e51b815260040161083590613e0d565b6001600160a01b0381166120af5760405162461bcd60e51b81526004016108359061393c565b610b2381612523565b6120c06121e2565b6001600160a01b03166120d16112fa565b6001600160a01b0316146120f75760405162461bcd60e51b815260040161083590613e0d565b60005b83518110156110a2578160138460405161211491906136c2565b9081526020016040518091039020600086848151811061214457634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061218081614373565b9150506120fa565b6000611cc982846142d6565b6000611cc982846142c2565b60006001600160e01b0319821663780e9d6360e01b1480610774575061077482612829565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061221b82610e2f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061225f826121c5565b61227b5760405162461bcd60e51b815260040161083590613b0c565b600061228683610e2f565b9050806001600160a01b0316846001600160a01b031614806122c15750836001600160a01b03166122b68461080e565b6001600160a01b0316145b806118e057506118e08185611e06565b826001600160a01b03166122e482610e2f565b6001600160a01b03161461230a5760405162461bcd60e51b815260040161083590613e8f565b6001600160a01b0382166123305760405162461bcd60e51b815260040161083590613a34565b61233b838383612869565b6123466000826121e6565b6001600160a01b038316600090815260036020526040812080546001929061236f9084906142f5565b90915550506001600160a01b038216600090815260036020526040812080546001929061239d9084906142aa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61240781612874565b6000818152600c60205260409020805461242090614338565b159050610b23576000818152600c60205260408120610b2391612ff2565b6000611cc982846142f5565b6000612454612581565b9050612460600b612592565b61246a828261259b565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe828260405161249b929190613775565b60405180910390a15050565b6000826001600160a01b0316826040516124c090613721565b60006040518083038185875af1925050503d80600081146124fd576040519150601f19603f3d011682016040523d82523d6000602084013e612502565b606091505b50509050806108ed5760405162461bcd60e51b815260040161083590613f9f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611cc982846142aa565b600061258d600b61291b565b905090565b80546001019055565b610d9d82826040518060200160405280600081525061291f565b6125be826121c5565b6125da5760405162461bcd60e51b815260040161083590613cb6565b6000828152600c6020908152604090912082516108ed92840190612f6e565b816001600160a01b0316836001600160a01b0316141561262b5760405162461bcd60e51b815260040161083590613a78565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319061268f9085906137d2565b60405180910390a3505050565b6126a78484846122d1565b6126b384848484612952565b6110a25760405162461bcd60e51b8152600401610835906138ea565b6060600d805461078b90614338565b60606126e9826121c5565b6127055760405162461bcd60e51b815260040161083590613ed8565b600061270f6126cf565b9050600081511161272f5760405180602001604052806000815250611cc9565b8061273984612a6d565b60405160200161274a9291906136de565b6040516020818303038152906040529392505050565b6000811561279c576127958460148560405161277c91906136c2565b9081526040519081900360200190206005015490612188565b9050611cc9565b6118e0846014856040516127b091906136c2565b9081526040519081900360200190206006015490612188565b6000806127d4612581565b90506127e0600b612592565b6127ea838261259b565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe838260405161281b929190613775565b60405180910390a192915050565b60006001600160e01b031982166380ac58cd60e01b148061285a57506001600160e01b03198216635b5e139f60e01b145b80610774575061077482612b87565b6108ed838383612ba0565b600061287f82610e2f565b905061288d81600084612869565b6128986000836121e6565b6001600160a01b03811660009081526003602052604081208054600192906128c19084906142f5565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b5490565b6129298383612c24565b6129366000848484612952565b6108ed5760405162461bcd60e51b8152600401610835906138ea565b6000612966846001600160a01b0316612d03565b15612a6257836001600160a01b031663150b7a026129826121e2565b8786866040518563ffffffff1660e01b81526004016129a49493929190613738565b602060405180830381600087803b1580156129be57600080fd5b505af19250505080156129ee575060408051601f3d908101601f191682019092526129eb918101906133cb565b60015b612a48573d808015612a1c576040519150601f19603f3d011682016040523d82523d6000602084013e612a21565b606091505b508051612a405760405162461bcd60e51b8152600401610835906138ea565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118e0565b506001949350505050565b606081612a9257506040805180820190915260018152600360fc1b6020820152610777565b8160005b8115612abc5780612aa681614373565b9150612ab59050600a836142c2565b9150612a96565b6000816001600160401b03811115612ae457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b0e576020820181803683370190505b5090505b84156118e057612b236001836142f5565b9150612b30600a8661438e565b612b3b9060306142aa565b60f81b818381518110612b5e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612b80600a866142c2565b9450612b12565b6001600160e01b031981166301ffc9a760e01b14919050565b612bab8383836108ed565b6001600160a01b038316612bc757612bc281612d09565b612bea565b816001600160a01b0316836001600160a01b031614612bea57612bea8382612d4d565b6001600160a01b038216612c0157610ce181612dea565b826001600160a01b0316826001600160a01b0316146108ed576108ed8282612ec3565b6001600160a01b038216612c4a5760405162461bcd60e51b815260040161083590613d3b565b612c53816121c5565b15612c705760405162461bcd60e51b815260040161083590613982565b612c7c60008383612869565b6001600160a01b0382166000908152600360205260408120805460019290612ca59084906142aa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001612d5a84610ea8565b612d6491906142f5565b600083815260076020526040902054909150808214612db7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612dfc906001906142f5565b60008381526009602052604081205460088054939450909284908110612e3257634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612e6157634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612ea757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612ece83610ea8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6040518061018001604052806060815260200160001515815260200160001515815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000151581525090565b828054612f7a90614338565b90600052602060002090601f016020900481019282612f9c5760008555612fe2565b82601f10612fb557805160ff1916838001178555612fe2565b82800160010185558215612fe2579182015b82811115612fe2578251825591602001919060010190612fc7565b50612fee92915061302a565b5090565b508054612ffe90614338565b6000825580601f106130105750610b23565b601f016020900490600052602060002090810190610b2391905b5b80821115612fee576000815560010161302b565b60006001600160401b03831115613058576130586143ce565b61306b601f8401601f191660200161425e565b905082815283838301111561307f57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461077757600080fd5b600082601f8301126130bd578081fd5b813560206130d26130cd83614287565b61425e565b82815281810190858301838502870184018810156130ee578586fd5b855b858110156131135761310182613096565b845292840192908401906001016130f0565b5090979650505050505050565b8035801515811461077757600080fd5b600082601f830112613140578081fd5b611cc98383356020850161303f565b600060208284031215613160578081fd5b611cc982613096565b6000806040838503121561317b578081fd5b61318483613096565b915061319260208401613096565b90509250929050565b6000806000606084860312156131af578081fd5b6131b884613096565b92506131c660208501613096565b9150604084013590509250925092565b600080600080608085870312156131eb578081fd5b6131f485613096565b935061320260208601613096565b92506040850135915060608501356001600160401b03811115613223578182fd5b8501601f81018713613233578182fd5b6132428782356020840161303f565b91505092959194509250565b60008060408385031215613260578182fd5b61326983613096565b915061319260208401613120565b60008060408385031215613289578182fd5b61329283613096565b915060208301356001600160401b038111156132ac578182fd5b6132b885828601613130565b9150509250929050565b600080604083850312156132d4578182fd5b6132dd83613096565b946020939093013593505050565b6000806000606084860312156132ff578283fd5b61330884613096565b92506020840135915060408401356001600160401b03811115613329578182fd5b61333586828701613130565b9150509250925092565b600080600060608486031215613353578081fd5b83356001600160401b0380821115613369578283fd5b613375878388016130ad565b9450602086013591508082111561338a578283fd5b5061339786828701613130565b9250506133a660408501613120565b90509250925092565b6000602082840312156133c0578081fd5b8135611cc9816143e4565b6000602082840312156133dc578081fd5b8151611cc9816143e4565b6000602082840312156133f8578081fd5b81356001600160401b0381111561340d578182fd5b6118e084828501613130565b6000806000806080858703121561342e578182fd5b84356001600160401b03811115613443578283fd5b61344f87828801613130565b94505061345e60208601613120565b925061346c60408601613120565b9396929550929360600135925050565b60008060008060008060008060006101208a8c03121561349a578687fd5b89356001600160401b038111156134af578788fd5b6134bb8c828d01613130565b9950506134ca60208b01613120565b97506134d860408b01613120565b989b979a5097986060810135985060808101359760a0820135975060c0820135965060e08201359550610100909101359350915050565b600080600060608486031215613523578081fd5b83356001600160401b0380821115613539578283fd5b61354587838801613130565b9450602086013593506040860135915080821115613561578283fd5b50613335868287016130ad565b60008060008060808587031215613583578182fd5b84356001600160401b0380821115613599578384fd5b6135a588838901613130565b9550602091508187013594506040870135818111156135c2578485fd5b6135ce89828a016130ad565b9450506060870135818111156135e2578384fd5b87019050601f810188136135f4578283fd5b80356136026130cd82614287565b81815283810190838501865b84811015613637576136258d888435890101613130565b8452928601929086019060010161360e565b5050809550505050505092959194509250565b60006020828403121561365b578081fd5b5035919050565b60008060408385031215613674578182fd5b8235915060208301356001600160401b038111156132ac578182fd5b15159052565b600081518084526136ae81602086016020860161430c565b601f01601f19169290920160200192915050565b600082516136d481846020870161430c565b9190910192915050565b600083516136f081846020880161430c565b83519083019061370481836020880161430c565b01949350505050565b672530b7169918191960c11b815260080190565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061376b90830184613696565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b818110156137c6578351835292840192918401916001016137aa565b50909695505050505050565b901515815260200190565b600060208252611cc96020830184613696565b60208082526021908201527f584f4e453a204c696d6974206d6178207465616d20616d6f756e74206572726f6040820152603960f91b606082015260800190565b60208082526022908201527f584f4e453a2063616e27742075706461746520746f20696e76616c696420706c60408201526130b760f11b606082015260800190565b6020808252601290820152712c27a7229d1024b73b30b634b210283630b760711b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526019908201527f584f4e453a20506c616e206973206e6f74206578697374656400000000000000604082015260600190565b60208082526024908201527f584f4e453a204c696d6974206d61782061697264726f7020616d6f756e742065604082015263393937b960e11b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526037908201527f584f4e453a2077686974656c6973742070726963652063616e2774206265206c60408201527f6f776572207468616e206d696e696d756d207072696365000000000000000000606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526017908201527f584f4e453a206d696e696d756d206d696e742069732031000000000000000000604082015260600190565b6020808252601b908201527f584f4e453a2045786365656420506c616e204d6178206c696d69740000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602e908201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60408201526d32bc34b9ba32b73a103a37b5b2b760911b606082015260800190565b6020808252601d908201527f584f4e453a20506c616e20697320616c72656164792065786973746564000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602d908201527f584f4e453a2070726963652063616e2774206265206c6f776572207468616e2060408201526c6d696e696d756d20707269636560981b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526017908201527f584f4e453a2056616c75652042656c6f77205072696365000000000000000000604082015260600190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601b908201527f584f4e453a205468697320706c616e206973206e6f74206f70656e0000000000604082015260600190565b6020808252601f908201527f584f4e453a20457863656564204d617820506572204d696e74206c696d697400604082015260600190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b60208082526045908201527f584f4e453a205468697320706c616e2069732077686974656c6973742073616c60408201527f6520616e6420796f75722061646472657373206973206e6f742077686974656c6060820152641a5cdd195960da1b608082015260a00190565b60006020825282516101808060208501526141ae6101a0850183613696565b915060208501516141c26040860182613690565b5060408501516141d56060860182613690565b5060608501516080850152608085015160a085015260a085015160c085015260c085015160e085015260e085015161010081818701528087015191505061012081818701528087015191505061014081818701528087015191505061016081818701528087015191505061424b82860182613690565b5090949350505050565b90815260200190565b6040518181016001600160401b038111828210171561427f5761427f6143ce565b604052919050565b60006001600160401b038211156142a0576142a06143ce565b5060209081020190565b600082198211156142bd576142bd6143a2565b500190565b6000826142d1576142d16143b8565b500490565b60008160001904831182151516156142f0576142f06143a2565b500290565b600082821015614307576143076143a2565b500390565b60005b8381101561432757818101518382015260200161430f565b838111156110a25750506000910152565b60028104600182168061434c57607f821691505b6020821081141561436d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415614387576143876143a2565b5060010190565b60008261439d5761439d6143b8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b2357600080fdfea26469706673582212201d11dfc4d63ec6272c3c082e9fc96742052a4ea779a6e2350ee07be52ee1186f64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102515760003560e01c806382cbb21c11610139578063bc2f92bf116100b6578063d547cfb71161007a578063d547cfb7146106b4578063d7ec2497146106c9578063e985e9c5146106e9578063ebbb478f14610709578063f2fde38b14610729578063f7c277401461074957610251565b8063bc2f92bf14610637578063be4b72381461064c578063c87b56dd1461066c578063d1a557861461068c578063d3fc9864146106a157610251565b80639844a1f3116100fd5780639844a1f31461058a5780639e445d40146105aa5780639e59e598146105ca578063a22cb465146105f7578063b88d4fde1461061757610251565b806382cbb21c1461050b57806385b76cb31461052b5780638da5cb5b1461054b57806395d89b4114610560578063973d0f231461057557610251565b806342966c68116101d25780635deccf53116101965780635deccf53146104615780636352211e146104765780636b1db16a1461049657806370a08231146104b6578063715018a6146104d657806375e95862146104eb57610251565b806342966c68146103c15780634541c0d7146103e15780634782f779146104015780634f6ccce71461042157806355f804b31461044157610251565b80631e69ff34116102195780631e69ff341461031f57806323b872dd1461034c57806328f0a8291461036c5780632f745c591461038157806342842e0e146103a157610251565b806301ffc9a71461025657806306fdde031461028c578063081812fc146102ae578063095ea7b3146102db57806318160ddd146102fd575b600080fd5b34801561026257600080fd5b506102766102713660046133af565b610769565b60405161028391906137d2565b60405180910390f35b34801561029857600080fd5b506102a161077c565b60405161028391906137dd565b3480156102ba57600080fd5b506102ce6102c936600461364a565b61080e565b6040516102839190613724565b3480156102e757600080fd5b506102fb6102f63660046132c2565b61085a565b005b34801561030957600080fd5b506103126108f2565b6040516102839190614255565b34801561032b57600080fd5b5061033f61033a3660046133e7565b6108f8565b604051610283919061418f565b34801561035857600080fd5b506102fb61036736600461319b565b610a48565b34801561037857600080fd5b50610312610a80565b34801561038d57600080fd5b5061031261039c3660046132c2565b610a86565b3480156103ad57600080fd5b506102fb6103bc36600461319b565b610ad8565b3480156103cd57600080fd5b506102fb6103dc36600461364a565b610af3565b3480156103ed57600080fd5b506102fb6103fc36600461350f565b610b26565b34801561040d57600080fd5b506102fb61041c3660046132c2565b610c86565b34801561042d57600080fd5b5061031261043c36600461364a565b610cf0565b34801561044d57600080fd5b506102fb61045c3660046133e7565b610d4b565b34801561046d57600080fd5b506102a1610da1565b34801561048257600080fd5b506102ce61049136600461364a565b610e2f565b3480156104a257600080fd5b506102766104b1366004613277565b610e64565b3480156104c257600080fd5b506103126104d136600461314f565b610ea8565b3480156104e257600080fd5b506102fb610eec565b3480156104f757600080fd5b506102fb610506366004613662565b610f37565b34801561051757600080fd5b506102fb61052636600461364a565b6110a8565b34801561053757600080fd5b506102fb61054636600461364a565b6111d1565b34801561055757600080fd5b506102ce6112fa565b34801561056c57600080fd5b506102a1611309565b34801561058157600080fd5b50610312611318565b34801561059657600080fd5b506102fb6105a536600461356e565b61131e565b3480156105b657600080fd5b506102fb6105c53660046133e7565b611536565b3480156105d657600080fd5b506105ea6105e536600461314f565b6115ca565b604051610283919061378e565b34801561060357600080fd5b506102fb61061236600461324e565b611687565b34801561062357600080fd5b506102fb6106323660046131d6565b611699565b34801561064357600080fd5b506103126116d2565b34801561065857600080fd5b506102fb610667366004613419565b6116d8565b34801561067857600080fd5b506102a161068736600461364a565b6117ea565b34801561069857600080fd5b506103126118e8565b6105ea6106af3660046132eb565b6118ee565b3480156106c057600080fd5b506102a1611cd0565b3480156106d557600080fd5b506102fb6106e436600461364a565b611cdd565b3480156106f557600080fd5b50610276610704366004613169565b611e06565b34801561071557600080fd5b506102fb61072436600461347c565b611e34565b34801561073557600080fd5b506102fb61074436600461314f565b61204a565b34801561075557600080fd5b506102fb61076436600461333f565b6120b8565b6000610774826121a0565b90505b919050565b60606000805461078b90614338565b80601f01602080910402602001604051908101604052809291908181526020018280546107b790614338565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b6000610819826121c5565b61083e5760405162461bcd60e51b815260040161083590613dc1565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061086582610e2f565b9050806001600160a01b0316836001600160a01b031614156108995760405162461bcd60e51b815260040161083590613f27565b806001600160a01b03166108ab6121e2565b6001600160a01b031614806108c757506108c7816107046121e2565b6108e35760405162461bcd60e51b815260040161083590613bc6565b6108ed83836121e6565b505050565b60085490565b610900612f07565b60148260405161091091906136c2565b90815260200160405180910390206040518061018001604052908160008201805461093a90614338565b80601f016020809104026020016040519081016040528092919081815260200182805461096690614338565b80156109b35780601f10610988576101008083540402835291602001916109b3565b820191906000526020600020905b81548152906001019060200180831161099657829003601f168201915b5050509183525050600182015460ff80821615156020840152610100918290048116151560408401526002840154606084015260038401546080840152600484015460a0840152600584015460c0840152600684015460e084015260078401549183019190915260088301546101208301526009830154610140830152600a9092015490911615156101609091015292915050565b610a59610a536121e2565b82612254565b610a755760405162461bcd60e51b815260040161083590613fc9565b6108ed8383836122d1565b60115481565b6000610a9183610ea8565b8210610aaf5760405162461bcd60e51b81526004016108359061389f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108ed83838360405180602001604052806000815250611699565b610afe610a536121e2565b610b1a5760405162461bcd60e51b8152600401610835906140d4565b610b23816123fe565b50565b610b2e6121e2565b6001600160a01b0316610b3f6112fa565b6001600160a01b031614610b655760405162461bcd60e51b815260040161083590613e0d565b601483604051610b7591906136c2565b908152604051908190036020019020600a015460ff161515600114610bac5760405162461bcd60e51b8152600401610835906139b9565b60008211610bb957600080fd5b81815114610bc657600080fd5b601483604051610bd691906136c2565b908152602001604051809103902060090154821115610bf457600080fd5b6000601484604051610c0691906136c2565b90815260200160405180910390209050610c2d83826009015461243e90919063ffffffff16565b600982015560005b83811015610c7f57610c6d838281518110610c6057634e487b7160e01b600052603260045260246000fd5b602002602001015161244a565b80610c7781614373565b915050610c35565b5050505050565b610c8e6121e2565b6001600160a01b0316610c9f6112fa565b6001600160a01b031614610cc55760405162461bcd60e51b815260040161083590613e0d565b4780610cd057600080fd5b808211610ce657610ce183836124a7565b6108ed565b6108ed83826124a7565b6000610cfa6108f2565b8210610d185760405162461bcd60e51b81526004016108359061401a565b60088281548110610d3957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610d536121e2565b6001600160a01b0316610d646112fa565b6001600160a01b031614610d8a5760405162461bcd60e51b815260040161083590613e0d565b8051610d9d90600d906020840190612f6e565b5050565b60158054610dae90614338565b80601f0160208091040260200160405190810160405280929190818152602001828054610dda90614338565b8015610e275780601f10610dfc57610100808354040283529160200191610e27565b820191906000526020600020905b815481529060010190602001808311610e0a57829003601f168201915b505050505081565b6000818152600260205260408120546001600160a01b0316806107745760405162461bcd60e51b815260040161083590613c6d565b6000601382604051610e7691906136c2565b908152604080519182900360209081019092206001600160a01b0386166000908152925290205460ff16905092915050565b60006001600160a01b038216610ed05760405162461bcd60e51b815260040161083590613c23565b506001600160a01b031660009081526003602052604090205490565b610ef46121e2565b6001600160a01b0316610f056112fa565b6001600160a01b031614610f2b5760405162461bcd60e51b815260040161083590613e0d565b610f356000612523565b565b610f3f6121e2565b6001600160a01b0316610f506112fa565b6001600160a01b031614610f765760405162461bcd60e51b815260040161083590613e0d565b60008211610f8357600080fd5b601481604051610f9391906136c2565b908152602001604051809103902060080154821115610fb157600080fd5b601481604051610fc191906136c2565b90815260200160405180910390206003015461100083601484604051610fe791906136c2565b9081526040519081900360200190206004015490612575565b111561101e5760405162461bcd60e51b815260040161083590613b8f565b600060148260405161103091906136c2565b9081526020016040518091039020905061105783826004015461257590919063ffffffff16565b6004820155600881015461106b908461243e565b600882015560005b838110156110a257601c54611090906001600160a01b031661244a565b8061109a81614373565b915050611073565b50505050565b6110b06121e2565b6001600160a01b03166110c16112fa565b6001600160a01b0316146110e75760405162461bcd60e51b815260040161083590613e0d565b600081116110f457600080fd5b60195481111561110357600080fd5b60146040516111119061370d565b908152602001604051809103902060030154611135826014604051610fe79061370d565b11156111535760405162461bcd60e51b815260040161083590613b8f565b600060146040516111639061370d565b9081526020016040518091039020905061118a82826004015461257590919063ffffffff16565b600482015560195461119c908361243e565b60195560005b828110156108ed576018546111bf906001600160a01b031661244a565b806111c981614373565b9150506111a2565b6111d96121e2565b6001600160a01b03166111ea6112fa565b6001600160a01b0316146112105760405162461bcd60e51b815260040161083590613e0d565b6000811161121d57600080fd5b60175481111561122c57600080fd5b601460405161123a9061370d565b90815260200160405180910390206003015461125e826014604051610fe79061370d565b111561127c5760405162461bcd60e51b815260040161083590613b8f565b6000601460405161128c9061370d565b908152602001604051809103902090506112b382826004015461257590919063ffffffff16565b60048201556017546112c5908361243e565b60175560005b828110156108ed576016546112e8906001600160a01b031661244a565b806112f281614373565b9150506112cb565b600a546001600160a01b031690565b60606001805461078b90614338565b60105481565b6113266121e2565b6001600160a01b03166113376112fa565b6001600160a01b03161461135d5760405162461bcd60e51b815260040161083590613e0d565b60148460405161136d91906136c2565b908152604051908190036020019020600a015460ff1615156001146113a45760405162461bcd60e51b8152600401610835906139b9565b600083116113b157600080fd5b828251146113be57600080fd5b80518251146113cc57600080fd5b6014846040516113dc91906136c2565b9081526020016040518091039020600901548311156113fa57600080fd5b600060148560405161140c91906136c2565b9081526020016040518091039020905061143384826009015461243e90919063ffffffff16565b600982015560005b8481101561152e57600061144d612581565b9050611459600b612592565b61148a85838151811061147c57634e487b7160e01b600052603260045260246000fd5b60200260200101518261259b565b6114bb818584815181106114ae57634e487b7160e01b600052603260045260246000fd5b60200260200101516125b5565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe8583815181106114fc57634e487b7160e01b600052603260045260246000fd5b602002602001015182604051611513929190613775565b60405180910390a1508061152681614373565b91505061143b565b505050505050565b61153e6121e2565b6001600160a01b031661154f6112fa565b6001600160a01b0316146115755760405162461bcd60e51b815260040161083590613e0d565b60148160405161158591906136c2565b908152604051908190036020019020600a015460ff166115b75760405162461bcd60e51b815260040161083590613831565b8051610d9d906015906020840190612f6e565b606060006115d783610ea8565b90506000816001600160401b0381111561160157634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561162a578160200160208202803683370190505b50905060005b8281101561167f576116428582610a86565b82828151811061166257634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061167781614373565b915050611630565b509392505050565b610d9d6116926121e2565b83836125f9565b6116aa6116a46121e2565b83612254565b6116c65760405162461bcd60e51b815260040161083590613fc9565b6110a28484848461269c565b600e5481565b6116e06121e2565b6001600160a01b03166116f16112fa565b6001600160a01b0316146117175760405162461bcd60e51b815260040161083590613e0d565b60148460405161172791906136c2565b908152604051908190036020019020600a015460ff16151560011461175e5760405162461bcd60e51b8152600401610835906139b9565b600181101561176c57600080fd5b600060148560405161177e91906136c2565b908152604051908190036020019020600181015490915060ff161515841515146117b35760018101805460ff19168515151790555b600181015460ff610100909104161515831515146117e15760018101805461ff001916610100851515021790555b60070155505050565b60606117f5826121c5565b6118115760405162461bcd60e51b815260040161083590613d70565b6000828152600c60205260408120805461182a90614338565b80601f016020809104026020016040519081016040528092919081815260200182805461185690614338565b80156118a35780601f10611878576101008083540402835291602001916118a3565b820191906000526020600020905b81548152906001019060200180831161188657829003601f168201915b5050505050905060006118b46126cf565b90508051600014156118c857509050610777565b8151156118d757509050610777565b6118e0846126de565b949350505050565b600f5481565b606060148260405161190091906136c2565b908152604051908190036020019020600a015460ff166119325760405162461bcd60e51b815260040161083590613873565b600083116119525760405162461bcd60e51b815260040161083590613b58565b61195a6112fa565b6001600160a01b031661196b6121e2565b6001600160a01b0316146119bb5760148260405161198991906136c2565b9081526040519081900360200190206001015460ff166119bb5760405162461bcd60e51b815260040161083590614066565b6119c36112fa565b6001600160a01b03166119d46121e2565b6001600160a01b031614158015611a1357506014826040516119f691906136c2565b9081526040519081900360200190206001015460ff610100909104165b15611a6c57601382604051611a2891906136c2565b90815260408051602092819003830190206001600160a01b0387166000908152925290205460ff16611a6c5760405162461bcd60e51b815260040161083590614124565b601482604051611a7c91906136c2565b908152602001604051809103902060030154611aa284601485604051610fe791906136c2565b1115611ac05760405162461bcd60e51b815260040161083590613b8f565b601482604051611ad091906136c2565b908152602001604051809103902060070154611b2184601285604051611af691906136c2565b90815260408051602092819003830190206001600160a01b038a166000908152925290205490612575565b1115611b3f5760405162461bcd60e51b81526004016108359061409d565b611b758383601485604051611b5491906136c2565b9081526040519081900360200190206001015460ff61010090910416612760565b341015611b945760405162461bcd60e51b815260040161083590613f68565b6000601483604051611ba691906136c2565b90815260200160405180910390209050611bcd84826004015461257590919063ffffffff16565b8160040181905550611be984601285604051611af691906136c2565b601284604051611bf991906136c2565b90815260408051602092819003830190206001600160a01b03891660009081529252812091909155846001600160401b03811115611c4757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611c70578160200160208202803683370190505b50905060005b85811015611cc457611c87876127c9565b828281518110611ca757634e487b7160e01b600052603260045260246000fd5b602090810291909101015280611cbc81614373565b915050611c76565b509150505b9392505050565b600d8054610dae90614338565b611ce56121e2565b6001600160a01b0316611cf66112fa565b6001600160a01b031614611d1c5760405162461bcd60e51b815260040161083590613e0d565b60008111611d2957600080fd5b601b54811115611d3857600080fd5b6014604051611d469061370d565b908152602001604051809103902060030154611d6a826014604051610fe79061370d565b1115611d885760405162461bcd60e51b815260040161083590613b8f565b60006014604051611d989061370d565b90815260200160405180910390209050611dbf82826004015461257590919063ffffffff16565b6004820155601b54611dd1908361243e565b601b5560005b828110156108ed57601a54611df4906001600160a01b031661244a565b80611dfe81614373565b915050611dd7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611e3c6121e2565b6001600160a01b0316611e4d6112fa565b6001600160a01b031614611e735760405162461bcd60e51b815260040161083590613e0d565b601489604051611e8391906136c2565b908152604051908190036020019020600a015460ff1615611eb65760405162461bcd60e51b815260040161083590613d04565b600e54851015611ed85760405162461bcd60e51b815260040161083590613e42565b600e54841015611efa5760405162461bcd60e51b815260040161083590613aaf565b6001861015611f0857600080fd5b6001831015611f1657600080fd5b600f54611f3887611f326011548661218890919063ffffffff16565b90612194565b1115611f565760405162461bcd60e51b8152600401610835906137f0565b601054611f7287611f326011548561218890919063ffffffff16565b1115611f905760405162461bcd60e51b8152600401610835906139f0565b600060148a604051611fa291906136c2565b9081526020016040518091039020905089816000019080519060200190611fca929190612f6e565b50600180820180548a15156101000261ff00198d151560ff19938416171617909155600683018890556005830187905560038301899055426002840155600a830180549091169091179055600881018390556009810182905560078101849055895161203d9060159060208d0190612f6e565b5050505050505050505050565b6120526121e2565b6001600160a01b03166120636112fa565b6001600160a01b0316146120895760405162461bcd60e51b815260040161083590613e0d565b6001600160a01b0381166120af5760405162461bcd60e51b81526004016108359061393c565b610b2381612523565b6120c06121e2565b6001600160a01b03166120d16112fa565b6001600160a01b0316146120f75760405162461bcd60e51b815260040161083590613e0d565b60005b83518110156110a2578160138460405161211491906136c2565b9081526020016040518091039020600086848151811061214457634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061218081614373565b9150506120fa565b6000611cc982846142d6565b6000611cc982846142c2565b60006001600160e01b0319821663780e9d6360e01b1480610774575061077482612829565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061221b82610e2f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061225f826121c5565b61227b5760405162461bcd60e51b815260040161083590613b0c565b600061228683610e2f565b9050806001600160a01b0316846001600160a01b031614806122c15750836001600160a01b03166122b68461080e565b6001600160a01b0316145b806118e057506118e08185611e06565b826001600160a01b03166122e482610e2f565b6001600160a01b03161461230a5760405162461bcd60e51b815260040161083590613e8f565b6001600160a01b0382166123305760405162461bcd60e51b815260040161083590613a34565b61233b838383612869565b6123466000826121e6565b6001600160a01b038316600090815260036020526040812080546001929061236f9084906142f5565b90915550506001600160a01b038216600090815260036020526040812080546001929061239d9084906142aa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61240781612874565b6000818152600c60205260409020805461242090614338565b159050610b23576000818152600c60205260408120610b2391612ff2565b6000611cc982846142f5565b6000612454612581565b9050612460600b612592565b61246a828261259b565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe828260405161249b929190613775565b60405180910390a15050565b6000826001600160a01b0316826040516124c090613721565b60006040518083038185875af1925050503d80600081146124fd576040519150601f19603f3d011682016040523d82523d6000602084013e612502565b606091505b50509050806108ed5760405162461bcd60e51b815260040161083590613f9f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611cc982846142aa565b600061258d600b61291b565b905090565b80546001019055565b610d9d82826040518060200160405280600081525061291f565b6125be826121c5565b6125da5760405162461bcd60e51b815260040161083590613cb6565b6000828152600c6020908152604090912082516108ed92840190612f6e565b816001600160a01b0316836001600160a01b0316141561262b5760405162461bcd60e51b815260040161083590613a78565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319061268f9085906137d2565b60405180910390a3505050565b6126a78484846122d1565b6126b384848484612952565b6110a25760405162461bcd60e51b8152600401610835906138ea565b6060600d805461078b90614338565b60606126e9826121c5565b6127055760405162461bcd60e51b815260040161083590613ed8565b600061270f6126cf565b9050600081511161272f5760405180602001604052806000815250611cc9565b8061273984612a6d565b60405160200161274a9291906136de565b6040516020818303038152906040529392505050565b6000811561279c576127958460148560405161277c91906136c2565b9081526040519081900360200190206005015490612188565b9050611cc9565b6118e0846014856040516127b091906136c2565b9081526040519081900360200190206006015490612188565b6000806127d4612581565b90506127e0600b612592565b6127ea838261259b565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe838260405161281b929190613775565b60405180910390a192915050565b60006001600160e01b031982166380ac58cd60e01b148061285a57506001600160e01b03198216635b5e139f60e01b145b80610774575061077482612b87565b6108ed838383612ba0565b600061287f82610e2f565b905061288d81600084612869565b6128986000836121e6565b6001600160a01b03811660009081526003602052604081208054600192906128c19084906142f5565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b5490565b6129298383612c24565b6129366000848484612952565b6108ed5760405162461bcd60e51b8152600401610835906138ea565b6000612966846001600160a01b0316612d03565b15612a6257836001600160a01b031663150b7a026129826121e2565b8786866040518563ffffffff1660e01b81526004016129a49493929190613738565b602060405180830381600087803b1580156129be57600080fd5b505af19250505080156129ee575060408051601f3d908101601f191682019092526129eb918101906133cb565b60015b612a48573d808015612a1c576040519150601f19603f3d011682016040523d82523d6000602084013e612a21565b606091505b508051612a405760405162461bcd60e51b8152600401610835906138ea565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118e0565b506001949350505050565b606081612a9257506040805180820190915260018152600360fc1b6020820152610777565b8160005b8115612abc5780612aa681614373565b9150612ab59050600a836142c2565b9150612a96565b6000816001600160401b03811115612ae457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b0e576020820181803683370190505b5090505b84156118e057612b236001836142f5565b9150612b30600a8661438e565b612b3b9060306142aa565b60f81b818381518110612b5e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612b80600a866142c2565b9450612b12565b6001600160e01b031981166301ffc9a760e01b14919050565b612bab8383836108ed565b6001600160a01b038316612bc757612bc281612d09565b612bea565b816001600160a01b0316836001600160a01b031614612bea57612bea8382612d4d565b6001600160a01b038216612c0157610ce181612dea565b826001600160a01b0316826001600160a01b0316146108ed576108ed8282612ec3565b6001600160a01b038216612c4a5760405162461bcd60e51b815260040161083590613d3b565b612c53816121c5565b15612c705760405162461bcd60e51b815260040161083590613982565b612c7c60008383612869565b6001600160a01b0382166000908152600360205260408120805460019290612ca59084906142aa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001612d5a84610ea8565b612d6491906142f5565b600083815260076020526040902054909150808214612db7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612dfc906001906142f5565b60008381526009602052604081205460088054939450909284908110612e3257634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612e6157634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612ea757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612ece83610ea8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6040518061018001604052806060815260200160001515815260200160001515815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000151581525090565b828054612f7a90614338565b90600052602060002090601f016020900481019282612f9c5760008555612fe2565b82601f10612fb557805160ff1916838001178555612fe2565b82800160010185558215612fe2579182015b82811115612fe2578251825591602001919060010190612fc7565b50612fee92915061302a565b5090565b508054612ffe90614338565b6000825580601f106130105750610b23565b601f016020900490600052602060002090810190610b2391905b5b80821115612fee576000815560010161302b565b60006001600160401b03831115613058576130586143ce565b61306b601f8401601f191660200161425e565b905082815283838301111561307f57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461077757600080fd5b600082601f8301126130bd578081fd5b813560206130d26130cd83614287565b61425e565b82815281810190858301838502870184018810156130ee578586fd5b855b858110156131135761310182613096565b845292840192908401906001016130f0565b5090979650505050505050565b8035801515811461077757600080fd5b600082601f830112613140578081fd5b611cc98383356020850161303f565b600060208284031215613160578081fd5b611cc982613096565b6000806040838503121561317b578081fd5b61318483613096565b915061319260208401613096565b90509250929050565b6000806000606084860312156131af578081fd5b6131b884613096565b92506131c660208501613096565b9150604084013590509250925092565b600080600080608085870312156131eb578081fd5b6131f485613096565b935061320260208601613096565b92506040850135915060608501356001600160401b03811115613223578182fd5b8501601f81018713613233578182fd5b6132428782356020840161303f565b91505092959194509250565b60008060408385031215613260578182fd5b61326983613096565b915061319260208401613120565b60008060408385031215613289578182fd5b61329283613096565b915060208301356001600160401b038111156132ac578182fd5b6132b885828601613130565b9150509250929050565b600080604083850312156132d4578182fd5b6132dd83613096565b946020939093013593505050565b6000806000606084860312156132ff578283fd5b61330884613096565b92506020840135915060408401356001600160401b03811115613329578182fd5b61333586828701613130565b9150509250925092565b600080600060608486031215613353578081fd5b83356001600160401b0380821115613369578283fd5b613375878388016130ad565b9450602086013591508082111561338a578283fd5b5061339786828701613130565b9250506133a660408501613120565b90509250925092565b6000602082840312156133c0578081fd5b8135611cc9816143e4565b6000602082840312156133dc578081fd5b8151611cc9816143e4565b6000602082840312156133f8578081fd5b81356001600160401b0381111561340d578182fd5b6118e084828501613130565b6000806000806080858703121561342e578182fd5b84356001600160401b03811115613443578283fd5b61344f87828801613130565b94505061345e60208601613120565b925061346c60408601613120565b9396929550929360600135925050565b60008060008060008060008060006101208a8c03121561349a578687fd5b89356001600160401b038111156134af578788fd5b6134bb8c828d01613130565b9950506134ca60208b01613120565b97506134d860408b01613120565b989b979a5097986060810135985060808101359760a0820135975060c0820135965060e08201359550610100909101359350915050565b600080600060608486031215613523578081fd5b83356001600160401b0380821115613539578283fd5b61354587838801613130565b9450602086013593506040860135915080821115613561578283fd5b50613335868287016130ad565b60008060008060808587031215613583578182fd5b84356001600160401b0380821115613599578384fd5b6135a588838901613130565b9550602091508187013594506040870135818111156135c2578485fd5b6135ce89828a016130ad565b9450506060870135818111156135e2578384fd5b87019050601f810188136135f4578283fd5b80356136026130cd82614287565b81815283810190838501865b84811015613637576136258d888435890101613130565b8452928601929086019060010161360e565b5050809550505050505092959194509250565b60006020828403121561365b578081fd5b5035919050565b60008060408385031215613674578182fd5b8235915060208301356001600160401b038111156132ac578182fd5b15159052565b600081518084526136ae81602086016020860161430c565b601f01601f19169290920160200192915050565b600082516136d481846020870161430c565b9190910192915050565b600083516136f081846020880161430c565b83519083019061370481836020880161430c565b01949350505050565b672530b7169918191960c11b815260080190565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061376b90830184613696565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b818110156137c6578351835292840192918401916001016137aa565b50909695505050505050565b901515815260200190565b600060208252611cc96020830184613696565b60208082526021908201527f584f4e453a204c696d6974206d6178207465616d20616d6f756e74206572726f6040820152603960f91b606082015260800190565b60208082526022908201527f584f4e453a2063616e27742075706461746520746f20696e76616c696420706c60408201526130b760f11b606082015260800190565b6020808252601290820152712c27a7229d1024b73b30b634b210283630b760711b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526019908201527f584f4e453a20506c616e206973206e6f74206578697374656400000000000000604082015260600190565b60208082526024908201527f584f4e453a204c696d6974206d61782061697264726f7020616d6f756e742065604082015263393937b960e11b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526037908201527f584f4e453a2077686974656c6973742070726963652063616e2774206265206c60408201527f6f776572207468616e206d696e696d756d207072696365000000000000000000606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526017908201527f584f4e453a206d696e696d756d206d696e742069732031000000000000000000604082015260600190565b6020808252601b908201527f584f4e453a2045786365656420506c616e204d6178206c696d69740000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602e908201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60408201526d32bc34b9ba32b73a103a37b5b2b760911b606082015260800190565b6020808252601d908201527f584f4e453a20506c616e20697320616c72656164792065786973746564000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602d908201527f584f4e453a2070726963652063616e2774206265206c6f776572207468616e2060408201526c6d696e696d756d20707269636560981b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526017908201527f584f4e453a2056616c75652042656c6f77205072696365000000000000000000604082015260600190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601b908201527f584f4e453a205468697320706c616e206973206e6f74206f70656e0000000000604082015260600190565b6020808252601f908201527f584f4e453a20457863656564204d617820506572204d696e74206c696d697400604082015260600190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b60208082526045908201527f584f4e453a205468697320706c616e2069732077686974656c6973742073616c60408201527f6520616e6420796f75722061646472657373206973206e6f742077686974656c6060820152641a5cdd195960da1b608082015260a00190565b60006020825282516101808060208501526141ae6101a0850183613696565b915060208501516141c26040860182613690565b5060408501516141d56060860182613690565b5060608501516080850152608085015160a085015260a085015160c085015260c085015160e085015260e085015161010081818701528087015191505061012081818701528087015191505061014081818701528087015191505061016081818701528087015191505061424b82860182613690565b5090949350505050565b90815260200190565b6040518181016001600160401b038111828210171561427f5761427f6143ce565b604052919050565b60006001600160401b038211156142a0576142a06143ce565b5060209081020190565b600082198211156142bd576142bd6143a2565b500190565b6000826142d1576142d16143b8565b500490565b60008160001904831182151516156142f0576142f06143a2565b500290565b600082821015614307576143076143a2565b500390565b60005b8381101561432757818101518382015260200161430f565b838111156110a25750506000910152565b60028104600182168061434c57607f821691505b6020821081141561436d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415614387576143876143a2565b5060010190565b60008261439d5761439d6143b8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b2357600080fdfea26469706673582212201d11dfc4d63ec6272c3c082e9fc96742052a4ea779a6e2350ee07be52ee1186f64736f6c63430008000033

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.