ETH Price: $3,454.78 (-0.93%)
Gas: 2 Gwei

Token

BumbleBeens (BEENS)
 

Overview

Max Total Supply

1,535 BEENS

Holders

407

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 BEENS
0x59008f0afb74047b4ac82d756832dd4fb87fc3ca
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BumbleBeens

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion
File 1 of 13 : BumbleBeens.sol
// BumbleBeens by Queen Been & Varn (bumblebeens.com)

//..................................................                              ..........
//...................................................                            ...........
//........................................................ ..                 ............. 
//...............                   ............................        ................    
//.....      .                         ....  ...........................................    
//...                                            ......................................     
//..                                           @@@%@@..............................         
//                                      @@@@@@@@@   @@@@@@@@......................          
//                              @@@@     @@   @@@   @@@   @@,.....................          
//                             @@   @@@@@ @@@@@@@@@@@@@@@@@@@@/@@@@@@..............         
//                              @@@   @@@@@@@@@@@@(@@@@@&  @@@@   @@@.................      
//                                @@@@....@@@    @@@    @@...@@@@@@....................     
//..                             @@@..........*#....,@@,.......@@@.....................     
//..                   @@@@@@   @@...............................@@......................   
//...               *@@      &@@@........,@@.......@@@@...........@@@./@@@@@................
//.......   ..      @@        .@@.........@@.......,@@,............@@@      @@@.............
//................   @@@      @@........,,...@@@@.....,,............@@        @@............
//...................,@@@   @@@.....................................,@@     @@@.............
//...............,@@@@     @@,.......................................@@   @@@,..............
//..............@@@/@@(   @@(((,....................................,@@      @@@............
//.............@@@///@@@@@@((((((((((.........................(((((((@@       .@@        ...
//.............@@//////////@@(((((((((((((@@@@@@@((@@@((((((((((((((@@@       @@            
//.............@@@(////////@@(((((((((((@@(*@@//(@@///@@(((((((((((@@& @@@@@@@              
//................@@@@@@@@@@(((((((((((#@@***@@@//////@@@(((((((((@@@                       
//     ..........*@@....@@,...((((((((((@@****@@///&@@@@(((((((((@@@                        
//      .........*@@.....@@(........(((((@@@@@@@@@@((((((((((((@@@..@@.                     
//      ..........@@.......@@,.@@@@@.........((((((((((((((((@@@.....,@@                    
//             ....@@.......@@@    @@.....................@@@..@@@@....@@                   
//              ....@@@....@@@@@@@@@@@...............@@@@@.............@@#                  
//               .....@@@..............@@@@@@@@@@@@@....................@@                  
//              .........@@@..........................@@@@@@@     .@@@@@@@                  
//           ,...........,@@....@@@@@@@@@@&#@@@@@@@@@                               .       
//        ...............@@...@@@...................                            ,...........
//       .............. @@....@@......................       ...........,...................
//      .............  &@@...@@@       .....................................................
//.............        @@....@@           ..................................................

// Development help from @0xFonzy (twitter.com/0xFonzy)

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.14;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721A.sol";

