ETH Price: $2,905.58 (-4.11%)
Gas: 1 Gwei

Token

Y2123 (Y2123)
 

Overview

Max Total Supply

500 Y2123

Holders

137

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fiendd.eth
Balance
2 Y2123
0xbcec43bbc3c9a4cc2a133e92e8b200e0e92c221b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Citizens.Y2123 is a collection of utility-based NFTs inspired by citizen scientists around the world who volunteer their time and resources to make Earth a better place. ​Each character comes equipped with advanced gear and technology that will have utilities in our play-to-e...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Y2123

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

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

/*

Y2123 Game

Impact driven blockchain game with collaborative protocol.
Save our planet by completing missions.

y2123.com

*/

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./IY2123.sol";

contract Y2123 is IY2123, ERC721Enumerable, Ownable, Pausable, ReentrancyGuard {
  struct LastWrite {
    uint64 timestamp;
    uint64 blockNumber;
  }

  mapping(address => LastWrite) private lastWriteAddress;
  mapping(uint256 => LastWrite) private lastWriteToken;
  mapping(address => bool) private admins;

  using MerkleProof for bytes32[];
  bytes32 merkleRoot;
  bytes32 freeRoot;

  uint256 public constant MAX_SUPPLY_GENESIS = 500;
  uint256 public MAX_SUPPLY = 500;
  uint256 public MAX_RESERVE_MINT = 35;
  uint256 public MAX_FREE_MINT = 15;

  string private baseURI;
  uint256 public mintPrice = 0.063 ether;
  uint256 public maxMintPerTx = 3;
  uint256 public maxMintPerAddress = 2;
  bool public presaleEnabled = false;
  bool public saleEnabled = true;
  bool public freeMintEnabled = false;
  uint256 public reserveMintCount = 0;
  uint256 public freeMintCount = 0;

  mapping(address => uint256) public freeMintMinted;
  mapping(address => uint256) public whitelistMinted;
  mapping(address => uint256) public addressMinted;

  event Minted(uint256 indexed id);
  event MintedNonTxOrigin(address indexed addr, uint256 indexed id);
  event Burned(uint256 indexed id);
  event PresaleActive(bool active);
  event SaleActive(bool active);

  modifier blockIfChangingAddress() {
    require(admins[_msgSender()] || lastWriteAddress[tx.origin].blockNumber < block.number, "last write same block number");
    _;
  }

  modifier blockIfChangingToken(uint256 tokenId) {
    require(admins[_msgSender()] || lastWriteToken[tokenId].blockNumber < block.number, "last write same block number");
    _;
  }

  constructor(string memory uri) ERC721("Y2123", "Y2123") {
    _pause();
    baseURI = uri;
  }

  function setMerkleRoot(bytes32 root) public onlyOwner {
    merkleRoot = root;
  }

  function setFreeRoot(bytes32 root) public onlyOwner {
    freeRoot = root;
  }

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

  function setBaseURI(string memory newBaseURI) external onlyOwner {
    baseURI = newBaseURI;
  }

  function setMaxSupply(uint256 newMaxSupply) external onlyOwner {
    if (MAX_SUPPLY != newMaxSupply) {
      require(newMaxSupply >= totalSupply(), "Value lower than total supply");
      require(newMaxSupply >= MAX_RESERVE_MINT + MAX_FREE_MINT, "Value lower than total reserve & free mints");
      MAX_SUPPLY = newMaxSupply;
    }
  }

  function setMaxReserveMint(uint256 newMaxReserveMint) external onlyOwner {
    if (MAX_RESERVE_MINT != newMaxReserveMint) {
      require(newMaxReserveMint >= reserveMintCount, "Value lower then reserve minted");
      MAX_RESERVE_MINT = newMaxReserveMint;
    }
  }

  function setMaxFreeMint(uint256 newMaxFreeMint) external onlyOwner {
    if (MAX_FREE_MINT != newMaxFreeMint) {
      require(newMaxFreeMint >= freeMintCount, "Value lower then free minted");
      MAX_FREE_MINT = newMaxFreeMint;
    }
  }

  function setMintPrice(uint256 newPrice) external onlyOwner {
    mintPrice = newPrice;
  }

  function toggleSale() external onlyOwner {
    saleEnabled = !saleEnabled;
    emit SaleActive(saleEnabled);
  }

  function togglePresale() external onlyOwner {
    presaleEnabled = !presaleEnabled;
    emit PresaleActive(presaleEnabled);
  }

  function toggleFreeMint() external onlyOwner {
    freeMintEnabled = !freeMintEnabled;
  }

  function setMaxMintPerTx(uint256 newMaxMintPerTx) public onlyOwner {
    require(newMaxMintPerTx > 0, "Value lower then 1");
    maxMintPerTx = newMaxMintPerTx;
  }

  function setMaxMintPerAddress(uint256 newMaxMintPerAddress) public onlyOwner {
    require(newMaxMintPerAddress > 0, "Value lower then 1");
    maxMintPerAddress = newMaxMintPerAddress;
  }

  function availableSupplyIndex() public view returns (uint256) {
    return (MAX_SUPPLY - MAX_RESERVE_MINT - MAX_FREE_MINT + reserveMintCount + freeMintCount);
  }

  function getTokenIDs(address addr) external view returns (uint256[] memory) {
    uint256 count = balanceOf(addr);

    uint256[] memory tokens = new uint256[](count);
    for (uint256 i; i < count; i++) {
      tokens[i] = tokenOfOwnerByIndex(addr, i);
    }

    return tokens;
  }

  // reserve NFT's for core team
  function reserve(uint256 amount) public onlyOwner {
    uint256 totalMinted = totalSupply();

    require(reserveMintCount + amount <= MAX_RESERVE_MINT, "Reserved more then available");

    for (uint256 i = 0; i < amount; i++) {
      _safeMint(msg.sender, totalMinted + i);
      addressMinted[msg.sender]++;
      reserveMintCount += 1;
    }
  }

  function airDrop(address[] calldata recipient, uint256[] calldata quantity) external onlyOwner {
    require(quantity.length == recipient.length, "Please provide equal quantities and recipients");

    uint256 totalQuantity = 0;
    uint256 supply = totalSupply();
    for (uint256 i = 0; i < quantity.length; ++i) {
      totalQuantity += quantity[i];
    }
    require(supply + totalQuantity <= availableSupplyIndex(), "Not enough supply");
    delete totalQuantity;

    for (uint256 i = 0; i < recipient.length; ++i) {
      for (uint256 j = 0; j < quantity[i]; ++j) {
        _safeMint(recipient[i], supply++);
        addressMinted[recipient[i]]++;
      }
    }
  }

  // ONLY 1 free mint per address throughout all collections
  function freeMint(bytes32[] memory proof) public payable nonReentrant {
    uint256 totalMinted = totalSupply();

    require(msg.sender == tx.origin);
    require(freeMintEnabled, "Free mint not enabled");
    require(proof.verify(freeRoot, keccak256(abi.encodePacked(msg.sender))), "You are not on the free list");
    require(freeMintCount + 1 <= MAX_FREE_MINT, "No more supply");
    require(freeMintMinted[msg.sender] < 1, "You already minted your free nft");

    _safeMint(msg.sender, totalMinted);
    addressMinted[msg.sender]++;

    freeMintMinted[msg.sender] = 1;
    freeMintCount += 1;
  }

  function paidMint(uint256 amount, bytes32[] memory proof) public payable nonReentrant {
    uint256 totalMinted = totalSupply();

    require(msg.sender == tx.origin);
    require(saleEnabled, "Sale not enabled");
    require(amount * mintPrice <= msg.value, "More ETH please");
    require(amount + totalMinted <= availableSupplyIndex(), "Please try minting with less, not enough supply!");

    if (presaleEnabled == true) {
      require(proof.verify(merkleRoot, keccak256(abi.encodePacked(msg.sender))), "You are not on the whitelist");
      require(amount + whitelistMinted[msg.sender] <= maxMintPerAddress, "Exceeded max mint per address for whitelist, try minting with less");
    } else {
      require(amount <= maxMintPerTx, "Exceeded max mint per transaction");
    }

    for (uint256 i = 0; i < amount; i++) {
      _safeMint(msg.sender, totalMinted + i);
      addressMinted[msg.sender]++;
      if (presaleEnabled == true) {
        whitelistMinted[msg.sender]++;
      }
    }
  }

  function withdrawAll() external onlyOwner {
    require(payable(msg.sender).send(address(this).balance));
  }

  function getTokenWriteBlock(uint256 tokenId) external view override returns (uint64) {
    require(admins[_msgSender()], "Admins only!");
    return lastWriteToken[tokenId].blockNumber;
  }

  function getAddressWriteBlock(address addr) external view override returns (uint64) {
    require(admins[_msgSender()], "Admins only!");
    return lastWriteAddress[addr].blockNumber;
  }

  function mint(address recipient) external override whenNotPaused {
    uint256 minted = totalSupply();

    require(admins[_msgSender()], "Admins only!");
    require(minted + 1 <= availableSupplyIndex(), "All tokens minted");

    emit Minted(minted);
    if (tx.origin != recipient) {
      emit MintedNonTxOrigin(recipient, minted);
    }
    _safeMint(recipient, minted);
    addressMinted[msg.sender]++;
  }

  function burn(uint256 tokenId) external override whenNotPaused {
    require(admins[_msgSender()], "Admins only!");
    require(ownerOf(tokenId) == tx.origin, "Oops you don't own that");
    emit Burned(tokenId);
    _burn(tokenId);
  }

  function updateOriginAccess(uint256[] memory tokenIds) external override {
    require(admins[_msgSender()], "Admins only!");
    uint64 timestamp = uint64(block.timestamp);
    uint64 blockNumber = uint64(block.number);
    lastWriteAddress[tx.origin] = LastWrite(timestamp, blockNumber);
    for (uint256 i = 0; i < tokenIds.length; i++) {
      lastWriteToken[tokenIds[i]] = LastWrite(timestamp, blockNumber);
    }
  }

  function transferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public virtual override(ERC721, IERC721) blockIfChangingToken(tokenId) {
    if (!admins[_msgSender()]) {
      require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
    }
    _transfer(from, to, tokenId);
  }

  /** ADMIN */

  function setPaused(bool _paused) external onlyOwner {
    if (_paused) _pause();
    else _unpause();
  }

  function addAdmin(address addr) external onlyOwner {
    require(addr != address(0), "empty address");
    admins[addr] = true;
  }

  function removeAdmin(address addr) external onlyOwner {
    require(addr != address(0), "empty address");
    admins[addr] = false;
  }

  /** OVERRIDES FOR SAFETY */

  function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override(ERC721Enumerable, IERC721Enumerable) blockIfChangingAddress returns (uint256) {
    require(admins[_msgSender()] || lastWriteAddress[owner].blockNumber < block.number, "last write same block number");
    uint256 tokenId = super.tokenOfOwnerByIndex(owner, index);
    require(admins[_msgSender()] || lastWriteToken[tokenId].blockNumber < block.number, "last write same block number");
    return tokenId;
  }

  function balanceOf(address owner) public view virtual override(ERC721, IERC721) blockIfChangingAddress returns (uint256) {
    require(admins[_msgSender()] || lastWriteAddress[owner].blockNumber < block.number, "last write same block number");
    return super.balanceOf(owner);
  }

  function ownerOf(uint256 tokenId) public view virtual override(ERC721, IERC721) blockIfChangingAddress blockIfChangingToken(tokenId) returns (address) {
    address addr = super.ownerOf(tokenId);
    require(admins[_msgSender()] || lastWriteAddress[addr].blockNumber < block.number, "last write same block number");
    return addr;
  }

  function tokenByIndex(uint256 index) public view virtual override(ERC721Enumerable, IERC721Enumerable) returns (uint256) {
    uint256 tokenId = super.tokenByIndex(index);
    require(admins[_msgSender()] || lastWriteToken[tokenId].blockNumber < block.number, "last write same block number");
    return tokenId;
  }

  function approve(address to, uint256 tokenId) public virtual override(ERC721, IERC721) blockIfChangingToken(tokenId) {
    super.approve(to, tokenId);
  }

  function getApproved(uint256 tokenId) public view virtual override(ERC721, IERC721) blockIfChangingToken(tokenId) returns (address) {
    return super.getApproved(tokenId);
  }

  function setApprovalForAll(address operator, bool approved) public virtual override(ERC721, IERC721) blockIfChangingAddress {
    super.setApprovalForAll(operator, approved);
  }

  function isApprovedForAll(address owner, address operator) public view virtual override(ERC721, IERC721) blockIfChangingAddress returns (bool) {
    return super.isApprovedForAll(owner, operator);
  }

  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public virtual override(ERC721, IERC721) blockIfChangingToken(tokenId) {
    super.safeTransferFrom(from, to, tokenId);
  }

  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public virtual override(ERC721, IERC721) blockIfChangingToken(tokenId) {
    super.safeTransferFrom(from, to, tokenId, _data);
  }
}

