ETH Price: $3,271.93 (-4.21%)
Gas: 13 Gwei

Bored Bananas (BANANA)
 

Overview

TokenID

3816

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Bored Bananas is an ERC721 NFT collection containing 10,011 randomly generated Bananas minted on the Ethereum Blockchain. This NFT accrues $BANANA tokens over time.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BoredBananas

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

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

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./BananaToken.sol";

contract BoredBananas is Ownable, ERC721Enumerable {
  using SafeMath for uint256;
  using Strings for uint256;

  uint256 public constant mintPrice = 50000000000000000; // 0.05 ETH
  uint8 public constant mintLimit = 20;

  uint16 public supplyLimit = 10000;
  bool public saleActive = false;

  address[] public winningAddresses;
  uint256[] public winningTokens;

  string public baseUri;
  BananaToken private tokenContract;

  event WinnerSelected(address winnerAddress, uint256 winningTokenId);
  event GoldenBananaSelected(address winnerAddress, uint256 winningTokenId);

  constructor(
    string memory tokenBaseUri
  ) ERC721("Bored Bananas", "BANANA") {
    baseUri = tokenBaseUri;

    tokenContract = new BananaToken(msg.sender);
  }

  function tokenContractAddress() public view returns (address) {
    return address(tokenContract);
  }

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

  function setBaseURI(string calldata newBaseUri) external onlyOwner {
    baseUri = newBaseUri;
  }

  function toggleSaleActive() public onlyOwner {
    saleActive = !saleActive;
  }

  function buyBanana(uint numberOfTokens) public payable {
    require(saleActive, "Sale is not active");
    require(numberOfTokens <= mintLimit, "No more than 20 Bananas at a time");
    require(msg.value >= mintPrice.mul(numberOfTokens), "Insufficient payment");

    _mintBanana(numberOfTokens);
  }

  function _mintBanana(uint numberOfTokens) private {
    require(totalSupply().add(numberOfTokens) <= (supplyLimit + 10), "Not enough bananas left");

    uint256 newTokenId = totalSupply().sub(winningTokens.length);
    for(uint i = 0; i < numberOfTokens; i++) {
      newTokenId = newTokenId + 1;
      _safeMint(msg.sender, newTokenId);
    }

    // if we have reached a new batch of 1000 tokens, select a winning token from the previous batch of 1000
    uint256 batch = newTokenId.div(1000);
    if (winningTokens.length < batch) {
      (bool success, ) = msg.sender.call{value: 10000000000000000}(""); // refund 0.01 ETH to compensate for higher gas costs
      require(success, "Failed to send compensation for gas");

      _selectBatchWinner(batch);

      if (newTokenId == 10000) {
        _selectGoldenBanana();
      }
    }
  }

  function _selectBatchWinner(uint batch) private {
    require(batch >= 1 && batch <= 10);
    
    uint256 winningToken = batch.sub(1).mul(1000).add(uint256(keccak256(abi.encodePacked(block.gaslimit, block.timestamp))) % 1000).add(1);
    winningTokens.push(winningToken);

    address winner = ownerOf(winningToken);
    winningAddresses.push(winner);

    emit WinnerSelected(winner, winningToken);
    _safeMint(winner, batch.add(10000));
  }

  function _selectGoldenBanana() private {
    uint256 winningToken = (uint256(keccak256(abi.encodePacked(block.timestamp, block.gaslimit))) % 10000).add(1);
    winningTokens.push(winningToken);

    address winner = ownerOf(winningToken);
    winningAddresses.push(winner);

    emit GoldenBananaSelected(winner, winningToken);
    _safeMint(winner, 0);
  }

  function winners() public view returns (address[] memory, uint256[] memory){
    return (winningAddresses, winningTokens);
  }

  function withdraw() public onlyOwner {
    require(address(this).balance > 0, "No balance to withdraw");

    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Failed to withdraw payment");
  }

  function bananasOwnedBy(address wallet) public view returns(uint256[] memory) {
    uint tokenCount = balanceOf(wallet);

    uint256[] memory ownedTokenIds = new uint256[](tokenCount);
    for(uint i = 0; i < tokenCount; i++){
    ownedTokenIds[i] = tokenOfOwnerByIndex(wallet, i);
    }

    return ownedTokenIds;
  }

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

    tokenContract.bananaTransferred(from, to);
  }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 19 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 19 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 19 : SafeMath.sol
// SPDX-License-Identifier: MIT

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 no longer needed starting with Solidity 0.8. 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 6 of 19 : BananaToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./BoredBananas.sol";