contract BumbleBeens is ERC721A, Ownable {
  uint256 public hive = 8335;
  uint256 public adoptPrice = 0.03 ether;
  uint256 public adoptPriceBuzzlist = 0.025 ether;
  uint256 public adoptLimit = 2;
  uint256 public adoptLimitBuzzlist = 2;
  uint256 public adoptPhase = 0;
  bytes32 public buzzlist = 0x0;
  string public beensUrl;
  address private community = 0xcdB405c6a8Bb3A41BCD0b1dDf1A90B939Aa34194;
  address private fonzy = 0x1AF8c7140cD8AfCD6e756bf9c68320905C355658;

  mapping(uint256 => mapping(address => uint256)) public adopted;

  enum AdoptStatus {
    OFF, BUZZLIST, PUBLIC
  }

  AdoptStatus public adoptStatus;

  constructor() ERC721A("BumbleBeens", "BEENS") {}

  function publicAdopt(uint256 beens) public payable isSupplyAvailable(beens) isAdoptable(beens, adoptLimit) {
    require(adoptStatus == AdoptStatus.PUBLIC, "Public adopting has not started");
    require(msg.sender == tx.origin, "Only humans can adopt beens");
    require(msg.value >= adoptPrice * beens, "Insufficient funds for adoption");
    adopted[adoptPhase][msg.sender] += beens;
    _safeMint(msg.sender, beens);
  }

  function buzzlistAdopt(uint256 beens, bytes32[] calldata proof) public payable isSupplyAvailable(beens) isAdoptable(beens, adoptLimitBuzzlist) {
    require(adoptStatus >= AdoptStatus.BUZZLIST, "Buzzlist adopt has not started");
    require(isBuzzlisted(msg.sender, proof), "Account not on the buzzlist");
    require(msg.value >= adoptPriceBuzzlist * beens, "Insufficient funds for buzzlist adoption");
    adopted[adoptPhase][msg.sender] += beens;
    _safeMint(msg.sender, beens);
  }

  modifier isAdoptable(uint256 beens, uint256 limit) {
    require(beens > 0 && adopted[adoptPhase][msg.sender] + beens <= limit, "Adoption limit reached");
    _;
  }

  modifier isSupplyAvailable(uint256 beens) {
    require(totalSupply() + beens <= hive, "Beens supply limit exceeded");
    _;
  }

  function isBuzzlisted(address account, bytes32[] memory proof) public view returns (bool) {
    return MerkleProof.verify(proof, buzzlist, keccak256(abi.encodePacked(account)));
  }

  function queenBeenAdopt(address account, uint256 beens) external isSupplyAvailable(beens) onlyOwner {
    _safeMint(account, beens);
  }

  function setReducedHive(uint256 _hive) external onlyOwner {
    require(_hive <= hive, "Hive supply can not be increased");
    require(_hive >= totalSupply(), "Hive supply can not be lowered");
    hive = _hive;
  }

  function setAdoptionPrice(uint256 _adoptPrice) public onlyOwner {
    adoptPrice = _adoptPrice;
  }

  function setAdoptionPriceBuzzlist(uint256 _adoptPriceBuzzlist) public onlyOwner {
    adoptPriceBuzzlist = _adoptPriceBuzzlist;
  }

  function setAdoptLimit(uint256 _adoptLimit) public onlyOwner {
    adoptLimit = _adoptLimit;
  }

  function setAdoptLimitBuzzlist(uint256 _adoptLimitBuzzlist) public onlyOwner {
    adoptLimitBuzzlist = _adoptLimitBuzzlist;
  }

  function setAdoptStatus(uint256 _adoptStatus) public onlyOwner {
    require(_adoptStatus <= uint256(AdoptStatus.PUBLIC), "Invalid adopt status");
    adoptStatus = AdoptStatus(_adoptStatus);
  }

  function setAdoptPhase(uint256 _adoptPhase) public onlyOwner {
    adoptPhase = _adoptPhase;
  }

  function setBuzzlist(bytes32 _buzzlist) public onlyOwner {
    buzzlist = _buzzlist;
  }

  function setAdoptPhaseDetails(
    uint256 _adoptPhase,
    uint256 _adoptStatus, 
    uint256 _adoptLimit, 
    uint256 _adoptLimitBuzzlist,
    uint256 _adoptPrice,
    uint256 _adoptPriceBuzzlist,
    bytes32 _buzzlist
    ) external onlyOwner {
    setAdoptPhase(_adoptPhase);
    setAdoptStatus(_adoptStatus);
    setAdoptLimit(_adoptLimit);
    setAdoptLimitBuzzlist(_adoptLimitBuzzlist);
    setAdoptionPrice(_adoptPrice);
    setAdoptionPriceBuzzlist(_adoptPriceBuzzlist);
    setBuzzlist(_buzzlist);
  }

  function setBeensUrl(string memory _beensUrl) external onlyOwner {
    beensUrl = _beensUrl;
  }

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

  function withdraw() external onlyOwner {
    uint256 balance = address(this).balance;
    Address.sendValue(payable(community), (balance * 90) / 100);
    Address.sendValue(payable(fonzy),     (balance * 10) / 100);
  }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 4 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"adoptLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adoptLimitBuzzlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adoptPhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adoptPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adoptPriceBuzzlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adoptStatus","outputs":[{"internalType":"enum BumbleBeens.AdoptStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"adopted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beensUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buzzlist","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"beens","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"buzzlistAdopt","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":[],"name":"hive","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isBuzzlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"beens","type":"uint256"}],"name":"publicAdopt","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"beens","type":"uint256"}],"name":"queenBeenAdopt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_adoptLimit","type":"uint256"}],"name":"setAdoptLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_adoptLimitBuzzlist","type":"uint256"}],"name":"setAdoptLimitBuzzlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_adoptPhase","type":"uint256"}],"name":"setAdoptPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_adoptPhase","type":"uint256"},{"internalType":"uint256","name":"_adoptStatus","type":"uint256"},{"internalType":"uint256","name":"_adoptLimit","type":"uint256"},{"internalType":"uint256","name":"_adoptLimitBuzzlist","type":"uint256"},{"internalType":"uint256","name":"_adoptPrice","type":"uint256"},{"internalType":"uint256","name":"_adoptPriceBuzzlist","type":"uint256"},{"internalType":"bytes32","name":"_buzzlist","type":"bytes32"}],"name":"setAdoptPhaseDetails","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_adoptStatus","type":"uint256"}],"name":"setAdoptStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_adoptPrice","type":"uint256"}],"name":"setAdoptionPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_adoptPriceBuzzlist","type":"uint256"}],"name":"setAdoptionPriceBuzzlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_beensUrl","type":"string"}],"name":"setBeensUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_buzzlist","type":"bytes32"}],"name":"setBuzzlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_hive","type":"uint256"}],"name":"setReducedHive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261208f600855666a94d74f4300006009556658d15e17628000600a556002600b819055600c556000600d819055600e55601080546001600160a01b031990811673cdb405c6a8bb3a41bcd0b1ddf1a90b939aa341941790915560118054909116731af8c7140cd8afcd6e756bf9c68320905c3556581790553480156200008957600080fd5b50604080518082018252600b81526a42756d626c654265656e7360a81b6020808301918252835180850190945260058452644245454e5360d81b908401528151919291620000da9160019162000169565b508051620000f090600290602084019062000169565b5050506200010d620001076200011360201b60201c565b62000117565b6200024b565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000177906200020f565b90600052602060002090601f0160209004810192826200019b5760008555620001e6565b82601f10620001b657805160ff1916838001178555620001e6565b82800160010185558215620001e6579182015b82811115620001e6578251825591602001919060010190620001c9565b50620001f4929150620001f8565b5090565b5b80821115620001f45760008155600101620001f9565b600181811c908216806200022457607f821691505b6020821081036200024557634e487b7160e01b600052602260045260246000fd5b50919050565b612f89806200025b6000396000f3fe6080604052600436106102e75760003560e01c8063713c4b2811610184578063aa8becb8116100d6578063d40eeb8f1161008a578063e985e9c511610064578063e985e9c5146107d1578063f2fde38b1461081a578063fa1b5c771461083a57600080fd5b8063d40eeb8f14610774578063def7e22e1461078a578063e18ccc8f146107aa57600080fd5b8063c87b56dd116100bb578063c87b56dd1461071f578063cc31a8b31461073f578063cfaf0dd71461075457600080fd5b8063aa8becb8146106e9578063b88d4fde146106ff57600080fd5b806381fe87151161013857806395d89b411161011257806395d89b411461069457806396039b11146106a9578063a22cb465146106c957600080fd5b806381fe87151461063657806385f1fd8c146106565780638da5cb5b1461067657600080fd5b806371e268e31161016957806371e268e3146105e05780637a0680b5146106005780637c6980571461062057600080fd5b8063713c4b28146105ab578063715018a6146105cb57600080fd5b80632f745c591161023d5780634cbd0626116101f15780636352211e116101cb5780636352211e1461054b57806364adc7c51461056b57806370a082311461058b57600080fd5b80634cbd0626146104f55780634f6ccce71461050b57806357858c3a1461052b57600080fd5b80633ccfd60b116102225780633ccfd60b146104aa57806340f37656146104bf57806342842e0e146104d557600080fd5b80632f745c591461047457806333c437c91461049457600080fd5b806315ce4ede1161029f5780631c473d68116102795780631c473d68146103fc57806323b872dd146104345780632efcf9561461045457600080fd5b806315ce4ede146103c157806318160ddd146103d45780631b03ec14146103e957600080fd5b8063081812fc116102d0578063081812fc1461034357806308b5f2631461037b578063095ea7b31461039f57600080fd5b806301ffc9a7146102ec57806306fdde0314610321575b600080fd5b3480156102f857600080fd5b5061030c6103073660046128aa565b61085a565b60405190151581526020015b60405180910390f35b34801561032d57600080fd5b506103366108c7565b604051610318919061291f565b34801561034f57600080fd5b5061036361035e366004612932565b610959565b6040516001600160a01b039091168152602001610318565b34801561038757600080fd5b5061039160095481565b604051908152602001610318565b3480156103ab57600080fd5b506103bf6103ba366004612967565b6109f9565b005b6103bf6103cf366004612932565b610b10565b3480156103e057600080fd5b50600054610391565b6103bf6103f7366004612991565b610d52565b34801561040857600080fd5b50610391610417366004612a10565b601260209081526000928352604080842090915290825290205481565b34801561044057600080fd5b506103bf61044f366004612a3c565b610ff7565b34801561046057600080fd5b506103bf61046f366004612932565b611002565b34801561048057600080fd5b5061039161048f366004612967565b61104f565b3480156104a057600080fd5b5061039160085481565b3480156104b657600080fd5b506103bf6111b9565b3480156104cb57600080fd5b50610391600d5481565b3480156104e157600080fd5b506103bf6104f0366004612a3c565b61124f565b34801561050157600080fd5b50610391600a5481565b34801561051757600080fd5b50610391610526366004612932565b61126a565b34801561053757600080fd5b506103bf610546366004612932565b6112cc565b34801561055757600080fd5b50610363610566366004612932565b611319565b34801561057757600080fd5b5061030c610586366004612abf565b61132b565b34801561059757600080fd5b506103916105a6366004612b78565b611379565b3480156105b757600080fd5b506103bf6105c6366004612967565b611425565b3480156105d757600080fd5b506103bf6114dd565b3480156105ec57600080fd5b506103bf6105fb366004612932565b611531565b34801561060c57600080fd5b506103bf61061b366004612b93565b61157e565b34801561062c57600080fd5b50610391600e5481565b34801561064257600080fd5b506103bf610651366004612932565b61160e565b34801561066257600080fd5b506103bf610671366004612932565b6116dd565b34801561068257600080fd5b506007546001600160a01b0316610363565b3480156106a057600080fd5b5061033661172a565b3480156106b557600080fd5b506103bf6106c4366004612932565b611739565b3480156106d557600080fd5b506103bf6106e4366004612bdf565b611786565b3480156106f557600080fd5b50610391600c5481565b34801561070b57600080fd5b506103bf61071a366004612c73565b61184a565b34801561072b57600080fd5b5061033661073a366004612932565b6118c9565b34801561074b57600080fd5b506103366119a3565b34801561076057600080fd5b506103bf61076f366004612cef565b611a31565b34801561078057600080fd5b50610391600b5481565b34801561079657600080fd5b506103bf6107a5366004612932565b611a90565b3480156107b657600080fd5b506013546107c49060ff1681565b6040516103189190612d4e565b3480156107dd57600080fd5b5061030c6107ec366004612d76565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561082657600080fd5b506103bf610835366004612b78565b611b81565b34801561084657600080fd5b506103bf610855366004612932565b611c4e565b60006001600160e01b031982166380ac58cd60e01b148061088b57506001600160e01b03198216635b5e139f60e01b145b806108a657506001600160e01b0319821663780e9d6360e01b145b806108c157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546108d690612da0565b80601f016020809104026020016040519081016040528092919081815260200182805461090290612da0565b801561094f5780601f106109245761010080835404028352916020019161094f565b820191906000526020600020905b81548152906001019060200180831161093257829003601f168201915b5050505050905090565b6000610966826000541190565b6109dd5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a0482611319565b9050806001600160a01b0316836001600160a01b031603610a725760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109d4565b336001600160a01b0382161480610a8e5750610a8e81336107ec565b610b005760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109d4565b610b0b838383611c9b565b505050565b8060085481610b1e60005490565b610b289190612df0565b1115610b765760405162461bcd60e51b815260206004820152601b60248201527f4265656e7320737570706c79206c696d6974206578636565646564000000000060448201526064016109d4565b81600b54600082118015610bb25750600d5460009081526012602090815260408083203384529091529020548190610baf908490612df0565b11155b610bfe5760405162461bcd60e51b815260206004820152601660248201527f41646f7074696f6e206c696d697420726561636865640000000000000000000060448201526064016109d4565b600260135460ff166002811115610c1757610c17612d38565b14610c645760405162461bcd60e51b815260206004820152601f60248201527f5075626c69632061646f7074696e6720686173206e6f7420737461727465640060448201526064016109d4565b333214610cb35760405162461bcd60e51b815260206004820152601b60248201527f4f6e6c792068756d616e732063616e2061646f7074206265656e73000000000060448201526064016109d4565b83600954610cc19190612e08565b341015610d105760405162461bcd60e51b815260206004820152601f60248201527f496e73756666696369656e742066756e647320666f722061646f7074696f6e0060448201526064016109d4565b600d54600090815260126020908152604080832033845290915281208054869290610d3c908490612df0565b90915550610d4c90503385611d04565b50505050565b8260085481610d6060005490565b610d6a9190612df0565b1115610db85760405162461bcd60e51b815260206004820152601b60248201527f4265656e7320737570706c79206c696d6974206578636565646564000000000060448201526064016109d4565b83600c54600082118015610df45750600d5460009081526012602090815260408083203384529091529020548190610df1908490612df0565b11155b610e405760405162461bcd60e51b815260206004820152601660248201527f41646f7074696f6e206c696d697420726561636865640000000000000000000060448201526064016109d4565b600160135460ff166002811115610e5957610e59612d38565b1015610ea75760405162461bcd60e51b815260206004820152601e60248201527f42757a7a6c6973742061646f707420686173206e6f742073746172746564000060448201526064016109d4565b610ee43386868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061132b92505050565b610f305760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e74206e6f74206f6e207468652062757a7a6c697374000000000060448201526064016109d4565b85600a54610f3e9190612e08565b341015610fb35760405162461bcd60e51b815260206004820152602860248201527f496e73756666696369656e742066756e647320666f722062757a7a6c6973742060448201527f61646f7074696f6e00000000000000000000000000000000000000000000000060648201526084016109d4565b600d54600090815260126020908152604080832033845290915281208054889290610fdf908490612df0565b90915550610fef90503387611d04565b505050505050565b610b0b838383611d1e565b6007546001600160a01b0316331461104a5760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b600b55565b600061105a83611379565b82106110b35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109d4565b600080549080805b8381101561114a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561110e57805192505b876001600160a01b0316836001600160a01b0316036111415786840361113a575093506108c192505050565b6001909301925b506001016110bb565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e64657800000000000000000000000000000000000060648201526084016109d4565b6007546001600160a01b031633146112015760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b601054479061122f906001600160a01b0316606461122084605a612e08565b61122a9190612e3d565b61204f565b60115461124c906001600160a01b0316606461122084600a612e08565b50565b610b0b8383836040518060200160405280600081525061184a565b6000805482106112c85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109d4565b5090565b6007546001600160a01b031633146113145760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b600e55565b600061132482612168565b5192915050565b600e546040516bffffffffffffffffffffffff19606085901b1660208201526000916113729184919060340160405160208183030381529060405280519060200120612252565b9392505050565b60006001600160a01b0382166113f75760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084016109d4565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b806008548161143360005490565b61143d9190612df0565b111561148b5760405162461bcd60e51b815260206004820152601b60248201527f4265656e7320737570706c79206c696d6974206578636565646564000000000060448201526064016109d4565b6007546001600160a01b031633146114d35760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b610b0b8383611d04565b6007546001600160a01b031633146115255760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b61152f6000612268565b565b6007546001600160a01b031633146115795760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b600955565b6007546001600160a01b031633146115c65760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b6115cf87611c4e565b6115d88661160e565b6115e185611002565b6115ea84611739565b6115f383611531565b6115fc826116dd565b611605816112cc565b50505050505050565b6007546001600160a01b031633146116565760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b60028111156116a75760405162461bcd60e51b815260206004820152601460248201527f496e76616c69642061646f70742073746174757300000000000000000000000060448201526064016109d4565b8060028111156116b9576116b9612d38565b6013805460ff191660018360028111156116d5576116d5612d38565b021790555050565b6007546001600160a01b031633146117255760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b600a55565b6060600280546108d690612da0565b6007546001600160a01b031633146117815760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b600c55565b336001600160a01b038316036117de5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109d4565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611855848484611d1e565b611861848484846122c7565b610d4c5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016109d4565b60606118d6826000541190565b6119485760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016109d4565b6000611952612415565b905080516000036119725760405180602001604052806000815250611372565b8061197c84612424565b60405160200161198d929190612e51565b6040516020818303038152906040529392505050565b600f80546119b090612da0565b80601f01602080910402602001604051908101604052809291908181526020018280546119dc90612da0565b8015611a295780601f106119fe57610100808354040283529160200191611a29565b820191906000526020600020905b815481529060010190602001808311611a0c57829003601f168201915b505050505081565b6007546001600160a01b03163314611a795760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b8051611a8c90600f906020840190612804565b5050565b6007546001600160a01b03163314611ad85760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b600854811115611b2a5760405162461bcd60e51b815260206004820181905260248201527f4869766520737570706c792063616e206e6f7420626520696e6372656173656460448201526064016109d4565b600054811015611b7c5760405162461bcd60e51b815260206004820152601e60248201527f4869766520737570706c792063616e206e6f74206265206c6f7765726564000060448201526064016109d4565b600855565b6007546001600160a01b03163314611bc95760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b6001600160a01b038116611c455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109d4565b61124c81612268565b6007546001600160a01b03163314611c965760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b600d55565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611a8c82826040518060200160405280600081525061253d565b6000611d2982612168565b80519091506000906001600160a01b0316336001600160a01b03161480611d60575033611d5584610959565b6001600160a01b0316145b80611d7257508151611d7290336107ec565b905080611de75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016109d4565b846001600160a01b031682600001516001600160a01b031614611e725760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e6572000000000000000000000000000000000000000000000000000060648201526084016109d4565b6001600160a01b038416611eee5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016109d4565b611efe6000848460000151611c9b565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166fffffffffffffffffffffffffffffffff928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661200557611fb8816000541190565b15612005578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b8047101561209f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109d4565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146120ec576040519150601f19603f3d011682016040523d82523d6000602084013e6120f1565b606091505b5050905080610b0b5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109d4565b6040805180820190915260008082526020820152612187826000541190565b6121f95760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e0000000000000000000000000000000000000000000060648201526084016109d4565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612248579392505050565b50600019016121fb565b60008261225f858461254a565b14949350505050565b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561240957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061230b903390899088908890600401612e80565b6020604051808303816000875af1925050508015612346575060408051601f3d908101601f1916820190925261234391810190612ebc565b60015b6123ef573d808015612374576040519150601f19603f3d011682016040523d82523d6000602084013e612379565b606091505b5080516000036123e75760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016109d4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061240d565b5060015b949350505050565b6060600f80546108d690612da0565b60608160000361244b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612475578061245f81612ed9565b915061246e9050600a83612e3d565b915061244f565b60008167ffffffffffffffff81111561249057612490612a78565b6040519080825280601f01601f1916602001820160405280156124ba576020820181803683370190505b5090505b841561240d576124cf600183612ef2565b91506124dc600a86612f09565b6124e7906030612df0565b60f81b8183815181106124fc576124fc612f1d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612536600a86612e3d565b94506124be565b610b0b83838360016125be565b600081815b84518110156125b657600085828151811061256c5761256c612f1d565b6020026020010151905080831161259257600083815260208290526040902092506125a3565b600081815260208490526040902092505b50806125ae81612ed9565b91505061254f565b509392505050565b6000546001600160a01b0385166126215760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109d4565b836000036126975760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e203000000000000000000000000000000000000000000000000060648201526084016109d4565b6001600160a01b038516600081815260046020908152604080832080547001000000000000000000000000000000006fffffffffffffffffffffffffffffffff1982166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156127fb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156127ef5761278760008884886122c7565b6127ef5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016109d4565b60019182019101612734565b50600055612048565b82805461281090612da0565b90600052602060002090601f0160209004810192826128325760008555612878565b82601f1061284b57805160ff1916838001178555612878565b82800160010185558215612878579182015b8281111561287857825182559160200191906001019061285d565b506112c89291505b808211156112c85760008155600101612880565b6001600160e01b03198116811461124c57600080fd5b6000602082840312156128bc57600080fd5b813561137281612894565b60005b838110156128e25781810151838201526020016128ca565b83811115610d4c5750506000910152565b6000815180845261290b8160208601602086016128c7565b601f01601f19169290920160200192915050565b60208152600061137260208301846128f3565b60006020828403121561294457600080fd5b5035919050565b80356001600160a01b038116811461296257600080fd5b919050565b6000806040838503121561297a57600080fd5b6129838361294b565b946020939093013593505050565b6000806000604084860312156129a657600080fd5b83359250602084013567ffffffffffffffff808211156129c557600080fd5b818601915086601f8301126129d957600080fd5b8135818111156129e857600080fd5b8760208260051b85010111156129fd57600080fd5b6020830194508093505050509250925092565b60008060408385031215612a2357600080fd5b82359150612a336020840161294b565b90509250929050565b600080600060608486031215612a5157600080fd5b612a5a8461294b565b9250612a686020850161294b565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612ab757612ab7612a78565b604052919050565b60008060408385031215612ad257600080fd5b612adb8361294b565b915060208084013567ffffffffffffffff80821115612af957600080fd5b818601915086601f830112612b0d57600080fd5b813581811115612b1f57612b1f612a78565b8060051b9150612b30848301612a8e565b8181529183018401918481019089841115612b4a57600080fd5b938501935b83851015612b6857843582529385019390850190612b4f565b8096505050505050509250929050565b600060208284031215612b8a57600080fd5b6113728261294b565b600080600080600080600060e0888a031215612bae57600080fd5b505085359760208701359750604087013596606081013596506080810135955060a0810135945060c0013592509050565b60008060408385031215612bf257600080fd5b612bfb8361294b565b915060208301358015158114612c1057600080fd5b809150509250929050565b600067ffffffffffffffff831115612c3557612c35612a78565b612c48601f8401601f1916602001612a8e565b9050828152838383011115612c5c57600080fd5b828260208301376000602084830101529392505050565b60008060008060808587031215612c8957600080fd5b612c928561294b565b9350612ca06020860161294b565b925060408501359150606085013567ffffffffffffffff811115612cc357600080fd5b8501601f81018713612cd457600080fd5b612ce387823560208401612c1b565b91505092959194509250565b600060208284031215612d0157600080fd5b813567ffffffffffffffff811115612d1857600080fd5b8201601f81018413612d2957600080fd5b61240d84823560208401612c1b565b634e487b7160e01b600052602160045260246000fd5b6020810160038310612d7057634e487b7160e01b600052602160045260246000fd5b91905290565b60008060408385031215612d8957600080fd5b612d928361294b565b9150612a336020840161294b565b600181811c90821680612db457607f821691505b602082108103612dd457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612e0357612e03612dda565b500190565b6000816000190483118215151615612e2257612e22612dda565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612e4c57612e4c612e27565b500490565b60008351612e638184602088016128c7565b835190830190612e778183602088016128c7565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612eb260808301846128f3565b9695505050505050565b600060208284031215612ece57600080fd5b815161137281612894565b600060018201612eeb57612eeb612dda565b5060010190565b600082821015612f0457612f04612dda565b500390565b600082612f1857612f18612e27565b500690565b634e487b7160e01b600052603260045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220cb237d6a902b1cc4c150a0a42b2bed476bc8b4c98880b35c0b57fc83fd70f5dc64736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106102e75760003560e01c8063713c4b2811610184578063aa8becb8116100d6578063d40eeb8f1161008a578063e985e9c511610064578063e985e9c5146107d1578063f2fde38b1461081a578063fa1b5c771461083a57600080fd5b8063d40eeb8f14610774578063def7e22e1461078a578063e18ccc8f146107aa57600080fd5b8063c87b56dd116100bb578063c87b56dd1461071f578063cc31a8b31461073f578063cfaf0dd71461075457600080fd5b8063aa8becb8146106e9578063b88d4fde146106ff57600080fd5b806381fe87151161013857806395d89b411161011257806395d89b411461069457806396039b11146106a9578063a22cb465146106c957600080fd5b806381fe87151461063657806385f1fd8c146106565780638da5cb5b1461067657600080fd5b806371e268e31161016957806371e268e3146105e05780637a0680b5146106005780637c6980571461062057600080fd5b8063713c4b28146105ab578063715018a6146105cb57600080fd5b80632f745c591161023d5780634cbd0626116101f15780636352211e116101cb5780636352211e1461054b57806364adc7c51461056b57806370a082311461058b57600080fd5b80634cbd0626146104f55780634f6ccce71461050b57806357858c3a1461052b57600080fd5b80633ccfd60b116102225780633ccfd60b146104aa57806340f37656146104bf57806342842e0e146104d557600080fd5b80632f745c591461047457806333c437c91461049457600080fd5b806315ce4ede1161029f5780631c473d68116102795780631c473d68146103fc57806323b872dd146104345780632efcf9561461045457600080fd5b806315ce4ede146103c157806318160ddd146103d45780631b03ec14146103e957600080fd5b8063081812fc116102d0578063081812fc1461034357806308b5f2631461037b578063095ea7b31461039f57600080fd5b806301ffc9a7146102ec57806306fdde0314610321575b600080fd5b3480156102f857600080fd5b5061030c6103073660046128aa565b61085a565b60405190151581526020015b60405180910390f35b34801561032d57600080fd5b506103366108c7565b604051610318919061291f565b34801561034f57600080fd5b5061036361035e366004612932565b610959565b6040516001600160a01b039091168152602001610318565b34801561038757600080fd5b5061039160095481565b604051908152602001610318565b3480156103ab57600080fd5b506103bf6103ba366004612967565b6109f9565b005b6103bf6103cf366004612932565b610b10565b3480156103e057600080fd5b50600054610391565b6103bf6103f7366004612991565b610d52565b34801561040857600080fd5b50610391610417366004612a10565b601260209081526000928352604080842090915290825290205481565b34801561044057600080fd5b506103bf61044f366004612a3c565b610ff7565b34801561046057600080fd5b506103bf61046f366004612932565b611002565b34801561048057600080fd5b5061039161048f366004612967565b61104f565b3480156104a057600080fd5b5061039160085481565b3480156104b657600080fd5b506103bf6111b9565b3480156104cb57600080fd5b50610391600d5481565b3480156104e157600080fd5b506103bf6104f0366004612a3c565b61124f565b34801561050157600080fd5b50610391600a5481565b34801561051757600080fd5b50610391610526366004612932565b61126a565b34801561053757600080fd5b506103bf610546366004612932565b6112cc565b34801561055757600080fd5b50610363610566366004612932565b611319565b34801561057757600080fd5b5061030c610586366004612abf565b61132b565b34801561059757600080fd5b506103916105a6366004612b78565b611379565b3480156105b757600080fd5b506103bf6105c6366004612967565b611425565b3480156105d757600080fd5b506103bf6114dd565b3480156105ec57600080fd5b506103bf6105fb366004612932565b611531565b34801561060c57600080fd5b506103bf61061b366004612b93565b61157e565b34801561062c57600080fd5b50610391600e5481565b34801561064257600080fd5b506103bf610651366004612932565b61160e565b34801561066257600080fd5b506103bf610671366004612932565b6116dd565b34801561068257600080fd5b506007546001600160a01b0316610363565b3480156106a057600080fd5b5061033661172a565b3480156106b557600080fd5b506103bf6106c4366004612932565b611739565b3480156106d557600080fd5b506103bf6106e4366004612bdf565b611786565b3480156106f557600080fd5b50610391600c5481565b34801561070b57600080fd5b506103bf61071a366004612c73565b61184a565b34801561072b57600080fd5b5061033661073a366004612932565b6118c9565b34801561074b57600080fd5b506103366119a3565b34801561076057600080fd5b506103bf61076f366004612cef565b611a31565b34801561078057600080fd5b50610391600b5481565b34801561079657600080fd5b506103bf6107a5366004612932565b611a90565b3480156107b657600080fd5b506013546107c49060ff1681565b6040516103189190612d4e565b3480156107dd57600080fd5b5061030c6107ec366004612d76565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561082657600080fd5b506103bf610835366004612b78565b611b81565b34801561084657600080fd5b506103bf610855366004612932565b611c4e565b60006001600160e01b031982166380ac58cd60e01b148061088b57506001600160e01b03198216635b5e139f60e01b145b806108a657506001600160e01b0319821663780e9d6360e01b145b806108c157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546108d690612da0565b80601f016020809104026020016040519081016040528092919081815260200182805461090290612da0565b801561094f5780601f106109245761010080835404028352916020019161094f565b820191906000526020600020905b81548152906001019060200180831161093257829003601f168201915b5050505050905090565b6000610966826000541190565b6109dd5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a0482611319565b9050806001600160a01b0316836001600160a01b031603610a725760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109d4565b336001600160a01b0382161480610a8e5750610a8e81336107ec565b610b005760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109d4565b610b0b838383611c9b565b505050565b8060085481610b1e60005490565b610b289190612df0565b1115610b765760405162461bcd60e51b815260206004820152601b60248201527f4265656e7320737570706c79206c696d6974206578636565646564000000000060448201526064016109d4565b81600b54600082118015610bb25750600d5460009081526012602090815260408083203384529091529020548190610baf908490612df0565b11155b610bfe5760405162461bcd60e51b815260206004820152601660248201527f41646f7074696f6e206c696d697420726561636865640000000000000000000060448201526064016109d4565b600260135460ff166002811115610c1757610c17612d38565b14610c645760405162461bcd60e51b815260206004820152601f60248201527f5075626c69632061646f7074696e6720686173206e6f7420737461727465640060448201526064016109d4565b333214610cb35760405162461bcd60e51b815260206004820152601b60248201527f4f6e6c792068756d616e732063616e2061646f7074206265656e73000000000060448201526064016109d4565b83600954610cc19190612e08565b341015610d105760405162461bcd60e51b815260206004820152601f60248201527f496e73756666696369656e742066756e647320666f722061646f7074696f6e0060448201526064016109d4565b600d54600090815260126020908152604080832033845290915281208054869290610d3c908490612df0565b90915550610d4c90503385611d04565b50505050565b8260085481610d6060005490565b610d6a9190612df0565b1115610db85760405162461bcd60e51b815260206004820152601b60248201527f4265656e7320737570706c79206c696d6974206578636565646564000000000060448201526064016109d4565b83600c54600082118015610df45750600d5460009081526012602090815260408083203384529091529020548190610df1908490612df0565b11155b610e405760405162461bcd60e51b815260206004820152601660248201527f41646f7074696f6e206c696d697420726561636865640000000000000000000060448201526064016109d4565b600160135460ff166002811115610e5957610e59612d38565b1015610ea75760405162461bcd60e51b815260206004820152601e60248201527f42757a7a6c6973742061646f707420686173206e6f742073746172746564000060448201526064016109d4565b610ee43386868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061132b92505050565b610f305760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e74206e6f74206f6e207468652062757a7a6c697374000000000060448201526064016109d4565b85600a54610f3e9190612e08565b341015610fb35760405162461bcd60e51b815260206004820152602860248201527f496e73756666696369656e742066756e647320666f722062757a7a6c6973742060448201527f61646f7074696f6e00000000000000000000000000000000000000000000000060648201526084016109d4565b600d54600090815260126020908152604080832033845290915281208054889290610fdf908490612df0565b90915550610fef90503387611d04565b505050505050565b610b0b838383611d1e565b6007546001600160a01b0316331461104a5760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b600b55565b600061105a83611379565b82106110b35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109d4565b600080549080805b8381101561114a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561110e57805192505b876001600160a01b0316836001600160a01b0316036111415786840361113a575093506108c192505050565b6001909301925b506001016110bb565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e64657800000000000000000000000000000000000060648201526084016109d4565b6007546001600160a01b031633146112015760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b601054479061122f906001600160a01b0316606461122084605a612e08565b61122a9190612e3d565b61204f565b60115461124c906001600160a01b0316606461122084600a612e08565b50565b610b0b8383836040518060200160405280600081525061184a565b6000805482106112c85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109d4565b5090565b6007546001600160a01b031633146113145760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b600e55565b600061132482612168565b5192915050565b600e546040516bffffffffffffffffffffffff19606085901b1660208201526000916113729184919060340160405160208183030381529060405280519060200120612252565b9392505050565b60006001600160a01b0382166113f75760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084016109d4565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b806008548161143360005490565b61143d9190612df0565b111561148b5760405162461bcd60e51b815260206004820152601b60248201527f4265656e7320737570706c79206c696d6974206578636565646564000000000060448201526064016109d4565b6007546001600160a01b031633146114d35760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b610b0b8383611d04565b6007546001600160a01b031633146115255760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b61152f6000612268565b565b6007546001600160a01b031633146115795760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b600955565b6007546001600160a01b031633146115c65760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b6115cf87611c4e565b6115d88661160e565b6115e185611002565b6115ea84611739565b6115f383611531565b6115fc826116dd565b611605816112cc565b50505050505050565b6007546001600160a01b031633146116565760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b60028111156116a75760405162461bcd60e51b815260206004820152601460248201527f496e76616c69642061646f70742073746174757300000000000000000000000060448201526064016109d4565b8060028111156116b9576116b9612d38565b6013805460ff191660018360028111156116d5576116d5612d38565b021790555050565b6007546001600160a01b031633146117255760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b600a55565b6060600280546108d690612da0565b6007546001600160a01b031633146117815760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b600c55565b336001600160a01b038316036117de5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109d4565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611855848484611d1e565b611861848484846122c7565b610d4c5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016109d4565b60606118d6826000541190565b6119485760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016109d4565b6000611952612415565b905080516000036119725760405180602001604052806000815250611372565b8061197c84612424565b60405160200161198d929190612e51565b6040516020818303038152906040529392505050565b600f80546119b090612da0565b80601f01602080910402602001604051908101604052809291908181526020018280546119dc90612da0565b8015611a295780601f106119fe57610100808354040283529160200191611a29565b820191906000526020600020905b815481529060010190602001808311611a0c57829003601f168201915b505050505081565b6007546001600160a01b03163314611a795760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b8051611a8c90600f906020840190612804565b5050565b6007546001600160a01b03163314611ad85760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b600854811115611b2a5760405162461bcd60e51b815260206004820181905260248201527f4869766520737570706c792063616e206e6f7420626520696e6372656173656460448201526064016109d4565b600054811015611b7c5760405162461bcd60e51b815260206004820152601e60248201527f4869766520737570706c792063616e206e6f74206265206c6f7765726564000060448201526064016109d4565b600855565b6007546001600160a01b03163314611bc95760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b6001600160a01b038116611c455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109d4565b61124c81612268565b6007546001600160a01b03163314611c965760405162461bcd60e51b81526020600482018190526024820152600080516020612f3483398151915260448201526064016109d4565b600d55565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611a8c82826040518060200160405280600081525061253d565b6000611d2982612168565b80519091506000906001600160a01b0316336001600160a01b03161480611d60575033611d5584610959565b6001600160a01b0316145b80611d7257508151611d7290336107ec565b905080611de75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016109d4565b846001600160a01b031682600001516001600160a01b031614611e725760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e6572000000000000000000000000000000000000000000000000000060648201526084016109d4565b6001600160a01b038416611eee5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016109d4565b611efe6000848460000151611c9b565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166fffffffffffffffffffffffffffffffff928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661200557611fb8816000541190565b15612005578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b8047101561209f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109d4565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146120ec576040519150601f19603f3d011682016040523d82523d6000602084013e6120f1565b606091505b5050905080610b0b5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109d4565b6040805180820190915260008082526020820152612187826000541190565b6121f95760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e0000000000000000000000000000000000000000000060648201526084016109d4565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612248579392505050565b50600019016121fb565b60008261225f858461254a565b14949350505050565b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561240957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061230b903390899088908890600401612e80565b6020604051808303816000875af1925050508015612346575060408051601f3d908101601f1916820190925261234391810190612ebc565b60015b6123ef573d808015612374576040519150601f19603f3d011682016040523d82523d6000602084013e612379565b606091505b5080516000036123e75760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016109d4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061240d565b5060015b949350505050565b6060600f80546108d690612da0565b60608160000361244b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612475578061245f81612ed9565b915061246e9050600a83612e3d565b915061244f565b60008167ffffffffffffffff81111561249057612490612a78565b6040519080825280601f01601f1916602001820160405280156124ba576020820181803683370190505b5090505b841561240d576124cf600183612ef2565b91506124dc600a86612f09565b6124e7906030612df0565b60f81b8183815181106124fc576124fc612f1d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612536600a86612e3d565b94506124be565b610b0b83838360016125be565b600081815b84518110156125b657600085828151811061256c5761256c612f1d565b6020026020010151905080831161259257600083815260208290526040902092506125a3565b600081815260208490526040902092505b50806125ae81612ed9565b91505061254f565b509392505050565b6000546001600160a01b0385166126215760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109d4565b836000036126975760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e203000000000000000000000000000000000000000000000000060648201526084016109d4565b6001600160a01b038516600081815260046020908152604080832080547001000000000000000000000000000000006fffffffffffffffffffffffffffffffff1982166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156127fb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156127ef5761278760008884886122c7565b6127ef5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016109d4565b60019182019101612734565b50600055612048565b82805461281090612da0565b90600052602060002090601f0160209004810192826128325760008555612878565b82601f1061284b57805160ff1916838001178555612878565b82800160010185558215612878579182015b8281111561287857825182559160200191906001019061285d565b506112c89291505b808211156112c85760008155600101612880565b6001600160e01b03198116811461124c57600080fd5b6000602082840312156128bc57600080fd5b813561137281612894565b60005b838110156128e25781810151838201526020016128ca565b83811115610d4c5750506000910152565b6000815180845261290b8160208601602086016128c7565b601f01601f19169290920160200192915050565b60208152600061137260208301846128f3565b60006020828403121561294457600080fd5b5035919050565b80356001600160a01b038116811461296257600080fd5b919050565b6000806040838503121561297a57600080fd5b6129838361294b565b946020939093013593505050565b6000806000604084860312156129a657600080fd5b83359250602084013567ffffffffffffffff808211156129c557600080fd5b818601915086601f8301126129d957600080fd5b8135818111156129e857600080fd5b8760208260051b85010111156129fd57600080fd5b6020830194508093505050509250925092565b60008060408385031215612a2357600080fd5b82359150612a336020840161294b565b90509250929050565b600080600060608486031215612a5157600080fd5b612a5a8461294b565b9250612a686020850161294b565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612ab757612ab7612a78565b604052919050565b60008060408385031215612ad257600080fd5b612adb8361294b565b915060208084013567ffffffffffffffff80821115612af957600080fd5b818601915086601f830112612b0d57600080fd5b813581811115612b1f57612b1f612a78565b8060051b9150612b30848301612a8e565b8181529183018401918481019089841115612b4a57600080fd5b938501935b83851015612b6857843582529385019390850190612b4f565b8096505050505050509250929050565b600060208284031215612b8a57600080fd5b6113728261294b565b600080600080600080600060e0888a031215612bae57600080fd5b505085359760208701359750604087013596606081013596506080810135955060a0810135945060c0013592509050565b60008060408385031215612bf257600080fd5b612bfb8361294b565b915060208301358015158114612c1057600080fd5b809150509250929050565b600067ffffffffffffffff831115612c3557612c35612a78565b612c48601f8401601f1916602001612a8e565b9050828152838383011115612c5c57600080fd5b828260208301376000602084830101529392505050565b60008060008060808587031215612c8957600080fd5b612c928561294b565b9350612ca06020860161294b565b925060408501359150606085013567ffffffffffffffff811115612cc357600080fd5b8501601f81018713612cd457600080fd5b612ce387823560208401612c1b565b91505092959194509250565b600060208284031215612d0157600080fd5b813567ffffffffffffffff811115612d1857600080fd5b8201601f81018413612d2957600080fd5b61240d84823560208401612c1b565b634e487b7160e01b600052602160045260246000fd5b6020810160038310612d7057634e487b7160e01b600052602160045260246000fd5b91905290565b60008060408385031215612d8957600080fd5b612d928361294b565b9150612a336020840161294b565b600181811c90821680612db457607f821691505b602082108103612dd457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612e0357612e03612dda565b500190565b6000816000190483118215151615612e2257612e22612dda565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612e4c57612e4c612e27565b500490565b60008351612e638184602088016128c7565b835190830190612e778183602088016128c7565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612eb260808301846128f3565b9695505050505050565b600060208284031215612ece57600080fd5b815161137281612894565b600060018201612eeb57612eeb612dda565b5060010190565b600082821015612f0457612f04612dda565b500390565b600082612f1857612f18612e27565b500690565b634e487b7160e01b600052603260045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220cb237d6a902b1cc4c150a0a42b2bed476bc8b4c98880b35c0b57fc83fd70f5dc64736f6c634300080e0033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.