File 2 of 17 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 17 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 4 of 17 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 5 of 17 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 17 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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.
 */
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 Merklee 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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 7 of 17 : IY2123.sol
// SPDX-License-Identifier: MIT LICENSE
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

interface IY2123 is IERC721Enumerable {
  function mint(address recipient) external;

  function burn(uint256 tokenId) external;

  function updateOriginAccess(uint256[] memory tokenIds) external;

  function getTokenWriteBlock(uint256 tokenId) external view returns (uint64);

  function getAddressWriteBlock(address addr) external view returns (uint64);
}

File 8 of 17 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 9 of 17 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 10 of 17 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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 tokenId);

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

File 11 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

File 12 of 17 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 13 of 17 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 14 of 17 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 15 of 17 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 16 of 17 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 17 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"MintedNonTxOrigin","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"active","type":"bool"}],"name":"PresaleActive","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"active","type":"bool"}],"name":"SaleActive","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_GENESIS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipient","type":"address[]"},{"internalType":"uint256[]","name":"quantity","type":"uint256[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableSupplyIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getAddressWriteBlock","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getTokenIDs","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenWriteBlock","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"paidMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveMintCount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setFreeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxFreeMint","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMintPerAddress","type":"uint256"}],"name":"setMaxMintPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxReserveMint","type":"uint256"}],"name":"setMaxReserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","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":[],"name":"toggleFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"updateOriginAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526101f46011556023601255600f60135566dfd22a8cd98000601555600360165560026017556018805462ffffff191661010017905560006019819055601a553480156200005057600080fd5b50604051620047f7380380620047f78339810160408190526200007391620002e3565b604080518082018252600580825264593231323360d81b602080840182815285518087019096529285528401528151919291620000b39160009162000227565b508051620000c990600190602084019062000227565b505050620000e6620000e06200011f60201b60201c565b62000123565b600a805460ff60a01b191690556001600b556200010262000175565b80516200011790601490602084019062000227565b5050620003fc565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000189600a54600160a01b900460ff1690565b15620001ce5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200020a3390565b6040516001600160a01b03909116815260200160405180910390a1565b8280546200023590620003bf565b90600052602060002090601f016020900481019282620002595760008555620002a4565b82601f106200027457805160ff1916838001178555620002a4565b82800160010185558215620002a4579182015b82811115620002a457825182559160200191906001019062000287565b50620002b2929150620002b6565b5090565b5b80821115620002b25760008155600101620002b7565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620002f757600080fd5b82516001600160401b03808211156200030f57600080fd5b818501915085601f8301126200032457600080fd5b815181811115620003395762000339620002cd565b604051601f8201601f19908116603f01168101908382118183101715620003645762000364620002cd565b8160405282815288868487010111156200037d57600080fd5b600093505b82841015620003a1578484018601518185018701529285019262000382565b82841115620003b35760008684830101525b98975050505050505050565b600181811c90821680620003d457607f821691505b60208210811415620003f657634e487b7160e01b600052602260045260246000fd5b50919050565b6143eb806200040c6000396000f3fe6080604052600436106103ad5760003560e01c806370a08231116101e7578063a22cb4651161010d578063dce36acd116100a0578063ebd173681161006f578063ebd1736814610a9a578063f2fde38b14610aba578063f4a0a52814610ada578063fa30297e14610afa57600080fd5b8063dce36acd14610a2e578063de7fcb1d14610a4e578063e55f58bb14610a64578063e985e9c514610a7a57600080fd5b8063b88d4fde116100dc578063b88d4fde14610989578063c87b56dd146109a9578063d749b71c146109c9578063d7a33748146109f657600080fd5b8063a22cb46514610920578063a88b4d6b14610940578063a9bd94d414610953578063ac9925111461096957600080fd5b80637d8966e41161018557806388d15d501161015457806388d15d50146108ad5780638da5cb5b146108c057806395d89b41146108de57806398a8cffe146108f357600080fd5b80637d8966e414610836578063806c440d1461084b578063819b25ba14610878578063853828b61461089857600080fd5b806372c0fa54116101c157806372c0fa54146107cc57806373a21e63146107e1578063742a4c9b146107f65780637cb647591461081657600080fd5b806370a0823114610778578063715018a61461079857806371b9b646146107ad57600080fd5b806341cda203116102d7578063616cdb1e1161026a5780636817c76c116102395780636817c76c146107025780636a627842146107185780636f8b44b014610738578063704802751461075857600080fd5b8063616cdb1e1461068257806362ad68aa146106a25780636352211e146106c257806365216a41146106e257600080fd5b806355f804b3116102a657806355f804b314610617578063572849c4146106375780635c3730f21461064d5780635c975abb1461066357600080fd5b806341cda203146105a157806342842e0e146105b757806342966c68146105d75780634f6ccce7146105f757600080fd5b806316c38b3c1161034f57806323b872dd1161031e57806323b872dd146105365780632f745c591461055657806332cb6b0c14610576578063343937431461058c57600080fd5b806316c38b3c146104c15780631785f53c146104e157806318160ddd146105015780631e14d44b1461051657600080fd5b8063095ea7b31161038b578063095ea7b3146104415780630c142a431461046357806310a44f8914610487578063143b237f146104a757600080fd5b806301ffc9a7146103b257806306fdde03146103e7578063081812fc14610409575b600080fd5b3480156103be57600080fd5b506103d26103cd366004613afc565b610b27565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b506103fc610b52565b6040516103de9190613b71565b34801561041557600080fd5b50610429610424366004613b84565b610be4565b6040516001600160a01b0390911681526020016103de565b34801561044d57600080fd5b5061046161045c366004613bb4565b610c59565b005b34801561046f57600080fd5b506104796101f481565b6040519081526020016103de565b34801561049357600080fd5b506104616104a2366004613b84565b610cc2565b3480156104b357600080fd5b506018546103d29060ff1681565b3480156104cd57600080fd5b506104616104dc366004613bee565b610cf1565b3480156104ed57600080fd5b506104616104fc366004613c09565b610d34565b34801561050d57600080fd5b50600854610479565b34801561052257600080fd5b50610461610531366004613b84565b610dc5565b34801561054257600080fd5b50610461610551366004613c24565b610e39565b34801561056257600080fd5b50610479610571366004613bb4565b610ee2565b34801561058257600080fd5b5061047960115481565b34801561059857600080fd5b5061046161100b565b3480156105ad57600080fd5b5061047960135481565b3480156105c357600080fd5b506104616105d2366004613c24565b611083565b3480156105e357600080fd5b506104616105f2366004613b84565b6110e8565b34801561060357600080fd5b50610479610612366004613b84565b6111d5565b34801561062357600080fd5b50610461610632366004613cfd565b61123c565b34801561064357600080fd5b5061047960175481565b34801561065957600080fd5b5061047960195481565b34801561066f57600080fd5b50600a54600160a01b900460ff166103d2565b34801561068e57600080fd5b5061046161069d366004613b84565b61127d565b3480156106ae57600080fd5b506018546103d29062010000900460ff1681565b3480156106ce57600080fd5b506104296106dd366004613b84565b6112f1565b3480156106ee57600080fd5b506104616106fd366004613d90565b611414565b34801561070e57600080fd5b5061047960155481565b34801561072457600080fd5b50610461610733366004613c09565b611637565b34801561074457600080fd5b50610461610753366004613b84565b611793565b34801561076457600080fd5b50610461610773366004613c09565b611890565b34801561078457600080fd5b50610479610793366004613c09565b611924565b3480156107a457600080fd5b506104616119ed565b3480156107b957600080fd5b506018546103d290610100900460ff1681565b3480156107d857600080fd5b50610461611a23565b3480156107ed57600080fd5b50610479611a6c565b34801561080257600080fd5b50610461610811366004613b84565b611aaa565b34801561082257600080fd5b50610461610831366004613b84565b611b34565b34801561084257600080fd5b50610461611b63565b34801561085757600080fd5b5061086b610866366004613c09565b611be5565b6040516103de9190613dfb565b34801561088457600080fd5b50610461610893366004613b84565b611c86565b3480156108a457600080fd5b50610461611d85565b6104616108bb366004613ecd565b611dd3565b3480156108cc57600080fd5b50600a546001600160a01b0316610429565b3480156108ea57600080fd5b506103fc61203c565b3480156108ff57600080fd5b5061047961090e366004613c09565b601c6020526000908152604090205481565b34801561092c57600080fd5b5061046161093b366004613f01565b61204b565b61046161094e366004613f34565b6120ae565b34801561095f57600080fd5b5061047960125481565b34801561097557600080fd5b50610461610984366004613b84565b61243c565b34801561099557600080fd5b506104616109a4366004613f7a565b6124c6565b3480156109b557600080fd5b506103fc6109c4366004613b84565b612533565b3480156109d557600080fd5b506104796109e4366004613c09565b601b6020526000908152604090205481565b348015610a0257600080fd5b50610a16610a11366004613c09565b61260d565b6040516001600160401b0390911681526020016103de565b348015610a3a57600080fd5b50610461610a49366004613ff5565b612668565b348015610a5a57600080fd5b5061047960165481565b348015610a7057600080fd5b50610479601a5481565b348015610a8657600080fd5b506103d2610a95366004614085565b612797565b348015610aa657600080fd5b50610a16610ab5366004613b84565b61281e565b348015610ac657600080fd5b50610461610ad5366004613c09565b612870565b348015610ae657600080fd5b50610461610af5366004613b84565b612908565b348015610b0657600080fd5b50610479610b15366004613c09565b601d6020526000908152604090205481565b60006001600160e01b0319821663780e9d6360e01b1480610b4c5750610b4c82612937565b92915050565b606060008054610b61906140af565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8d906140af565b8015610bda5780601f10610baf57610100808354040283529160200191610bda565b820191906000526020600020905b815481529060010190602001808311610bbd57829003601f168201915b5050505050905090565b336000908152600e6020526040812054829060ff1680610c2257506000818152600d602052604090205443600160401b9091046001600160401b0316105b610c475760405162461bcd60e51b8152600401610c3e906140e4565b60405180910390fd5b610c5083612987565b91505b50919050565b336000908152600e6020526040902054819060ff1680610c9757506000818152600d602052604090205443600160401b9091046001600160401b0316105b610cb35760405162461bcd60e51b8152600401610c3e906140e4565b610cbd8383612a1c565b505050565b600a546001600160a01b03163314610cec5760405162461bcd60e51b8152600401610c3e9061411b565b601055565b600a546001600160a01b03163314610d1b5760405162461bcd60e51b8152600401610c3e9061411b565b8015610d2c57610d29612b2d565b50565b610d29612baa565b600a546001600160a01b03163314610d5e5760405162461bcd60e51b8152600401610c3e9061411b565b6001600160a01b038116610da45760405162461bcd60e51b815260206004820152600d60248201526c656d707479206164647265737360981b6044820152606401610c3e565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b600a546001600160a01b03163314610def5760405162461bcd60e51b8152600401610c3e9061411b565b60008111610e345760405162461bcd60e51b815260206004820152601260248201527156616c7565206c6f776572207468656e203160701b6044820152606401610c3e565b601755565b336000908152600e6020526040902054819060ff1680610e7757506000818152600d602052604090205443600160401b9091046001600160401b0316105b610e935760405162461bcd60e51b8152600401610c3e906140e4565b336000908152600e602052604090205460ff16610ed157610eb5335b83612c2e565b610ed15760405162461bcd60e51b8152600401610c3e90614150565b610edc848484612d05565b50505050565b336000908152600e602052604081205460ff1680610f1f5750326000908152600c602052604090205443600160401b9091046001600160401b0316105b610f3b5760405162461bcd60e51b8152600401610c3e906140e4565b336000908152600e602052604090205460ff1680610f8157506001600160a01b0383166000908152600c602052604090205443600160401b9091046001600160401b0316105b610f9d5760405162461bcd60e51b8152600401610c3e906140e4565b6000610fa98484612eb0565b336000908152600e602052604090205490915060ff1680610fe857506000818152600d602052604090205443600160401b9091046001600160401b0316105b6110045760405162461bcd60e51b8152600401610c3e906140e4565b9392505050565b600a546001600160a01b031633146110355760405162461bcd60e51b8152600401610c3e9061411b565b6018805460ff8082161560ff1990921682179092556040519116151581527f0c56c7e2f62fe49aadfdce1fa53a6112839d06c4cfb65eee8a68476b34e79ab6906020015b60405180910390a1565b336000908152600e6020526040902054819060ff16806110c157506000818152600d602052604090205443600160401b9091046001600160401b0316105b6110dd5760405162461bcd60e51b8152600401610c3e906140e4565b610edc848484612f46565b600a54600160a01b900460ff16156111125760405162461bcd60e51b8152600401610c3e906141a1565b336000908152600e602052604090205460ff166111415760405162461bcd60e51b8152600401610c3e906141cb565b3261114b826112f1565b6001600160a01b0316146111a15760405162461bcd60e51b815260206004820152601760248201527f4f6f707320796f7520646f6e2774206f776e20746861740000000000000000006044820152606401610c3e565b60405181907fd83c63197e8e676d80ab0122beba9a9d20f3828839e9a1d6fe81d242e9cd7e6e90600090a2610d2981612f61565b6000806111e183613008565b336000908152600e602052604090205490915060ff168061122057506000818152600d602052604090205443600160401b9091046001600160401b0316105b610b4c5760405162461bcd60e51b8152600401610c3e906140e4565b600a546001600160a01b031633146112665760405162461bcd60e51b8152600401610c3e9061411b565b8051611279906014906020840190613a4d565b5050565b600a546001600160a01b031633146112a75760405162461bcd60e51b8152600401610c3e9061411b565b600081116112ec5760405162461bcd60e51b815260206004820152601260248201527156616c7565206c6f776572207468656e203160701b6044820152606401610c3e565b601655565b336000908152600e602052604081205460ff168061132e5750326000908152600c602052604090205443600160401b9091046001600160401b0316105b61134a5760405162461bcd60e51b8152600401610c3e906140e4565b336000908152600e6020526040902054829060ff168061138857506000818152600d602052604090205443600160401b9091046001600160401b0316105b6113a45760405162461bcd60e51b8152600401610c3e906140e4565b60006113af8461309b565b336000908152600e602052604090205490915060ff16806113f857506001600160a01b0381166000908152600c602052604090205443600160401b9091046001600160401b0316105b610c505760405162461bcd60e51b8152600401610c3e906140e4565b600a546001600160a01b0316331461143e5760405162461bcd60e51b8152600401610c3e9061411b565b8083146114a45760405162461bcd60e51b815260206004820152602e60248201527f506c656173652070726f7669646520657175616c207175616e7469746965732060448201526d616e6420726563697069656e747360901b6064820152608401610c3e565b6000806114b060085490565b905060005b838110156114f3578484828181106114cf576114cf6141f1565b90506020020135836114e1919061421d565b92506114ec81614235565b90506114b5565b506114fc611a6c565b611506838361421d565b11156115485760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b6044820152606401610c3e565b6000915060005b8581101561162e5760005b85858381811061156c5761156c6141f1565b9050602002013581101561161d576115b588888481811061158f5761158f6141f1565b90506020020160208101906115a49190613c09565b846115ae81614235565b9550613112565b601d60008989858181106115cb576115cb6141f1565b90506020020160208101906115e09190613c09565b6001600160a01b031681526020810191909152604001600090812080549161160783614235565b91905055508061161690614235565b905061155a565b5061162781614235565b905061154f565b50505050505050565b600a54600160a01b900460ff16156116615760405162461bcd60e51b8152600401610c3e906141a1565b600061166c60085490565b336000908152600e602052604090205490915060ff1661169e5760405162461bcd60e51b8152600401610c3e906141cb565b6116a6611a6c565b6116b182600161421d565b11156116f35760405162461bcd60e51b8152602060048201526011602482015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b6044820152606401610c3e565b60405181907f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a90600090a2326001600160a01b038316146117655760405181906001600160a01b038416907fb852c81bbe49d2ee0d68cfc0de80a7c3c41f8d8e4a9031a3c9474bd84643e2d090600090a35b61176f8282613112565b336000908152601d6020526040812080549161178a83614235565b91905055505050565b600a546001600160a01b031633146117bd5760405162461bcd60e51b8152600401610c3e9061411b565b8060115414610d29576008548110156118185760405162461bcd60e51b815260206004820152601d60248201527f56616c7565206c6f776572207468616e20746f74616c20737570706c790000006044820152606401610c3e565b601354601254611828919061421d565b81101561188b5760405162461bcd60e51b815260206004820152602b60248201527f56616c7565206c6f776572207468616e20746f74616c2072657365727665202660448201526a2066726565206d696e747360a81b6064820152608401610c3e565b601155565b600a546001600160a01b031633146118ba5760405162461bcd60e51b8152600401610c3e9061411b565b6001600160a01b0381166119005760405162461bcd60e51b815260206004820152600d60248201526c656d707479206164647265737360981b6044820152606401610c3e565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b336000908152600e602052604081205460ff16806119615750326000908152600c602052604090205443600160401b9091046001600160401b0316105b61197d5760405162461bcd60e51b8152600401610c3e906140e4565b336000908152600e602052604090205460ff16806119c357506001600160a01b0382166000908152600c602052604090205443600160401b9091046001600160401b0316105b6119df5760405162461bcd60e51b8152600401610c3e906140e4565b610b4c8261312c565b919050565b600a546001600160a01b03163314611a175760405162461bcd60e51b8152600401610c3e9061411b565b611a2160006131b3565b565b600a546001600160a01b03163314611a4d5760405162461bcd60e51b8152600401610c3e9061411b565b6018805462ff0000198116620100009182900460ff1615909102179055565b6000601a54601954601354601254601154611a879190614250565b611a919190614250565b611a9b919061421d565b611aa5919061421d565b905090565b600a546001600160a01b03163314611ad45760405162461bcd60e51b8152600401610c3e9061411b565b8060135414610d2957601a54811015611b2f5760405162461bcd60e51b815260206004820152601c60248201527f56616c7565206c6f776572207468656e2066726565206d696e746564000000006044820152606401610c3e565b601355565b600a546001600160a01b03163314611b5e5760405162461bcd60e51b8152600401610c3e9061411b565b600f55565b600a546001600160a01b03163314611b8d5760405162461bcd60e51b8152600401610c3e9061411b565b6018805460ff610100808304821615810261ff001990931692909217928390556040517fe8a4303c22d8b575a6f175ea4803f56b0a4551ac9e22153304feb0ddfd614355936110799390049091161515815260200190565b60606000611bf283611924565b90506000816001600160401b03811115611c0e57611c0e613c60565b604051908082528060200260200182016040528015611c37578160200160208202803683370190505b50905060005b82811015611c7e57611c4f8582610ee2565b828281518110611c6157611c616141f1565b602090810291909101015280611c7681614235565b915050611c3d565b509392505050565b600a546001600160a01b03163314611cb05760405162461bcd60e51b8152600401610c3e9061411b565b6000611cbb60085490565b905060125482601954611cce919061421d565b1115611d1c5760405162461bcd60e51b815260206004820152601c60248201527f5265736572766564206d6f7265207468656e20617661696c61626c65000000006044820152606401610c3e565b60005b82811015610cbd57611d3a33611d35838561421d565b613112565b336000908152601d60205260408120805491611d5583614235565b9190505550600160196000828254611d6d919061421d565b90915550819050611d7d81614235565b915050611d1f565b600a546001600160a01b03163314611daf5760405162461bcd60e51b8152600401610c3e9061411b565b60405133904780156108fc02916000818181858888f19350505050611a2157600080fd5b6002600b541415611e265760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c3e565b6002600b556000611e3660085490565b9050333214611e4457600080fd5b60185462010000900460ff16611e945760405162461bcd60e51b8152602060048201526015602482015274119c9959481b5a5b9d081b9bdd08195b98589b1959605a1b6044820152606401610c3e565b6010546040516bffffffffffffffffffffffff193360601b166020820152611ee191906034015b60405160208183030381529060405280519060200120846132059092919063ffffffff16565b611f2d5760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e207468652066726565206c697374000000006044820152606401610c3e565b601354601a54611f3e90600161421d565b1115611f7d5760405162461bcd60e51b815260206004820152600e60248201526d4e6f206d6f726520737570706c7960901b6044820152606401610c3e565b336000908152601b6020526040902054600111611fdc5760405162461bcd60e51b815260206004820181905260248201527f596f7520616c7265616479206d696e74656420796f75722066726565206e66746044820152606401610c3e565b611fe63382613112565b336000908152601d6020526040812080549161200183614235565b9091555050336000908152601b60205260408120600190819055601a80549192909161202e90849061421d565b90915550506001600b555050565b606060018054610b61906140af565b336000908152600e602052604090205460ff16806120885750326000908152600c602052604090205443600160401b9091046001600160401b0316105b6120a45760405162461bcd60e51b8152600401610c3e906140e4565b611279828261321b565b6002600b5414156121015760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c3e565b6002600b55600061211160085490565b905033321461211f57600080fd5b601854610100900460ff166121695760405162461bcd60e51b815260206004820152601060248201526f14d85b19481b9bdd08195b98589b195960821b6044820152606401610c3e565b34601554846121789190614267565b11156121b85760405162461bcd60e51b815260206004820152600f60248201526e4d6f72652045544820706c6561736560881b6044820152606401610c3e565b6121c0611a6c565b6121ca828561421d565b11156122315760405162461bcd60e51b815260206004820152603060248201527f506c6561736520747279206d696e74696e672077697468206c6573732c206e6f60448201526f7420656e6f75676820737570706c792160801b6064820152608401610c3e565b60185460ff1615156001141561235957600f546040516bffffffffffffffffffffffff193360601b16602082015261226c9190603401611ebb565b6122b85760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e207468652077686974656c697374000000006044820152606401610c3e565b601754336000908152601c60205260409020546122d5908561421d565b11156123545760405162461bcd60e51b815260206004820152604260248201527f4578636565646564206d6178206d696e7420706572206164647265737320666f60448201527f722077686974656c6973742c20747279206d696e74696e672077697468206c65606482015261737360f01b608482015260a401610c3e565b6123b5565b6016548311156123b55760405162461bcd60e51b815260206004820152602160248201527f4578636565646564206d6178206d696e7420706572207472616e73616374696f6044820152603760f91b6064820152608401610c3e565b60005b83811015612431576123ce33611d35838561421d565b336000908152601d602052604081208054916123e983614235565b909155505060185460ff1615156001141561241f57336000908152601c6020526040812080549161241983614235565b91905055505b8061242981614235565b9150506123b8565b50506001600b555050565b600a546001600160a01b031633146124665760405162461bcd60e51b8152600401610c3e9061411b565b8060125414610d29576019548110156124c15760405162461bcd60e51b815260206004820152601f60248201527f56616c7565206c6f776572207468656e2072657365727665206d696e746564006044820152606401610c3e565b601255565b336000908152600e6020526040902054829060ff168061250457506000818152600d602052604090205443600160401b9091046001600160401b0316105b6125205760405162461bcd60e51b8152600401610c3e906140e4565b61252c85858585613226565b5050505050565b6000818152600260205260409020546060906001600160a01b03166125b25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c3e565b60006125bc613257565b905060008151116125dc5760405180602001604052806000815250610c50565b806125e684613266565b6040516020016125f7929190614286565b6040516020818303038152906040529392505050565b336000908152600e602052604081205460ff1661263c5760405162461bcd60e51b8152600401610c3e906141cb565b506001600160a01b03166000908152600c6020526040902054600160401b90046001600160401b031690565b336000908152600e602052604090205460ff166126975760405162461bcd60e51b8152600401610c3e906141cb565b6040805180820182526001600160401b03428181168352438281166020808601918252326000908152600c9091529586209451855491518516600160401b026001600160801b03199092169416939093179290921790925590915b8351811015610edc576040518060400160405280846001600160401b03168152602001836001600160401b0316815250600d6000868481518110612738576127386141f1565b6020908102919091018101518252818101929092526040016000208251815493909201516001600160401b03908116600160401b026001600160801b03199094169216919091179190911790558061278f81614235565b9150506126f2565b336000908152600e602052604081205460ff16806127d45750326000908152600c602052604090205443600160401b9091046001600160401b0316105b6127f05760405162461bcd60e51b8152600401610c3e906140e4565b6001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff16611004565b336000908152600e602052604081205460ff1661284d5760405162461bcd60e51b8152600401610c3e906141cb565b506000908152600d6020526040902054600160401b90046001600160401b031690565b600a546001600160a01b0316331461289a5760405162461bcd60e51b8152600401610c3e9061411b565b6001600160a01b0381166128ff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c3e565b610d29816131b3565b600a546001600160a01b031633146129325760405162461bcd60e51b8152600401610c3e9061411b565b601555565b60006001600160e01b031982166380ac58cd60e01b148061296857506001600160e01b03198216635b5e139f60e01b145b80610b4c57506301ffc9a760e01b6001600160e01b0319831614610b4c565b6000818152600260205260408120546001600160a01b0316612a005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c3e565b506000908152600460205260409020546001600160a01b031690565b6000612a278261309b565b9050806001600160a01b0316836001600160a01b03161415612a955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c3e565b336001600160a01b0382161480612ab15750612ab18133612797565b612b235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c3e565b610cbd8383613363565b600a54600160a01b900460ff1615612b575760405162461bcd60e51b8152600401610c3e906141a1565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612b923390565b6040516001600160a01b039091168152602001611079565b600a54600160a01b900460ff16612bfa5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610c3e565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33612b92565b6000818152600260205260408120546001600160a01b0316612ca75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c3e565b6000612cb28361309b565b9050806001600160a01b0316846001600160a01b03161480612ced5750836001600160a01b0316612ce284610be4565b6001600160a01b0316145b80612cfd5750612cfd8185612797565b949350505050565b826001600160a01b0316612d188261309b565b6001600160a01b031614612d805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c3e565b6001600160a01b038216612de25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c3e565b612ded8383836133d1565b612df8600082613363565b6001600160a01b0383166000908152600360205260408120805460019290612e21908490614250565b90915550506001600160a01b0382166000908152600360205260408120805460019290612e4f90849061421d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000612ebb8361312c565b8210612f1d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c3e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610cbd838383604051806020016040528060008152506124c6565b6000612f6c8261309b565b9050612f7a816000846133d1565b612f85600083613363565b6001600160a01b0381166000908152600360205260408120805460019290612fae908490614250565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600061301360085490565b82106130765760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c3e565b60088281548110613089576130896141f1565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b031680610b4c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c3e565b611279828260405180602001604052806000815250613489565b60006001600160a01b0382166131975760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c3e565b506001600160a01b031660009081526003602052604090205490565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008261321285846134bc565b14949350505050565b611279338383613560565b61322f33610eaf565b61324b5760405162461bcd60e51b8152600401610c3e90614150565b610edc8484848461362f565b606060148054610b61906140af565b60608161328a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156132b4578061329e81614235565b91506132ad9050600a836142cb565b915061328e565b6000816001600160401b038111156132ce576132ce613c60565b6040519080825280601f01601f1916602001820160405280156132f8576020820181803683370190505b5090505b8415612cfd5761330d600183614250565b915061331a600a866142df565b61332590603061421d565b60f81b81838151811061333a5761333a6141f1565b60200101906001600160f81b031916908160001a90535061335c600a866142cb565b94506132fc565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906133988261309b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b03831661342c5761342781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61344f565b816001600160a01b0316836001600160a01b03161461344f5761344f8382613662565b6001600160a01b03821661346657610cbd816136ff565b826001600160a01b0316826001600160a01b031614610cbd57610cbd82826137ae565b61349383836137f2565b6134a06000848484613940565b610cbd5760405162461bcd60e51b8152600401610c3e906142f3565b600081815b8451811015611c7e5760008582815181106134de576134de6141f1565b6020026020010151905080831161352057604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061354d565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061355881614235565b9150506134c1565b816001600160a01b0316836001600160a01b031614156135c25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c3e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61363a848484612d05565b61364684848484613940565b610edc5760405162461bcd60e51b8152600401610c3e906142f3565b6000600161366f8461312c565b6136799190614250565b6000838152600760205260409020549091508082146136cc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061371190600190614250565b60008381526009602052604081205460088054939450909284908110613739576137396141f1565b90600052602060002001549050806008838154811061375a5761375a6141f1565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061379257613792614345565b6001900381819060005260206000200160009055905550505050565b60006137b98361312c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166138485760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c3e565b6000818152600260205260409020546001600160a01b0316156138ad5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c3e565b6138b9600083836133d1565b6001600160a01b03821660009081526003602052604081208054600192906138e290849061421d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15613a4257604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061398490339089908890889060040161435b565b602060405180830381600087803b15801561399e57600080fd5b505af19250505080156139ce575060408051601f3d908101601f191682019092526139cb91810190614398565b60015b613a28573d8080156139fc576040519150601f19603f3d011682016040523d82523d6000602084013e613a01565b606091505b508051613a205760405162461bcd60e51b8152600401610c3e906142f3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612cfd565b506001949350505050565b828054613a59906140af565b90600052602060002090601f016020900481019282613a7b5760008555613ac1565b82601f10613a9457805160ff1916838001178555613ac1565b82800160010185558215613ac1579182015b82811115613ac1578251825591602001919060010190613aa6565b50613acd929150613ad1565b5090565b5b80821115613acd5760008155600101613ad2565b6001600160e01b031981168114610d2957600080fd5b600060208284031215613b0e57600080fd5b813561100481613ae6565b60005b83811015613b34578181015183820152602001613b1c565b83811115610edc5750506000910152565b60008151808452613b5d816020860160208601613b19565b601f01601f19169290920160200192915050565b6020815260006110046020830184613b45565b600060208284031215613b9657600080fd5b5035919050565b80356001600160a01b03811681146119e857600080fd5b60008060408385031215613bc757600080fd5b613bd083613b9d565b946020939093013593505050565b803580151581146119e857600080fd5b600060208284031215613c0057600080fd5b61100482613bde565b600060208284031215613c1b57600080fd5b61100482613b9d565b600080600060608486031215613c3957600080fd5b613c4284613b9d565b9250613c5060208501613b9d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715613c9e57613c9e613c60565b604052919050565b60006001600160401b03831115613cbf57613cbf613c60565b613cd2601f8401601f1916602001613c76565b9050828152838383011115613ce657600080fd5b828260208301376000602084830101529392505050565b600060208284031215613d0f57600080fd5b81356001600160401b03811115613d2557600080fd5b8201601f81018413613d3657600080fd5b612cfd84823560208401613ca6565b60008083601f840112613d5757600080fd5b5081356001600160401b03811115613d6e57600080fd5b6020830191508360208260051b8501011115613d8957600080fd5b9250929050565b60008060008060408587031215613da657600080fd5b84356001600160401b0380821115613dbd57600080fd5b613dc988838901613d45565b90965094506020870135915080821115613de257600080fd5b50613def87828801613d45565b95989497509550505050565b6020808252825182820181905260009190848201906040850190845b81811015613e3357835183529284019291840191600101613e17565b50909695505050505050565b60006001600160401b03821115613e5857613e58613c60565b5060051b60200190565b600082601f830112613e7357600080fd5b81356020613e88613e8383613e3f565b613c76565b82815260059290921b84018101918181019086841115613ea757600080fd5b8286015b84811015613ec25780358352918301918301613eab565b509695505050505050565b600060208284031215613edf57600080fd5b81356001600160401b03811115613ef557600080fd5b612cfd84828501613e62565b60008060408385031215613f1457600080fd5b613f1d83613b9d565b9150613f2b60208401613bde565b90509250929050565b60008060408385031215613f4757600080fd5b8235915060208301356001600160401b03811115613f6457600080fd5b613f7085828601613e62565b9150509250929050565b60008060008060808587031215613f9057600080fd5b613f9985613b9d565b9350613fa760208601613b9d565b92506040850135915060608501356001600160401b03811115613fc957600080fd5b8501601f81018713613fda57600080fd5b613fe987823560208401613ca6565b91505092959194509250565b6000602080838503121561400857600080fd5b82356001600160401b0381111561401e57600080fd5b8301601f8101851361402f57600080fd5b803561403d613e8382613e3f565b81815260059190911b8201830190838101908783111561405c57600080fd5b928401925b8284101561407a57833582529284019290840190614061565b979650505050505050565b6000806040838503121561409857600080fd5b6140a183613b9d565b9150613f2b60208401613b9d565b600181811c908216806140c357607f821691505b60208210811415610c5357634e487b7160e01b600052602260045260246000fd5b6020808252601c908201527f6c6173742077726974652073616d6520626c6f636b206e756d62657200000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252600c908201526b41646d696e73206f6e6c792160a01b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000821982111561423057614230614207565b500190565b600060001982141561424957614249614207565b5060010190565b60008282101561426257614262614207565b500390565b600081600019048311821515161561428157614281614207565b500290565b60008351614298818460208801613b19565b8351908301906142ac818360208801613b19565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b6000826142da576142da6142b5565b500490565b6000826142ee576142ee6142b5565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061438e90830184613b45565b9695505050505050565b6000602082840312156143aa57600080fd5b815161100481613ae656fea26469706673582212200c0952bcb9ffa9846761aa416162e6e615ca5598c78d45683905adb7d2f97e3c64736f6c634300080900330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d576f615578764a4c76796e41436b45394b4b6a33476b6762575144546f7164536d454c39376352796e4772662f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103ad5760003560e01c806370a08231116101e7578063a22cb4651161010d578063dce36acd116100a0578063ebd173681161006f578063ebd1736814610a9a578063f2fde38b14610aba578063f4a0a52814610ada578063fa30297e14610afa57600080fd5b8063dce36acd14610a2e578063de7fcb1d14610a4e578063e55f58bb14610a64578063e985e9c514610a7a57600080fd5b8063b88d4fde116100dc578063b88d4fde14610989578063c87b56dd146109a9578063d749b71c146109c9578063d7a33748146109f657600080fd5b8063a22cb46514610920578063a88b4d6b14610940578063a9bd94d414610953578063ac9925111461096957600080fd5b80637d8966e41161018557806388d15d501161015457806388d15d50146108ad5780638da5cb5b146108c057806395d89b41146108de57806398a8cffe146108f357600080fd5b80637d8966e414610836578063806c440d1461084b578063819b25ba14610878578063853828b61461089857600080fd5b806372c0fa54116101c157806372c0fa54146107cc57806373a21e63146107e1578063742a4c9b146107f65780637cb647591461081657600080fd5b806370a0823114610778578063715018a61461079857806371b9b646146107ad57600080fd5b806341cda203116102d7578063616cdb1e1161026a5780636817c76c116102395780636817c76c146107025780636a627842146107185780636f8b44b014610738578063704802751461075857600080fd5b8063616cdb1e1461068257806362ad68aa146106a25780636352211e146106c257806365216a41146106e257600080fd5b806355f804b3116102a657806355f804b314610617578063572849c4146106375780635c3730f21461064d5780635c975abb1461066357600080fd5b806341cda203146105a157806342842e0e146105b757806342966c68146105d75780634f6ccce7146105f757600080fd5b806316c38b3c1161034f57806323b872dd1161031e57806323b872dd146105365780632f745c591461055657806332cb6b0c14610576578063343937431461058c57600080fd5b806316c38b3c146104c15780631785f53c146104e157806318160ddd146105015780631e14d44b1461051657600080fd5b8063095ea7b31161038b578063095ea7b3146104415780630c142a431461046357806310a44f8914610487578063143b237f146104a757600080fd5b806301ffc9a7146103b257806306fdde03146103e7578063081812fc14610409575b600080fd5b3480156103be57600080fd5b506103d26103cd366004613afc565b610b27565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b506103fc610b52565b6040516103de9190613b71565b34801561041557600080fd5b50610429610424366004613b84565b610be4565b6040516001600160a01b0390911681526020016103de565b34801561044d57600080fd5b5061046161045c366004613bb4565b610c59565b005b34801561046f57600080fd5b506104796101f481565b6040519081526020016103de565b34801561049357600080fd5b506104616104a2366004613b84565b610cc2565b3480156104b357600080fd5b506018546103d29060ff1681565b3480156104cd57600080fd5b506104616104dc366004613bee565b610cf1565b3480156104ed57600080fd5b506104616104fc366004613c09565b610d34565b34801561050d57600080fd5b50600854610479565b34801561052257600080fd5b50610461610531366004613b84565b610dc5565b34801561054257600080fd5b50610461610551366004613c24565b610e39565b34801561056257600080fd5b50610479610571366004613bb4565b610ee2565b34801561058257600080fd5b5061047960115481565b34801561059857600080fd5b5061046161100b565b3480156105ad57600080fd5b5061047960135481565b3480156105c357600080fd5b506104616105d2366004613c24565b611083565b3480156105e357600080fd5b506104616105f2366004613b84565b6110e8565b34801561060357600080fd5b50610479610612366004613b84565b6111d5565b34801561062357600080fd5b50610461610632366004613cfd565b61123c565b34801561064357600080fd5b5061047960175481565b34801561065957600080fd5b5061047960195481565b34801561066f57600080fd5b50600a54600160a01b900460ff166103d2565b34801561068e57600080fd5b5061046161069d366004613b84565b61127d565b3480156106ae57600080fd5b506018546103d29062010000900460ff1681565b3480156106ce57600080fd5b506104296106dd366004613b84565b6112f1565b3480156106ee57600080fd5b506104616106fd366004613d90565b611414565b34801561070e57600080fd5b5061047960155481565b34801561072457600080fd5b50610461610733366004613c09565b611637565b34801561074457600080fd5b50610461610753366004613b84565b611793565b34801561076457600080fd5b50610461610773366004613c09565b611890565b34801561078457600080fd5b50610479610793366004613c09565b611924565b3480156107a457600080fd5b506104616119ed565b3480156107b957600080fd5b506018546103d290610100900460ff1681565b3480156107d857600080fd5b50610461611a23565b3480156107ed57600080fd5b50610479611a6c565b34801561080257600080fd5b50610461610811366004613b84565b611aaa565b34801561082257600080fd5b50610461610831366004613b84565b611b34565b34801561084257600080fd5b50610461611b63565b34801561085757600080fd5b5061086b610866366004613c09565b611be5565b6040516103de9190613dfb565b34801561088457600080fd5b50610461610893366004613b84565b611c86565b3480156108a457600080fd5b50610461611d85565b6104616108bb366004613ecd565b611dd3565b3480156108cc57600080fd5b50600a546001600160a01b0316610429565b3480156108ea57600080fd5b506103fc61203c565b3480156108ff57600080fd5b5061047961090e366004613c09565b601c6020526000908152604090205481565b34801561092c57600080fd5b5061046161093b366004613f01565b61204b565b61046161094e366004613f34565b6120ae565b34801561095f57600080fd5b5061047960125481565b34801561097557600080fd5b50610461610984366004613b84565b61243c565b34801561099557600080fd5b506104616109a4366004613f7a565b6124c6565b3480156109b557600080fd5b506103fc6109c4366004613b84565b612533565b3480156109d557600080fd5b506104796109e4366004613c09565b601b6020526000908152604090205481565b348015610a0257600080fd5b50610a16610a11366004613c09565b61260d565b6040516001600160401b0390911681526020016103de565b348015610a3a57600080fd5b50610461610a49366004613ff5565b612668565b348015610a5a57600080fd5b5061047960165481565b348015610a7057600080fd5b50610479601a5481565b348015610a8657600080fd5b506103d2610a95366004614085565b612797565b348015610aa657600080fd5b50610a16610ab5366004613b84565b61281e565b348015610ac657600080fd5b50610461610ad5366004613c09565b612870565b348015610ae657600080fd5b50610461610af5366004613b84565b612908565b348015610b0657600080fd5b50610479610b15366004613c09565b601d6020526000908152604090205481565b60006001600160e01b0319821663780e9d6360e01b1480610b4c5750610b4c82612937565b92915050565b606060008054610b61906140af565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8d906140af565b8015610bda5780601f10610baf57610100808354040283529160200191610bda565b820191906000526020600020905b815481529060010190602001808311610bbd57829003601f168201915b5050505050905090565b336000908152600e6020526040812054829060ff1680610c2257506000818152600d602052604090205443600160401b9091046001600160401b0316105b610c475760405162461bcd60e51b8152600401610c3e906140e4565b60405180910390fd5b610c5083612987565b91505b50919050565b336000908152600e6020526040902054819060ff1680610c9757506000818152600d602052604090205443600160401b9091046001600160401b0316105b610cb35760405162461bcd60e51b8152600401610c3e906140e4565b610cbd8383612a1c565b505050565b600a546001600160a01b03163314610cec5760405162461bcd60e51b8152600401610c3e9061411b565b601055565b600a546001600160a01b03163314610d1b5760405162461bcd60e51b8152600401610c3e9061411b565b8015610d2c57610d29612b2d565b50565b610d29612baa565b600a546001600160a01b03163314610d5e5760405162461bcd60e51b8152600401610c3e9061411b565b6001600160a01b038116610da45760405162461bcd60e51b815260206004820152600d60248201526c656d707479206164647265737360981b6044820152606401610c3e565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b600a546001600160a01b03163314610def5760405162461bcd60e51b8152600401610c3e9061411b565b60008111610e345760405162461bcd60e51b815260206004820152601260248201527156616c7565206c6f776572207468656e203160701b6044820152606401610c3e565b601755565b336000908152600e6020526040902054819060ff1680610e7757506000818152600d602052604090205443600160401b9091046001600160401b0316105b610e935760405162461bcd60e51b8152600401610c3e906140e4565b336000908152600e602052604090205460ff16610ed157610eb5335b83612c2e565b610ed15760405162461bcd60e51b8152600401610c3e90614150565b610edc848484612d05565b50505050565b336000908152600e602052604081205460ff1680610f1f5750326000908152600c602052604090205443600160401b9091046001600160401b0316105b610f3b5760405162461bcd60e51b8152600401610c3e906140e4565b336000908152600e602052604090205460ff1680610f8157506001600160a01b0383166000908152600c602052604090205443600160401b9091046001600160401b0316105b610f9d5760405162461bcd60e51b8152600401610c3e906140e4565b6000610fa98484612eb0565b336000908152600e602052604090205490915060ff1680610fe857506000818152600d602052604090205443600160401b9091046001600160401b0316105b6110045760405162461bcd60e51b8152600401610c3e906140e4565b9392505050565b600a546001600160a01b031633146110355760405162461bcd60e51b8152600401610c3e9061411b565b6018805460ff8082161560ff1990921682179092556040519116151581527f0c56c7e2f62fe49aadfdce1fa53a6112839d06c4cfb65eee8a68476b34e79ab6906020015b60405180910390a1565b336000908152600e6020526040902054819060ff16806110c157506000818152600d602052604090205443600160401b9091046001600160401b0316105b6110dd5760405162461bcd60e51b8152600401610c3e906140e4565b610edc848484612f46565b600a54600160a01b900460ff16156111125760405162461bcd60e51b8152600401610c3e906141a1565b336000908152600e602052604090205460ff166111415760405162461bcd60e51b8152600401610c3e906141cb565b3261114b826112f1565b6001600160a01b0316146111a15760405162461bcd60e51b815260206004820152601760248201527f4f6f707320796f7520646f6e2774206f776e20746861740000000000000000006044820152606401610c3e565b60405181907fd83c63197e8e676d80ab0122beba9a9d20f3828839e9a1d6fe81d242e9cd7e6e90600090a2610d2981612f61565b6000806111e183613008565b336000908152600e602052604090205490915060ff168061122057506000818152600d602052604090205443600160401b9091046001600160401b0316105b610b4c5760405162461bcd60e51b8152600401610c3e906140e4565b600a546001600160a01b031633146112665760405162461bcd60e51b8152600401610c3e9061411b565b8051611279906014906020840190613a4d565b5050565b600a546001600160a01b031633146112a75760405162461bcd60e51b8152600401610c3e9061411b565b600081116112ec5760405162461bcd60e51b815260206004820152601260248201527156616c7565206c6f776572207468656e203160701b6044820152606401610c3e565b601655565b336000908152600e602052604081205460ff168061132e5750326000908152600c602052604090205443600160401b9091046001600160401b0316105b61134a5760405162461bcd60e51b8152600401610c3e906140e4565b336000908152600e6020526040902054829060ff168061138857506000818152600d602052604090205443600160401b9091046001600160401b0316105b6113a45760405162461bcd60e51b8152600401610c3e906140e4565b60006113af8461309b565b336000908152600e602052604090205490915060ff16806113f857506001600160a01b0381166000908152600c602052604090205443600160401b9091046001600160401b0316105b610c505760405162461bcd60e51b8152600401610c3e906140e4565b600a546001600160a01b0316331461143e5760405162461bcd60e51b8152600401610c3e9061411b565b8083146114a45760405162461bcd60e51b815260206004820152602e60248201527f506c656173652070726f7669646520657175616c207175616e7469746965732060448201526d616e6420726563697069656e747360901b6064820152608401610c3e565b6000806114b060085490565b905060005b838110156114f3578484828181106114cf576114cf6141f1565b90506020020135836114e1919061421d565b92506114ec81614235565b90506114b5565b506114fc611a6c565b611506838361421d565b11156115485760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b6044820152606401610c3e565b6000915060005b8581101561162e5760005b85858381811061156c5761156c6141f1565b9050602002013581101561161d576115b588888481811061158f5761158f6141f1565b90506020020160208101906115a49190613c09565b846115ae81614235565b9550613112565b601d60008989858181106115cb576115cb6141f1565b90506020020160208101906115e09190613c09565b6001600160a01b031681526020810191909152604001600090812080549161160783614235565b91905055508061161690614235565b905061155a565b5061162781614235565b905061154f565b50505050505050565b600a54600160a01b900460ff16156116615760405162461bcd60e51b8152600401610c3e906141a1565b600061166c60085490565b336000908152600e602052604090205490915060ff1661169e5760405162461bcd60e51b8152600401610c3e906141cb565b6116a6611a6c565b6116b182600161421d565b11156116f35760405162461bcd60e51b8152602060048201526011602482015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b6044820152606401610c3e565b60405181907f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a90600090a2326001600160a01b038316146117655760405181906001600160a01b038416907fb852c81bbe49d2ee0d68cfc0de80a7c3c41f8d8e4a9031a3c9474bd84643e2d090600090a35b61176f8282613112565b336000908152601d6020526040812080549161178a83614235565b91905055505050565b600a546001600160a01b031633146117bd5760405162461bcd60e51b8152600401610c3e9061411b565b8060115414610d29576008548110156118185760405162461bcd60e51b815260206004820152601d60248201527f56616c7565206c6f776572207468616e20746f74616c20737570706c790000006044820152606401610c3e565b601354601254611828919061421d565b81101561188b5760405162461bcd60e51b815260206004820152602b60248201527f56616c7565206c6f776572207468616e20746f74616c2072657365727665202660448201526a2066726565206d696e747360a81b6064820152608401610c3e565b601155565b600a546001600160a01b031633146118ba5760405162461bcd60e51b8152600401610c3e9061411b565b6001600160a01b0381166119005760405162461bcd60e51b815260206004820152600d60248201526c656d707479206164647265737360981b6044820152606401610c3e565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b336000908152600e602052604081205460ff16806119615750326000908152600c602052604090205443600160401b9091046001600160401b0316105b61197d5760405162461bcd60e51b8152600401610c3e906140e4565b336000908152600e602052604090205460ff16806119c357506001600160a01b0382166000908152600c602052604090205443600160401b9091046001600160401b0316105b6119df5760405162461bcd60e51b8152600401610c3e906140e4565b610b4c8261312c565b919050565b600a546001600160a01b03163314611a175760405162461bcd60e51b8152600401610c3e9061411b565b611a2160006131b3565b565b600a546001600160a01b03163314611a4d5760405162461bcd60e51b8152600401610c3e9061411b565b6018805462ff0000198116620100009182900460ff1615909102179055565b6000601a54601954601354601254601154611a879190614250565b611a919190614250565b611a9b919061421d565b611aa5919061421d565b905090565b600a546001600160a01b03163314611ad45760405162461bcd60e51b8152600401610c3e9061411b565b8060135414610d2957601a54811015611b2f5760405162461bcd60e51b815260206004820152601c60248201527f56616c7565206c6f776572207468656e2066726565206d696e746564000000006044820152606401610c3e565b601355565b600a546001600160a01b03163314611b5e5760405162461bcd60e51b8152600401610c3e9061411b565b600f55565b600a546001600160a01b03163314611b8d5760405162461bcd60e51b8152600401610c3e9061411b565b6018805460ff610100808304821615810261ff001990931692909217928390556040517fe8a4303c22d8b575a6f175ea4803f56b0a4551ac9e22153304feb0ddfd614355936110799390049091161515815260200190565b60606000611bf283611924565b90506000816001600160401b03811115611c0e57611c0e613c60565b604051908082528060200260200182016040528015611c37578160200160208202803683370190505b50905060005b82811015611c7e57611c4f8582610ee2565b828281518110611c6157611c616141f1565b602090810291909101015280611c7681614235565b915050611c3d565b509392505050565b600a546001600160a01b03163314611cb05760405162461bcd60e51b8152600401610c3e9061411b565b6000611cbb60085490565b905060125482601954611cce919061421d565b1115611d1c5760405162461bcd60e51b815260206004820152601c60248201527f5265736572766564206d6f7265207468656e20617661696c61626c65000000006044820152606401610c3e565b60005b82811015610cbd57611d3a33611d35838561421d565b613112565b336000908152601d60205260408120805491611d5583614235565b9190505550600160196000828254611d6d919061421d565b90915550819050611d7d81614235565b915050611d1f565b600a546001600160a01b03163314611daf5760405162461bcd60e51b8152600401610c3e9061411b565b60405133904780156108fc02916000818181858888f19350505050611a2157600080fd5b6002600b541415611e265760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c3e565b6002600b556000611e3660085490565b9050333214611e4457600080fd5b60185462010000900460ff16611e945760405162461bcd60e51b8152602060048201526015602482015274119c9959481b5a5b9d081b9bdd08195b98589b1959605a1b6044820152606401610c3e565b6010546040516bffffffffffffffffffffffff193360601b166020820152611ee191906034015b60405160208183030381529060405280519060200120846132059092919063ffffffff16565b611f2d5760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e207468652066726565206c697374000000006044820152606401610c3e565b601354601a54611f3e90600161421d565b1115611f7d5760405162461bcd60e51b815260206004820152600e60248201526d4e6f206d6f726520737570706c7960901b6044820152606401610c3e565b336000908152601b6020526040902054600111611fdc5760405162461bcd60e51b815260206004820181905260248201527f596f7520616c7265616479206d696e74656420796f75722066726565206e66746044820152606401610c3e565b611fe63382613112565b336000908152601d6020526040812080549161200183614235565b9091555050336000908152601b60205260408120600190819055601a80549192909161202e90849061421d565b90915550506001600b555050565b606060018054610b61906140af565b336000908152600e602052604090205460ff16806120885750326000908152600c602052604090205443600160401b9091046001600160401b0316105b6120a45760405162461bcd60e51b8152600401610c3e906140e4565b611279828261321b565b6002600b5414156121015760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c3e565b6002600b55600061211160085490565b905033321461211f57600080fd5b601854610100900460ff166121695760405162461bcd60e51b815260206004820152601060248201526f14d85b19481b9bdd08195b98589b195960821b6044820152606401610c3e565b34601554846121789190614267565b11156121b85760405162461bcd60e51b815260206004820152600f60248201526e4d6f72652045544820706c6561736560881b6044820152606401610c3e565b6121c0611a6c565b6121ca828561421d565b11156122315760405162461bcd60e51b815260206004820152603060248201527f506c6561736520747279206d696e74696e672077697468206c6573732c206e6f60448201526f7420656e6f75676820737570706c792160801b6064820152608401610c3e565b60185460ff1615156001141561235957600f546040516bffffffffffffffffffffffff193360601b16602082015261226c9190603401611ebb565b6122b85760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e207468652077686974656c697374000000006044820152606401610c3e565b601754336000908152601c60205260409020546122d5908561421d565b11156123545760405162461bcd60e51b815260206004820152604260248201527f4578636565646564206d6178206d696e7420706572206164647265737320666f60448201527f722077686974656c6973742c20747279206d696e74696e672077697468206c65606482015261737360f01b608482015260a401610c3e565b6123b5565b6016548311156123b55760405162461bcd60e51b815260206004820152602160248201527f4578636565646564206d6178206d696e7420706572207472616e73616374696f6044820152603760f91b6064820152608401610c3e565b60005b83811015612431576123ce33611d35838561421d565b336000908152601d602052604081208054916123e983614235565b909155505060185460ff1615156001141561241f57336000908152601c6020526040812080549161241983614235565b91905055505b8061242981614235565b9150506123b8565b50506001600b555050565b600a546001600160a01b031633146124665760405162461bcd60e51b8152600401610c3e9061411b565b8060125414610d29576019548110156124c15760405162461bcd60e51b815260206004820152601f60248201527f56616c7565206c6f776572207468656e2072657365727665206d696e746564006044820152606401610c3e565b601255565b336000908152600e6020526040902054829060ff168061250457506000818152600d602052604090205443600160401b9091046001600160401b0316105b6125205760405162461bcd60e51b8152600401610c3e906140e4565b61252c85858585613226565b5050505050565b6000818152600260205260409020546060906001600160a01b03166125b25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c3e565b60006125bc613257565b905060008151116125dc5760405180602001604052806000815250610c50565b806125e684613266565b6040516020016125f7929190614286565b6040516020818303038152906040529392505050565b336000908152600e602052604081205460ff1661263c5760405162461bcd60e51b8152600401610c3e906141cb565b506001600160a01b03166000908152600c6020526040902054600160401b90046001600160401b031690565b336000908152600e602052604090205460ff166126975760405162461bcd60e51b8152600401610c3e906141cb565b6040805180820182526001600160401b03428181168352438281166020808601918252326000908152600c9091529586209451855491518516600160401b026001600160801b03199092169416939093179290921790925590915b8351811015610edc576040518060400160405280846001600160401b03168152602001836001600160401b0316815250600d6000868481518110612738576127386141f1565b6020908102919091018101518252818101929092526040016000208251815493909201516001600160401b03908116600160401b026001600160801b03199094169216919091179190911790558061278f81614235565b9150506126f2565b336000908152600e602052604081205460ff16806127d45750326000908152600c602052604090205443600160401b9091046001600160401b0316105b6127f05760405162461bcd60e51b8152600401610c3e906140e4565b6001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff16611004565b336000908152600e602052604081205460ff1661284d5760405162461bcd60e51b8152600401610c3e906141cb565b506000908152600d6020526040902054600160401b90046001600160401b031690565b600a546001600160a01b0316331461289a5760405162461bcd60e51b8152600401610c3e9061411b565b6001600160a01b0381166128ff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c3e565b610d29816131b3565b600a546001600160a01b031633146129325760405162461bcd60e51b8152600401610c3e9061411b565b601555565b60006001600160e01b031982166380ac58cd60e01b148061296857506001600160e01b03198216635b5e139f60e01b145b80610b4c57506301ffc9a760e01b6001600160e01b0319831614610b4c565b6000818152600260205260408120546001600160a01b0316612a005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c3e565b506000908152600460205260409020546001600160a01b031690565b6000612a278261309b565b9050806001600160a01b0316836001600160a01b03161415612a955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c3e565b336001600160a01b0382161480612ab15750612ab18133612797565b612b235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c3e565b610cbd8383613363565b600a54600160a01b900460ff1615612b575760405162461bcd60e51b8152600401610c3e906141a1565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612b923390565b6040516001600160a01b039091168152602001611079565b600a54600160a01b900460ff16612bfa5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610c3e565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33612b92565b6000818152600260205260408120546001600160a01b0316612ca75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c3e565b6000612cb28361309b565b9050806001600160a01b0316846001600160a01b03161480612ced5750836001600160a01b0316612ce284610be4565b6001600160a01b0316145b80612cfd5750612cfd8185612797565b949350505050565b826001600160a01b0316612d188261309b565b6001600160a01b031614612d805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c3e565b6001600160a01b038216612de25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c3e565b612ded8383836133d1565b612df8600082613363565b6001600160a01b0383166000908152600360205260408120805460019290612e21908490614250565b90915550506001600160a01b0382166000908152600360205260408120805460019290612e4f90849061421d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000612ebb8361312c565b8210612f1d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c3e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610cbd838383604051806020016040528060008152506124c6565b6000612f6c8261309b565b9050612f7a816000846133d1565b612f85600083613363565b6001600160a01b0381166000908152600360205260408120805460019290612fae908490614250565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600061301360085490565b82106130765760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c3e565b60088281548110613089576130896141f1565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b031680610b4c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c3e565b611279828260405180602001604052806000815250613489565b60006001600160a01b0382166131975760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c3e565b506001600160a01b031660009081526003602052604090205490565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008261321285846134bc565b14949350505050565b611279338383613560565b61322f33610eaf565b61324b5760405162461bcd60e51b8152600401610c3e90614150565b610edc8484848461362f565b606060148054610b61906140af565b60608161328a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156132b4578061329e81614235565b91506132ad9050600a836142cb565b915061328e565b6000816001600160401b038111156132ce576132ce613c60565b6040519080825280601f01601f1916602001820160405280156132f8576020820181803683370190505b5090505b8415612cfd5761330d600183614250565b915061331a600a866142df565b61332590603061421d565b60f81b81838151811061333a5761333a6141f1565b60200101906001600160f81b031916908160001a90535061335c600a866142cb565b94506132fc565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906133988261309b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b03831661342c5761342781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61344f565b816001600160a01b0316836001600160a01b03161461344f5761344f8382613662565b6001600160a01b03821661346657610cbd816136ff565b826001600160a01b0316826001600160a01b031614610cbd57610cbd82826137ae565b61349383836137f2565b6134a06000848484613940565b610cbd5760405162461bcd60e51b8152600401610c3e906142f3565b600081815b8451811015611c7e5760008582815181106134de576134de6141f1565b6020026020010151905080831161352057604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061354d565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061355881614235565b9150506134c1565b816001600160a01b0316836001600160a01b031614156135c25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c3e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61363a848484612d05565b61364684848484613940565b610edc5760405162461bcd60e51b8152600401610c3e906142f3565b6000600161366f8461312c565b6136799190614250565b6000838152600760205260409020549091508082146136cc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061371190600190614250565b60008381526009602052604081205460088054939450909284908110613739576137396141f1565b90600052602060002001549050806008838154811061375a5761375a6141f1565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061379257613792614345565b6001900381819060005260206000200160009055905550505050565b60006137b98361312c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166138485760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c3e565b6000818152600260205260409020546001600160a01b0316156138ad5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c3e565b6138b9600083836133d1565b6001600160a01b03821660009081526003602052604081208054600192906138e290849061421d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15613a4257604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061398490339089908890889060040161435b565b602060405180830381600087803b15801561399e57600080fd5b505af19250505080156139ce575060408051601f3d908101601f191682019092526139cb91810190614398565b60015b613a28573d8080156139fc576040519150601f19603f3d011682016040523d82523d6000602084013e613a01565b606091505b508051613a205760405162461bcd60e51b8152600401610c3e906142f3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612cfd565b506001949350505050565b828054613a59906140af565b90600052602060002090601f016020900481019282613a7b5760008555613ac1565b82601f10613a9457805160ff1916838001178555613ac1565b82800160010185558215613ac1579182015b82811115613ac1578251825591602001919060010190613aa6565b50613acd929150613ad1565b5090565b5b80821115613acd5760008155600101613ad2565b6001600160e01b031981168114610d2957600080fd5b600060208284031215613b0e57600080fd5b813561100481613ae6565b60005b83811015613b34578181015183820152602001613b1c565b83811115610edc5750506000910152565b60008151808452613b5d816020860160208601613b19565b601f01601f19169290920160200192915050565b6020815260006110046020830184613b45565b600060208284031215613b9657600080fd5b5035919050565b80356001600160a01b03811681146119e857600080fd5b60008060408385031215613bc757600080fd5b613bd083613b9d565b946020939093013593505050565b803580151581146119e857600080fd5b600060208284031215613c0057600080fd5b61100482613bde565b600060208284031215613c1b57600080fd5b61100482613b9d565b600080600060608486031215613c3957600080fd5b613c4284613b9d565b9250613c5060208501613b9d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715613c9e57613c9e613c60565b604052919050565b60006001600160401b03831115613cbf57613cbf613c60565b613cd2601f8401601f1916602001613c76565b9050828152838383011115613ce657600080fd5b828260208301376000602084830101529392505050565b600060208284031215613d0f57600080fd5b81356001600160401b03811115613d2557600080fd5b8201601f81018413613d3657600080fd5b612cfd84823560208401613ca6565b60008083601f840112613d5757600080fd5b5081356001600160401b03811115613d6e57600080fd5b6020830191508360208260051b8501011115613d8957600080fd5b9250929050565b60008060008060408587031215613da657600080fd5b84356001600160401b0380821115613dbd57600080fd5b613dc988838901613d45565b90965094506020870135915080821115613de257600080fd5b50613def87828801613d45565b95989497509550505050565b6020808252825182820181905260009190848201906040850190845b81811015613e3357835183529284019291840191600101613e17565b50909695505050505050565b60006001600160401b03821115613e5857613e58613c60565b5060051b60200190565b600082601f830112613e7357600080fd5b81356020613e88613e8383613e3f565b613c76565b82815260059290921b84018101918181019086841115613ea757600080fd5b8286015b84811015613ec25780358352918301918301613eab565b509695505050505050565b600060208284031215613edf57600080fd5b81356001600160401b03811115613ef557600080fd5b612cfd84828501613e62565b60008060408385031215613f1457600080fd5b613f1d83613b9d565b9150613f2b60208401613bde565b90509250929050565b60008060408385031215613f4757600080fd5b8235915060208301356001600160401b03811115613f6457600080fd5b613f7085828601613e62565b9150509250929050565b60008060008060808587031215613f9057600080fd5b613f9985613b9d565b9350613fa760208601613b9d565b92506040850135915060608501356001600160401b03811115613fc957600080fd5b8501601f81018713613fda57600080fd5b613fe987823560208401613ca6565b91505092959194509250565b6000602080838503121561400857600080fd5b82356001600160401b0381111561401e57600080fd5b8301601f8101851361402f57600080fd5b803561403d613e8382613e3f565b81815260059190911b8201830190838101908783111561405c57600080fd5b928401925b8284101561407a57833582529284019290840190614061565b979650505050505050565b6000806040838503121561409857600080fd5b6140a183613b9d565b9150613f2b60208401613b9d565b600181811c908216806140c357607f821691505b60208210811415610c5357634e487b7160e01b600052602260045260246000fd5b6020808252601c908201527f6c6173742077726974652073616d6520626c6f636b206e756d62657200000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252600c908201526b41646d696e73206f6e6c792160a01b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000821982111561423057614230614207565b500190565b600060001982141561424957614249614207565b5060010190565b60008282101561426257614262614207565b500390565b600081600019048311821515161561428157614281614207565b500290565b60008351614298818460208801613b19565b8351908301906142ac818360208801613b19565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b6000826142da576142da6142b5565b500490565b6000826142ee576142ee6142b5565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061438e90830184613b45565b9695505050505050565b6000602082840312156143aa57600080fd5b815161100481613ae656fea26469706673582212200c0952bcb9ffa9846761aa416162e6e615ca5598c78d45683905adb7d2f97e3c64736f6c63430008090033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d576f615578764a4c76796e41436b45394b4b6a33476b6762575144546f7164536d454c39376352796e4772662f000000000000000000000000000000

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

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d576f615578764a4c76796e41436b45394b4b6a33476b676257514454
Arg [4] : 6f7164536d454c39376352796e4772662f000000000000000000000000000000


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.