contract BananaToken is ERC20Burnable, Ownable {
  using SafeMath for uint256;

  mapping(address => uint256) private _cBalance;
  mapping(address => uint256) private _cBlockRef;
  mapping(address => uint256) private _nftBalance;
  uint256 public totalNFTs;
  uint256 public totalBurned;
  uint256 public halvingBlockInterval = 1 << 18; // The interval at the growth rate halves, 1 << 18 = 262144 blocks
  uint256 public startingGrowthRate = 10; // The rate at which new tokens are generated in a Banana owner's wallet, starts at 1 << 10 = 1024 blocks
  uint256 public growthRateFloor = 15; // The lowest growth rate which will not be halved anymore, 1 << 15 = 32768 blocks

  uint256 public startingBlock = 0; // The block from which token generation starts, 0 means that token generation has not been activated yet

  BoredBananas private creator;
  
  constructor(address contractOwner) ERC20("Bored Banana Token", "$BANANA") {
    transferOwnership(contractOwner);
    creator = BoredBananas(msg.sender);
  }

  function boredBananaContractAddress() public view returns (address) {
    return address(creator);
  }

  modifier onlyCreator() {
    require(address(creator) == msg.sender, "Only the parent BoredBananas ERC721 contract can perform this action");
    _;
  }

  function decimals() public pure override returns (uint8) {
    return 0;
  }

  function totalSupply() public view override returns (uint256) {
    // supply = 0 if token generation has not been activated
    if (startingBlock == 0) return 0; 

    return _getGrowthToBlock(startingBlock, block.number).mul(totalNFTs).sub(totalBurned);
  }

  function balanceOf(address account) public view override returns (uint256) {
    return _cBalance[account] + _getGrowthToBlock(_cBlockRef[account], block.number).mul(_nftBalance[account]);
  }

  function _commitBalance(address account) private returns (uint256) {
    if (_nftBalance[account] > 0) {
      _cBalance[account] = balanceOf(account);
    }
    
    _cBlockRef[account] = block.number;

    return _cBalance[account];
  }

  function _getGrowthToBlock(uint256 fromBlock, uint256 toBlock) private view returns (uint256) {
    // 0 growth if token generation has not been activated
    if (startingBlock == 0) return 0;
    if (fromBlock < startingBlock) fromBlock = startingBlock;
    
    uint256 refBlock = startingBlock;
    uint256 rate = startingGrowthRate;
    uint256 total = 0;
    while((fromBlock > (refBlock + halvingBlockInterval)) && (rate < growthRateFloor)) {
      rate++;
      refBlock += halvingBlockInterval;
    }

    // start = last block before fromBlock where growth should occur
    uint256 start = refBlock + (((fromBlock - refBlock) >> rate) << rate); 
    
    // if fromBlock and toBlock are within the same halving interval
    if ((toBlock < (refBlock + halvingBlockInterval)) || (rate == growthRateFloor)) {
      return (toBlock - start) >> rate;
    }

    total += (refBlock + halvingBlockInterval - start) >> rate;
    if (rate < growthRateFloor) rate++;
    refBlock += halvingBlockInterval;

    while ((toBlock > (refBlock + halvingBlockInterval)) && (rate < growthRateFloor)) {
      total += halvingBlockInterval >> rate;
      rate++;
      refBlock += halvingBlockInterval;
    }

    total += (toBlock - refBlock) >> rate;

    return total;
  }

  function _transfer(address sender, address recipient, uint256 amount) internal override {
      require(sender != address(0), "ERC20: transfer from the zero address");
      require(recipient != address(0), "ERC20: transfer to the zero address");

      uint256 senderBalance = _commitBalance(sender);
      uint256 recipientBalance = _commitBalance(recipient);

      require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
      unchecked {
          _cBalance[sender] = senderBalance - amount;
      }
      _cBalance[recipient] = recipientBalance + amount;

      emit Transfer(sender, recipient, amount);
  }

  function _burn(address account, uint256 amount) internal override {
      require(account != address(0), "ERC20: burn from the zero address");

      uint256 accountBalance = _commitBalance(account);
      require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
      unchecked {
          _cBalance[account] = accountBalance - amount;
      }
      totalBurned += amount;

      emit Transfer(account, address(0), amount);
  }

  function bananaTransferred(address from, address to) public onlyCreator {
    if (from == address(0)) {
      require(startingBlock == 0, "Token generation has already been activated");
      totalNFTs++;
    } else {
      _commitBalance(from);
      _nftBalance[from] -= 1;
    }

    _commitBalance(to);
    _nftBalance[to] += 1;
  }

  function activate() external onlyOwner{
    require(startingBlock == 0, "Already activated");

    startingBlock = block.number;
  }
}

File 7 of 19 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 8 of 19 : ERC721.sol
// SPDX-License-Identifier: MIT

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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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 Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("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 9 of 19 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 19 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 19 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 12 of 19 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 13 of 19 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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 14 of 19 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

File 16 of 19 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

File 17 of 19 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens 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 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 18 of 19 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 19 of 19 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenBaseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"winnerAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"winningTokenId","type":"uint256"}],"name":"GoldenBananaSelected","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"winnerAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"winningTokenId","type":"uint256"}],"name":"WinnerSelected","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"bananasOwnedBy","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"buyBanana","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"winners","outputs":[{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"winningAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"winningTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b805462ffffff19166127101790553480156200002157600080fd5b506040516200420238038062004202833981016040819052620000449162000253565b6040518060400160405280600d81526020016c426f7265642042616e616e617360981b8152506040518060400160405280600681526020016542414e414e4160d01b815250620000a36200009d6200014b60201b60201c565b6200014f565b8151620000b89060019060208501906200019f565b508051620000ce9060029060208401906200019f565b50508151620000e69150600e9060208401906200019f565b5033604051620000f6906200022e565b6001600160a01b039091168152602001604051809103906000f08015801562000123573d6000803e3d6000fd5b50600f80546001600160a01b0319166001600160a01b0392909216919091179055506200037c565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001ad9062000329565b90600052602060002090601f016020900481019282620001d157600085556200021c565b82601f10620001ec57805160ff19168380011785556200021c565b828001600101855582156200021c579182015b828111156200021c578251825591602001919060010190620001ff565b506200022a9291506200023c565b5090565b6115be8062002c4483390190565b5b808211156200022a57600081556001016200023d565b6000602080838503121562000266578182fd5b82516001600160401b03808211156200027d578384fd5b818501915085601f83011262000291578384fd5b815181811115620002a657620002a662000366565b604051601f8201601f19908116603f01168101908382118183101715620002d157620002d162000366565b816040528281528886848701011115620002e9578687fd5b8693505b828410156200030c5784840186015181850187015292850192620002ed565b828411156200031d57868684830101525b98975050505050505050565b600181811c908216806200033e57607f821691505b602082108114156200036057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6128b8806200038c6000396000f3fe6080604052600436106101ee5760003560e01c806368428a1b1161010d578063996517cf116100a0578063b78d6c1d1161006f578063b78d6c1d1461057b578063b88d4fde1461059b578063c87b56dd146105bb578063e985e9c5146105db578063f2fde38b1461062457600080fd5b8063996517cf146104fc5780639abc832014610523578063a22cb46514610538578063a487bcd81461055857600080fd5b806374646fc2116100dc57806374646fc21461047e57806382edaf94146104ab5780638da5cb5b146104c957806395d89b41146104e757600080fd5b806368428a1b1461040957806370a0823114610429578063715018a614610449578063722b77d21461045e57600080fd5b80632f745c59116101855780634f6ccce7116101545780634f6ccce71461038e57806355f804b3146103ae5780636352211e146103ce5780636817c76c146103ee57600080fd5b80632f745c59146103245780633100a535146103445780633ccfd60b1461035957806342842e0e1461036e57600080fd5b8063095ea7b3116101c1578063095ea7b31461029757806318160ddd146102b757806319d1997a146102d657806323b872dd1461030457600080fd5b806301ffc9a7146101f357806303e607311461022857806306fdde031461023d578063081812fc1461025f575b600080fd5b3480156101ff57600080fd5b5061021361020e366004612432565b610644565b60405190151581526020015b60405180910390f35b61023b6102363660046124d7565b61066f565b005b34801561024957600080fd5b5061025261077f565b60405161021f919061262a565b34801561026b57600080fd5b5061027f61027a3660046124d7565b610811565b6040516001600160a01b03909116815260200161021f565b3480156102a357600080fd5b5061023b6102b2366004612409565b6108a6565b3480156102c357600080fd5b506009545b60405190815260200161021f565b3480156102e257600080fd5b50600b546102f19061ffff1681565b60405161ffff909116815260200161021f565b34801561031057600080fd5b5061023b61031f3660046122bf565b6109bc565b34801561033057600080fd5b506102c861033f366004612409565b6109ed565b34801561035057600080fd5b5061023b610a83565b34801561036557600080fd5b5061023b610acc565b34801561037a57600080fd5b5061023b6103893660046122bf565b610bd7565b34801561039a57600080fd5b506102c86103a93660046124d7565b610bf2565b3480156103ba57600080fd5b5061023b6103c936600461246a565b610c93565b3480156103da57600080fd5b5061027f6103e93660046124d7565b610cc9565b3480156103fa57600080fd5b506102c866b1a2bc2ec5000081565b34801561041557600080fd5b50600b546102139062010000900460ff1681565b34801561043557600080fd5b506102c8610444366004612273565b610d40565b34801561045557600080fd5b5061023b610dc7565b34801561046a57600080fd5b506102c86104793660046124d7565b610dfd565b34801561048a57600080fd5b5061049e610499366004612273565b610e1e565b60405161021f9190612617565b3480156104b757600080fd5b50600f546001600160a01b031661027f565b3480156104d557600080fd5b506000546001600160a01b031661027f565b3480156104f357600080fd5b50610252610edc565b34801561050857600080fd5b50610511601481565b60405160ff909116815260200161021f565b34801561052f57600080fd5b50610252610eeb565b34801561054457600080fd5b5061023b6105533660046123cf565b610f79565b34801561056457600080fd5b5061056d61103e565b60405161021f9291906125c1565b34801561058757600080fd5b5061027f6105963660046124d7565b6110fb565b3480156105a757600080fd5b5061023b6105b63660046122fa565b611125565b3480156105c757600080fd5b506102526105d63660046124d7565b61115d565b3480156105e757600080fd5b506102136105f636600461228d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561063057600080fd5b5061023b61063f366004612273565b611238565b60006001600160e01b0319821663780e9d6360e01b14806106695750610669826112d0565b92915050565b600b5462010000900460ff166106c15760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064015b60405180910390fd5b601481111561071c5760405162461bcd60e51b815260206004820152602160248201527f4e6f206d6f7265207468616e2032302042616e616e617320617420612074696d6044820152606560f81b60648201526084016106b8565b61072d66b1a2bc2ec5000082611320565b3410156107735760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b60448201526064016106b8565b61077c8161132c565b50565b60606001805461078e906127c0565b80601f01602080910402602001604051908101604052809291908181526020018280546107ba906127c0565b80156108075780601f106107dc57610100808354040283529160200191610807565b820191906000526020600020905b8154815290600101906020018083116107ea57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661088a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b8565b506000908152600560205260409020546001600160a01b031690565b60006108b182610cc9565b9050806001600160a01b0316836001600160a01b0316141561091f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106b8565b336001600160a01b038216148061093b575061093b81336105f6565b6109ad5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106b8565b6109b783836114ce565b505050565b6109c6338261153c565b6109e25760405162461bcd60e51b81526004016106b8906126c4565b6109b7838383611633565b60006109f883610d40565b8210610a5a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106b8565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610aad5760405162461bcd60e51b81526004016106b89061268f565b600b805462ff0000198116620100009182900460ff1615909102179055565b6000546001600160a01b03163314610af65760405162461bcd60e51b81526004016106b89061268f565b60004711610b3f5760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b60448201526064016106b8565b604051600090339047908381818185875af1925050503d8060008114610b81576040519150601f19603f3d011682016040523d82523d6000602084013e610b86565b606091505b505090508061077c5760405162461bcd60e51b815260206004820152601a60248201527f4661696c656420746f207769746864726177207061796d656e7400000000000060448201526064016106b8565b6109b783838360405180602001604052806000815250611125565b6000610bfd60095490565b8210610c605760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106b8565b60098281548110610c8157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000546001600160a01b03163314610cbd5760405162461bcd60e51b81526004016106b89061268f565b6109b7600e83836121be565b6000818152600360205260408120546001600160a01b0316806106695760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106b8565b60006001600160a01b038216610dab5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106b8565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610df15760405162461bcd60e51b81526004016106b89061268f565b610dfb60006117de565b565b600d8181548110610e0d57600080fd5b600091825260209091200154905081565b60606000610e2b83610d40565b905060008167ffffffffffffffff811115610e5657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610e7f578160200160208202803683370190505b50905060005b82811015610ed457610e9785826109ed565b828281518110610eb757634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610ecc816127fb565b915050610e85565b509392505050565b60606002805461078e906127c0565b600e8054610ef8906127c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610f24906127c0565b8015610f715780601f10610f4657610100808354040283529160200191610f71565b820191906000526020600020905b815481529060010190602001808311610f5457829003601f168201915b505050505081565b6001600160a01b038216331415610fd25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b8565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b606080600c600d8180548060200260200160405190810160405280929190818152602001828054801561109a57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161107c575b50505050509150808054806020026020016040519081016040528092919081815260200182805480156110ec57602002820191906000526020600020905b8154815260200190600101908083116110d8575b50505050509050915091509091565b600c818154811061110b57600080fd5b6000918252602090912001546001600160a01b0316905081565b61112f338361153c565b61114b5760405162461bcd60e51b81526004016106b8906126c4565b6111578484848461182e565b50505050565b6000818152600360205260409020546060906001600160a01b03166111dc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106b8565b60006111e6611861565b905060008151116112065760405180602001604052806000815250611231565b8061121084611870565b604051602001611221929190612555565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146112625760405162461bcd60e51b81526004016106b89061268f565b6001600160a01b0381166112c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b8565b61077c816117de565b60006001600160e01b031982166380ac58cd60e01b148061130157506001600160e01b03198216635b5e139f60e01b145b8061066957506301ffc9a760e01b6001600160e01b0319831614610669565b6000611231828461275e565b600b5461133e9061ffff16600a612715565b61ffff166113558261134f60095490565b9061198a565b11156113a35760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f7567682062616e616e6173206c65667400000000000000000060448201526064016106b8565b600d546009546000916113b69190611996565b905060005b828110156113ec576113ce826001612732565b91506113da33836119a2565b806113e4816127fb565b9150506113bb565b5060006113fb826103e86119c0565b600d549091508111156109b7576040516000903390662386f26fc10000908381818185875af1925050503d8060008114611451576040519150601f19603f3d011682016040523d82523d6000602084013e611456565b606091505b50509050806114b35760405162461bcd60e51b815260206004820152602360248201527f4661696c656420746f2073656e6420636f6d70656e736174696f6e20666f722060448201526267617360e81b60648201526084016106b8565b6114bc826119cc565b82612710141561115757611157611b29565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061150382610cc9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166115b55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b8565b60006115c083610cc9565b9050806001600160a01b0316846001600160a01b031614806115fb5750836001600160a01b03166115f084610811565b6001600160a01b0316145b8061162b57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661164682610cc9565b6001600160a01b0316146116ae5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106b8565b6001600160a01b0382166117105760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106b8565b61171b838383611c47565b6117266000826114ce565b6001600160a01b038316600090815260046020526040812080546001929061174f90849061277d565b90915550506001600160a01b038216600090815260046020526040812080546001929061177d908490612732565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611839848484611633565b61184584848484611cbe565b6111575760405162461bcd60e51b81526004016106b89061263d565b6060600e805461078e906127c0565b6060816118945750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118be57806118a8816127fb565b91506118b79050600a8361274a565b9150611898565b60008167ffffffffffffffff8111156118e757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611911576020820181803683370190505b5090505b841561162b5761192660018361277d565b9150611933600a86612816565b61193e906030612732565b60f81b81838151811061196157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611983600a8661274a565b9450611915565b60006112318284612732565b6000611231828461277d565b6119bc828260405180602001604052806000815250611dcb565b5050565b6000611231828461274a565b600181101580156119de5750600a8111155b6119e757600080fd5b6000611a4a600161134f6103e84542604051602001611a10929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c611a339190612816565b61134f6103e8611a44886001611996565b90611320565b600d805460018101825560009182527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb501829055909150611a8a82610cc9565b600c80546001810182556000919091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b03831690811790915560408051918252602082018590529192507f75060f9e79552df167b73353fee6237a75bb5ba8ea022f77224e32f152138bcb910160405180910390a16109b781611b248561271061198a565b6119a2565b6000611b7260016127104245604051602001611b4f929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c61134f9190612816565b600d805460018101825560009182527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb501829055909150611bb282610cc9565b600c80546001810182556000919091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b03831690811790915560408051918252602082018590529192507f6af2db02ca93fe456717255f327c8849b38a5cd8419a2501861579e06b598082910160405180910390a16119bc8160006119a2565b611c52838383611dfe565b600f54604051635a0c500f60e01b81526001600160a01b038581166004830152848116602483015290911690635a0c500f90604401600060405180830381600087803b158015611ca157600080fd5b505af1158015611cb5573d6000803e3d6000fd5b50505050505050565b60006001600160a01b0384163b15611dc057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d02903390899088908890600401612584565b602060405180830381600087803b158015611d1c57600080fd5b505af1925050508015611d4c575060408051601f3d908101601f19168201909252611d499181019061244e565b60015b611da6573d808015611d7a576040519150601f19603f3d011682016040523d82523d6000602084013e611d7f565b606091505b508051611d9e5760405162461bcd60e51b81526004016106b89061263d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061162b565b506001949350505050565b611dd58383611eb6565b611de26000848484611cbe565b6109b75760405162461bcd60e51b81526004016106b89061263d565b6001600160a01b038316611e5957611e5481600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611e7c565b816001600160a01b0316836001600160a01b031614611e7c57611e7c8382612004565b6001600160a01b038216611e93576109b7816120a1565b826001600160a01b0316826001600160a01b0316146109b7576109b7828261217a565b6001600160a01b038216611f0c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b8565b6000818152600360205260409020546001600160a01b031615611f715760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b8565b611f7d60008383611c47565b6001600160a01b0382166000908152600460205260408120805460019290611fa6908490612732565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161201184610d40565b61201b919061277d565b60008381526008602052604090205490915080821461206e576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906120b39060019061277d565b6000838152600a6020526040812054600980549394509092849081106120e957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806009838154811061211857634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061215e57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061218583610d40565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546121ca906127c0565b90600052602060002090601f0160209004810192826121ec5760008555612232565b82601f106122055782800160ff19823516178555612232565b82800160010185558215612232579182015b82811115612232578235825591602001919060010190612217565b5061223e929150612242565b5090565b5b8082111561223e5760008155600101612243565b80356001600160a01b038116811461226e57600080fd5b919050565b600060208284031215612284578081fd5b61123182612257565b6000806040838503121561229f578081fd5b6122a883612257565b91506122b660208401612257565b90509250929050565b6000806000606084860312156122d3578081fd5b6122dc84612257565b92506122ea60208501612257565b9150604084013590509250925092565b6000806000806080858703121561230f578081fd5b61231885612257565b935061232660208601612257565b925060408501359150606085013567ffffffffffffffff80821115612349578283fd5b818701915087601f83011261235c578283fd5b81358181111561236e5761236e612856565b604051601f8201601f19908116603f0116810190838211818310171561239657612396612856565b816040528281528a60208487010111156123ae578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156123e1578182fd5b6123ea83612257565b9150602083013580151581146123fe578182fd5b809150509250929050565b6000806040838503121561241b578182fd5b61242483612257565b946020939093013593505050565b600060208284031215612443578081fd5b81356112318161286c565b60006020828403121561245f578081fd5b81516112318161286c565b6000806020838503121561247c578182fd5b823567ffffffffffffffff80821115612493578384fd5b818501915085601f8301126124a6578384fd5b8135818111156124b4578485fd5b8660208285010111156124c5578485fd5b60209290920196919550909350505050565b6000602082840312156124e8578081fd5b5035919050565b6000815180845260208085019450808401835b8381101561251e57815187529582019590820190600101612502565b509495945050505050565b60008151808452612541816020860160208601612794565b601f01601f19169290920160200192915050565b60008351612567818460208801612794565b83519083019061257b818360208801612794565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125b790830184612529565b9695505050505050565b604080825283519082018190526000906020906060840190828701845b828110156126035781516001600160a01b0316845292840192908401906001016125de565b505050838103828501526125b781866124ef565b60208152600061123160208301846124ef565b6020815260006112316020830184612529565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600061ffff80831681851680830382111561257b5761257b61282a565b600082198211156127455761274561282a565b500190565b60008261275957612759612840565b500490565b60008160001904831182151516156127785761277861282a565b500290565b60008282101561278f5761278f61282a565b500390565b60005b838110156127af578181015183820152602001612797565b838111156111575750506000910152565b600181811c908216806127d457607f821691505b602082108114156127f557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561280f5761280f61282a565b5060010190565b60008261282557612825612840565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461077c57600080fdfea26469706673582212200cf6aa4f148cf0880bd0372a5ad5d667792ed56d9f054a1ad8d5fbdeba6af6bc64736f6c63430008040033608060405262040000600b55600a600c55600f600d556000600e553480156200002757600080fd5b50604051620015be380380620015be8339810160408190526200004a91620002cb565b60408051808201825260128152712137b932b2102130b730b730902a37b5b2b760711b6020808301918252835180850190945260078452662442414e414e4160c81b908401528151919291620000a39160039162000225565b508051620000b990600490602084019062000225565b505050620000d6620000d0620000fa60201b60201c565b620000fe565b620000e18162000150565b50600f80546001600160a01b0319163317905562000338565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038116620002175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620001a7565b6200022281620000fe565b50565b8280546200023390620002fb565b90600052602060002090601f016020900481019282620002575760008555620002a2565b82601f106200027257805160ff1916838001178555620002a2565b82800160010185558215620002a2579182015b82811115620002a257825182559160200191906001019062000285565b50620002b0929150620002b4565b5090565b5b80821115620002b05760008155600101620002b5565b600060208284031215620002dd578081fd5b81516001600160a01b0381168114620002f4578182fd5b9392505050565b600181811c908216806200031057607f821691505b602082108114156200033257634e487b7160e01b600052602260045260246000fd5b50919050565b61127680620003486000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de578063a5a44ddf11610097578063d89135cd11610071578063d89135cd146102ea578063d91c98d3146102f3578063dd62ed3e146102fc578063f2fde38b1461033557600080fd5b8063a5a44ddf146102bd578063a9059cbb146102c6578063cfac278d146102d957600080fd5b806370a082311461024f578063715018a61461026257806379cc67901461026a5780638da5cb5b1461027d57806395d89b41146102a2578063a457c2d7146102aa57600080fd5b806323b872dd1161013057806323b872dd146101eb5780632e36634c146101fe578063313ce56714610207578063395093511461021657806342966c68146102295780635a0c500f1461023c57600080fd5b806306fdde031461017857806307d56f6914610196578063095ea7b3146101ad5780630d0e96da146101d05780630f15f4c0146101d957806318160ddd146101e3575b600080fd5b610180610348565b60405161018d91906110fe565b60405180910390f35b61019f600c5481565b60405190815260200161018d565b6101c06101bb3660046110bd565b6103da565b604051901515815260200161018d565b61019f60095481565b6101e16103f1565b005b61019f61046e565b6101c06101f9366004611082565b6104aa565b61019f600d5481565b6040516000815260200161018d565b6101c06102243660046110bd565b610554565b6101e16102373660046110e6565b610590565b6101e161024a366004611050565b61059d565b61019f61025d366004611036565b61072c565b6101e1610782565b6101e16102783660046110bd565b6107b8565b6005546001600160a01b03165b6040516001600160a01b03909116815260200161018d565b61018061083e565b6101c06102b83660046110bd565b61084d565b61019f600b5481565b6101c06102d43660046110bd565b6108e6565b600f546001600160a01b031661028a565b61019f600a5481565b61019f600e5481565b61019f61030a366004611050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101e1610343366004611036565b6108f3565b606060038054610357906111d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610383906111d4565b80156103d05780601f106103a5576101008083540402835291602001916103d0565b820191906000526020600020905b8154815290600101906020018083116103b357829003601f168201915b5050505050905090565b60006103e733848461098b565b5060015b92915050565b6005546001600160a01b031633146104245760405162461bcd60e51b815260040161041b90611151565b60405180910390fd5b600e54156104685760405162461bcd60e51b8152602060048201526011602482015270105b1c9958591e481858dd1a5d985d1959607a1b604482015260640161041b565b43600e55565b6000600e54600014156104815750600090565b6104a5600a5461049f600954610499600e5443610ab0565b90610c3c565b90610c4f565b905090565b60006104b7848484610c5b565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561053c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161041b565b610549853385840361098b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103e791859061058b908690611186565b61098b565b61059a3382610e24565b50565b600f546001600160a01b0316331461062b5760405162461bcd60e51b8152602060048201526044602482018190527f4f6e6c792074686520706172656e7420426f72656442616e616e617320455243908201527f37323120636f6e74726163742063616e20706572666f726d20746869732061636064820152633a34b7b760e11b608482015260a40161041b565b6001600160a01b0382166106b757600e541561069d5760405162461bcd60e51b815260206004820152602b60248201527f546f6b656e2067656e65726174696f6e2068617320616c72656164792062656560448201526a1b881858dd1a5d985d195960aa1b606482015260840161041b565b600980549060006106ad8361120f565b91905055506106f0565b6106c082610f5e565b506001600160a01b03821660009081526008602052604081208054600192906106ea9084906111bd565b90915550505b6106f981610f5e565b506001600160a01b0381166000908152600860205260408120805460019290610723908490611186565b90915550505050565b6001600160a01b038116600090815260086020908152604080832054600790925282205461075f91906104999043610ab0565b6001600160a01b0383166000908152600660205260409020546103eb9190611186565b6005546001600160a01b031633146107ac5760405162461bcd60e51b815260040161041b90611151565b6107b66000610fc8565b565b60006107c4833361030a565b9050818110156108225760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b606482015260840161041b565b61082f833384840361098b565b6108398383610e24565b505050565b606060048054610357906111d4565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108cf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161041b565b6108dc338585840361098b565b5060019392505050565b60006103e7338484610c5b565b6005546001600160a01b0316331461091d5760405162461bcd60e51b815260040161041b90611151565b6001600160a01b0381166109825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161041b565b61059a81610fc8565b6001600160a01b0383166109ed5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161041b565b6001600160a01b038216610a4e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161041b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000600e5460001415610ac5575060006103eb565b600e54831015610ad557600e5492505b600e54600c5460005b600b54610aeb9084611186565b86118015610afa5750600d5482105b15610b215781610b098161120f565b925050600b5483610b1a9190611186565b9250610ade565b60008280610b2f868a6111bd565b610b3d92911c901b85611186565b9050600b5484610b4d9190611186565b861080610b5b5750600d5483145b15610b785782610b6b82886111bd565b901c9450505050506103eb565b8281600b5486610b889190611186565b610b9291906111bd565b610b9d911c83611186565b9150600d54831015610bb75782610bb38161120f565b9350505b600b54610bc49085611186565b93505b600b54610bd49085611186565b86118015610be35750600d5483105b15610c1b57600b54610bf790841c83611186565b915082610c038161120f565b935050600b5484610c149190611186565b9350610bc7565b82610c2685886111bd565b610c31911c83611186565b979650505050505050565b6000610c48828461119e565b9392505050565b6000610c4882846111bd565b6001600160a01b038316610cbf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161041b565b6001600160a01b038216610d215760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161041b565b6000610d2c84610f5e565b90506000610d3984610f5e565b905082821015610d9a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161041b565b6001600160a01b03851660009081526006602052604090208383039055610dc18382611186565b6001600160a01b0380861660008181526006602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e159087815260200190565b60405180910390a35050505050565b6001600160a01b038216610e845760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161041b565b6000610e8f83610f5e565b905081811015610eec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161041b565b6001600160a01b03831660009081526006602052604081208383039055600a8054849290610f1b908490611186565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610aa3565b6001600160a01b03811660009081526008602052604081205415610f9f57610f858261072c565b6001600160a01b0383166000908152600660205260409020555b506001600160a01b03166000908152600760209081526040808320439055600690915290205490565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b038116811461103157600080fd5b919050565b600060208284031215611047578081fd5b610c488261101a565b60008060408385031215611062578081fd5b61106b8361101a565b91506110796020840161101a565b90509250929050565b600080600060608486031215611096578081fd5b61109f8461101a565b92506110ad6020850161101a565b9150604084013590509250925092565b600080604083850312156110cf578182fd5b6110d88361101a565b946020939093013593505050565b6000602082840312156110f7578081fd5b5035919050565b6000602080835283518082850152825b8181101561112a5785810183015185820160400152820161110e565b8181111561113b5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156111995761119961122a565b500190565b60008160001904831182151516156111b8576111b861122a565b500290565b6000828210156111cf576111cf61122a565b500390565b600181811c908216806111e857607f821691505b6020821081141561120957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156112235761122361122a565b5060010190565b634e487b7160e01b600052601160045260246000fdfea264697066735822122054290fc709b518c343b2462cebe0a3fdfb562e2415979f10cda09590687533cf64736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d586a7555637677446f7179786474336e4a6f6e38395a6a6d486b5779654a774d4573475a426a61486a5164442f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806368428a1b1161010d578063996517cf116100a0578063b78d6c1d1161006f578063b78d6c1d1461057b578063b88d4fde1461059b578063c87b56dd146105bb578063e985e9c5146105db578063f2fde38b1461062457600080fd5b8063996517cf146104fc5780639abc832014610523578063a22cb46514610538578063a487bcd81461055857600080fd5b806374646fc2116100dc57806374646fc21461047e57806382edaf94146104ab5780638da5cb5b146104c957806395d89b41146104e757600080fd5b806368428a1b1461040957806370a0823114610429578063715018a614610449578063722b77d21461045e57600080fd5b80632f745c59116101855780634f6ccce7116101545780634f6ccce71461038e57806355f804b3146103ae5780636352211e146103ce5780636817c76c146103ee57600080fd5b80632f745c59146103245780633100a535146103445780633ccfd60b1461035957806342842e0e1461036e57600080fd5b8063095ea7b3116101c1578063095ea7b31461029757806318160ddd146102b757806319d1997a146102d657806323b872dd1461030457600080fd5b806301ffc9a7146101f357806303e607311461022857806306fdde031461023d578063081812fc1461025f575b600080fd5b3480156101ff57600080fd5b5061021361020e366004612432565b610644565b60405190151581526020015b60405180910390f35b61023b6102363660046124d7565b61066f565b005b34801561024957600080fd5b5061025261077f565b60405161021f919061262a565b34801561026b57600080fd5b5061027f61027a3660046124d7565b610811565b6040516001600160a01b03909116815260200161021f565b3480156102a357600080fd5b5061023b6102b2366004612409565b6108a6565b3480156102c357600080fd5b506009545b60405190815260200161021f565b3480156102e257600080fd5b50600b546102f19061ffff1681565b60405161ffff909116815260200161021f565b34801561031057600080fd5b5061023b61031f3660046122bf565b6109bc565b34801561033057600080fd5b506102c861033f366004612409565b6109ed565b34801561035057600080fd5b5061023b610a83565b34801561036557600080fd5b5061023b610acc565b34801561037a57600080fd5b5061023b6103893660046122bf565b610bd7565b34801561039a57600080fd5b506102c86103a93660046124d7565b610bf2565b3480156103ba57600080fd5b5061023b6103c936600461246a565b610c93565b3480156103da57600080fd5b5061027f6103e93660046124d7565b610cc9565b3480156103fa57600080fd5b506102c866b1a2bc2ec5000081565b34801561041557600080fd5b50600b546102139062010000900460ff1681565b34801561043557600080fd5b506102c8610444366004612273565b610d40565b34801561045557600080fd5b5061023b610dc7565b34801561046a57600080fd5b506102c86104793660046124d7565b610dfd565b34801561048a57600080fd5b5061049e610499366004612273565b610e1e565b60405161021f9190612617565b3480156104b757600080fd5b50600f546001600160a01b031661027f565b3480156104d557600080fd5b506000546001600160a01b031661027f565b3480156104f357600080fd5b50610252610edc565b34801561050857600080fd5b50610511601481565b60405160ff909116815260200161021f565b34801561052f57600080fd5b50610252610eeb565b34801561054457600080fd5b5061023b6105533660046123cf565b610f79565b34801561056457600080fd5b5061056d61103e565b60405161021f9291906125c1565b34801561058757600080fd5b5061027f6105963660046124d7565b6110fb565b3480156105a757600080fd5b5061023b6105b63660046122fa565b611125565b3480156105c757600080fd5b506102526105d63660046124d7565b61115d565b3480156105e757600080fd5b506102136105f636600461228d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561063057600080fd5b5061023b61063f366004612273565b611238565b60006001600160e01b0319821663780e9d6360e01b14806106695750610669826112d0565b92915050565b600b5462010000900460ff166106c15760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064015b60405180910390fd5b601481111561071c5760405162461bcd60e51b815260206004820152602160248201527f4e6f206d6f7265207468616e2032302042616e616e617320617420612074696d6044820152606560f81b60648201526084016106b8565b61072d66b1a2bc2ec5000082611320565b3410156107735760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b60448201526064016106b8565b61077c8161132c565b50565b60606001805461078e906127c0565b80601f01602080910402602001604051908101604052809291908181526020018280546107ba906127c0565b80156108075780601f106107dc57610100808354040283529160200191610807565b820191906000526020600020905b8154815290600101906020018083116107ea57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661088a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b8565b506000908152600560205260409020546001600160a01b031690565b60006108b182610cc9565b9050806001600160a01b0316836001600160a01b0316141561091f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106b8565b336001600160a01b038216148061093b575061093b81336105f6565b6109ad5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106b8565b6109b783836114ce565b505050565b6109c6338261153c565b6109e25760405162461bcd60e51b81526004016106b8906126c4565b6109b7838383611633565b60006109f883610d40565b8210610a5a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106b8565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610aad5760405162461bcd60e51b81526004016106b89061268f565b600b805462ff0000198116620100009182900460ff1615909102179055565b6000546001600160a01b03163314610af65760405162461bcd60e51b81526004016106b89061268f565b60004711610b3f5760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b60448201526064016106b8565b604051600090339047908381818185875af1925050503d8060008114610b81576040519150601f19603f3d011682016040523d82523d6000602084013e610b86565b606091505b505090508061077c5760405162461bcd60e51b815260206004820152601a60248201527f4661696c656420746f207769746864726177207061796d656e7400000000000060448201526064016106b8565b6109b783838360405180602001604052806000815250611125565b6000610bfd60095490565b8210610c605760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106b8565b60098281548110610c8157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000546001600160a01b03163314610cbd5760405162461bcd60e51b81526004016106b89061268f565b6109b7600e83836121be565b6000818152600360205260408120546001600160a01b0316806106695760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106b8565b60006001600160a01b038216610dab5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106b8565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610df15760405162461bcd60e51b81526004016106b89061268f565b610dfb60006117de565b565b600d8181548110610e0d57600080fd5b600091825260209091200154905081565b60606000610e2b83610d40565b905060008167ffffffffffffffff811115610e5657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610e7f578160200160208202803683370190505b50905060005b82811015610ed457610e9785826109ed565b828281518110610eb757634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610ecc816127fb565b915050610e85565b509392505050565b60606002805461078e906127c0565b600e8054610ef8906127c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610f24906127c0565b8015610f715780601f10610f4657610100808354040283529160200191610f71565b820191906000526020600020905b815481529060010190602001808311610f5457829003601f168201915b505050505081565b6001600160a01b038216331415610fd25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b8565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b606080600c600d8180548060200260200160405190810160405280929190818152602001828054801561109a57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161107c575b50505050509150808054806020026020016040519081016040528092919081815260200182805480156110ec57602002820191906000526020600020905b8154815260200190600101908083116110d8575b50505050509050915091509091565b600c818154811061110b57600080fd5b6000918252602090912001546001600160a01b0316905081565b61112f338361153c565b61114b5760405162461bcd60e51b81526004016106b8906126c4565b6111578484848461182e565b50505050565b6000818152600360205260409020546060906001600160a01b03166111dc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106b8565b60006111e6611861565b905060008151116112065760405180602001604052806000815250611231565b8061121084611870565b604051602001611221929190612555565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146112625760405162461bcd60e51b81526004016106b89061268f565b6001600160a01b0381166112c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b8565b61077c816117de565b60006001600160e01b031982166380ac58cd60e01b148061130157506001600160e01b03198216635b5e139f60e01b145b8061066957506301ffc9a760e01b6001600160e01b0319831614610669565b6000611231828461275e565b600b5461133e9061ffff16600a612715565b61ffff166113558261134f60095490565b9061198a565b11156113a35760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f7567682062616e616e6173206c65667400000000000000000060448201526064016106b8565b600d546009546000916113b69190611996565b905060005b828110156113ec576113ce826001612732565b91506113da33836119a2565b806113e4816127fb565b9150506113bb565b5060006113fb826103e86119c0565b600d549091508111156109b7576040516000903390662386f26fc10000908381818185875af1925050503d8060008114611451576040519150601f19603f3d011682016040523d82523d6000602084013e611456565b606091505b50509050806114b35760405162461bcd60e51b815260206004820152602360248201527f4661696c656420746f2073656e6420636f6d70656e736174696f6e20666f722060448201526267617360e81b60648201526084016106b8565b6114bc826119cc565b82612710141561115757611157611b29565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061150382610cc9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166115b55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b8565b60006115c083610cc9565b9050806001600160a01b0316846001600160a01b031614806115fb5750836001600160a01b03166115f084610811565b6001600160a01b0316145b8061162b57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661164682610cc9565b6001600160a01b0316146116ae5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106b8565b6001600160a01b0382166117105760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106b8565b61171b838383611c47565b6117266000826114ce565b6001600160a01b038316600090815260046020526040812080546001929061174f90849061277d565b90915550506001600160a01b038216600090815260046020526040812080546001929061177d908490612732565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611839848484611633565b61184584848484611cbe565b6111575760405162461bcd60e51b81526004016106b89061263d565b6060600e805461078e906127c0565b6060816118945750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118be57806118a8816127fb565b91506118b79050600a8361274a565b9150611898565b60008167ffffffffffffffff8111156118e757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611911576020820181803683370190505b5090505b841561162b5761192660018361277d565b9150611933600a86612816565b61193e906030612732565b60f81b81838151811061196157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611983600a8661274a565b9450611915565b60006112318284612732565b6000611231828461277d565b6119bc828260405180602001604052806000815250611dcb565b5050565b6000611231828461274a565b600181101580156119de5750600a8111155b6119e757600080fd5b6000611a4a600161134f6103e84542604051602001611a10929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c611a339190612816565b61134f6103e8611a44886001611996565b90611320565b600d805460018101825560009182527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb501829055909150611a8a82610cc9565b600c80546001810182556000919091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b03831690811790915560408051918252602082018590529192507f75060f9e79552df167b73353fee6237a75bb5ba8ea022f77224e32f152138bcb910160405180910390a16109b781611b248561271061198a565b6119a2565b6000611b7260016127104245604051602001611b4f929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c61134f9190612816565b600d805460018101825560009182527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb501829055909150611bb282610cc9565b600c80546001810182556000919091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b03831690811790915560408051918252602082018590529192507f6af2db02ca93fe456717255f327c8849b38a5cd8419a2501861579e06b598082910160405180910390a16119bc8160006119a2565b611c52838383611dfe565b600f54604051635a0c500f60e01b81526001600160a01b038581166004830152848116602483015290911690635a0c500f90604401600060405180830381600087803b158015611ca157600080fd5b505af1158015611cb5573d6000803e3d6000fd5b50505050505050565b60006001600160a01b0384163b15611dc057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d02903390899088908890600401612584565b602060405180830381600087803b158015611d1c57600080fd5b505af1925050508015611d4c575060408051601f3d908101601f19168201909252611d499181019061244e565b60015b611da6573d808015611d7a576040519150601f19603f3d011682016040523d82523d6000602084013e611d7f565b606091505b508051611d9e5760405162461bcd60e51b81526004016106b89061263d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061162b565b506001949350505050565b611dd58383611eb6565b611de26000848484611cbe565b6109b75760405162461bcd60e51b81526004016106b89061263d565b6001600160a01b038316611e5957611e5481600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611e7c565b816001600160a01b0316836001600160a01b031614611e7c57611e7c8382612004565b6001600160a01b038216611e93576109b7816120a1565b826001600160a01b0316826001600160a01b0316146109b7576109b7828261217a565b6001600160a01b038216611f0c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b8565b6000818152600360205260409020546001600160a01b031615611f715760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b8565b611f7d60008383611c47565b6001600160a01b0382166000908152600460205260408120805460019290611fa6908490612732565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161201184610d40565b61201b919061277d565b60008381526008602052604090205490915080821461206e576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906120b39060019061277d565b6000838152600a6020526040812054600980549394509092849081106120e957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806009838154811061211857634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061215e57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061218583610d40565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546121ca906127c0565b90600052602060002090601f0160209004810192826121ec5760008555612232565b82601f106122055782800160ff19823516178555612232565b82800160010185558215612232579182015b82811115612232578235825591602001919060010190612217565b5061223e929150612242565b5090565b5b8082111561223e5760008155600101612243565b80356001600160a01b038116811461226e57600080fd5b919050565b600060208284031215612284578081fd5b61123182612257565b6000806040838503121561229f578081fd5b6122a883612257565b91506122b660208401612257565b90509250929050565b6000806000606084860312156122d3578081fd5b6122dc84612257565b92506122ea60208501612257565b9150604084013590509250925092565b6000806000806080858703121561230f578081fd5b61231885612257565b935061232660208601612257565b925060408501359150606085013567ffffffffffffffff80821115612349578283fd5b818701915087601f83011261235c578283fd5b81358181111561236e5761236e612856565b604051601f8201601f19908116603f0116810190838211818310171561239657612396612856565b816040528281528a60208487010111156123ae578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156123e1578182fd5b6123ea83612257565b9150602083013580151581146123fe578182fd5b809150509250929050565b6000806040838503121561241b578182fd5b61242483612257565b946020939093013593505050565b600060208284031215612443578081fd5b81356112318161286c565b60006020828403121561245f578081fd5b81516112318161286c565b6000806020838503121561247c578182fd5b823567ffffffffffffffff80821115612493578384fd5b818501915085601f8301126124a6578384fd5b8135818111156124b4578485fd5b8660208285010111156124c5578485fd5b60209290920196919550909350505050565b6000602082840312156124e8578081fd5b5035919050565b6000815180845260208085019450808401835b8381101561251e57815187529582019590820190600101612502565b509495945050505050565b60008151808452612541816020860160208601612794565b601f01601f19169290920160200192915050565b60008351612567818460208801612794565b83519083019061257b818360208801612794565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125b790830184612529565b9695505050505050565b604080825283519082018190526000906020906060840190828701845b828110156126035781516001600160a01b0316845292840192908401906001016125de565b505050838103828501526125b781866124ef565b60208152600061123160208301846124ef565b6020815260006112316020830184612529565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600061ffff80831681851680830382111561257b5761257b61282a565b600082198211156127455761274561282a565b500190565b60008261275957612759612840565b500490565b60008160001904831182151516156127785761277861282a565b500290565b60008282101561278f5761278f61282a565b500390565b60005b838110156127af578181015183820152602001612797565b838111156111575750506000910152565b600181811c908216806127d457607f821691505b602082108114156127f557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561280f5761280f61282a565b5060010190565b60008261282557612825612840565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461077c57600080fdfea26469706673582212200cf6aa4f148cf0880bd0372a5ad5d667792ed56d9f054a1ad8d5fbdeba6af6bc64736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d586a7555637677446f7179786474336e4a6f6e38395a6a6d486b5779654a774d4573475a426a61486a5164442f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenBaseUri (string): https://gateway.pinata.cloud/ipfs/QmXjuUcvwDoqyxdt3nJon89ZjmHkWyeJwMEsGZBjaHjQdD/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d586a7555637677446f7179786474336e4a6f6e38395a6a6d486b5779
Arg [4] : 654a774d4573475a426a61486a5164442f000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ 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.