ETH Price: $3,367.54 (-1.44%)
Gas: 7 Gwei

Token

LinksDAO (LINKSDAO)
 

Overview

Max Total Supply

0 LINKSDAO

Holders

5,348

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LINKSDAO
0x254916E9ce7eEd74a9036D3C7D3858cA3A2dD2cd
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
LinksDAO

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 18 : linksdao.sol
// SPDX-License-Identifier: UNLICENSED

// ███╗   ███╗ █████╗ ██████╗ ███████╗    ██╗    ██╗██╗████████╗██╗  ██╗    ███╗   ███╗ █████╗ ███████╗ ██████╗ ███╗   ██╗
// ████╗ ████║██╔══██╗██╔══██╗██╔════╝    ██║    ██║██║╚══██╔══╝██║  ██║    ████╗ ████║██╔══██╗██╔════╝██╔═══██╗████╗  ██║
// ██╔████╔██║███████║██║  ██║█████╗      ██║ █╗ ██║██║   ██║   ███████║    ██╔████╔██║███████║███████╗██║   ██║██╔██╗ ██║
// ██║╚██╔╝██║██╔══██║██║  ██║██╔══╝      ██║███╗██║██║   ██║   ██╔══██║    ██║╚██╔╝██║██╔══██║╚════██║██║   ██║██║╚██╗██║
// ██║ ╚═╝ ██║██║  ██║██████╔╝███████╗    ╚███╔███╔╝██║   ██║   ██║  ██║    ██║ ╚═╝ ██║██║  ██║███████║╚██████╔╝██║ ╚████║
// ╚═╝     ╚═╝╚═╝  ╚═╝╚═════╝ ╚══════╝     ╚══╝╚══╝ ╚═╝   ╚═╝   ╚═╝  ╚═╝    ╚═╝     ╚═╝╚═╝  ╚═╝╚══════╝ ╚═════╝ ╚═╝  ╚═══╝

pragma solidity ^0.8.9;

import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "./EIP712Whitelisting.sol";

contract LinksDAO is ERC721, ReentrancyGuard, Ownable, EIP712Whitelisting {
  using Counters for Counters.Counter;

    /** MINTING **/
  uint256 public MAX_STANDARD_PER_WALLET;
  uint256 public MAX_PREMIUM_PER_WALLET;
  uint256 public PREMIUM_PRICE;
  uint256 public STANDARD_PRICE;
  uint256 public MAX_STANDARD_SUPPLY;
  uint256 public MAX_PREMIUM_SUPPLY;
  uint256 public MAX_SUPPLY;
  uint256 public MAX_STANDARD_RESERVED_SUPPLY;
  uint256 public MAX_PREMIUM_RESERVED_SUPPLY;
  uint256 public MAX_MULTIMINT;
  uint256 public MAX_STANDARD_WHITELIST_SUPPLY;
  uint256 public MAX_PREMIUM_WHITELIST_SUPPLY;

  PaymentSplitter private _splitter;

  constructor (
    string memory tokenName,
    string memory tokenSymbol,
    string memory customBaseURI_,
    address[] memory payees,
    uint256[] memory shares,
    uint256 standardPrice,
    uint256 premiumPrice
   ) ERC721(tokenName, tokenSymbol) EIP712Whitelisting() {
    customBaseURI = customBaseURI_;

    _splitter = new PaymentSplitter(payees, shares);

    STANDARD_PRICE = standardPrice;
    PREMIUM_PRICE = premiumPrice;
    MAX_PREMIUM_PER_WALLET = 1;
    MAX_STANDARD_PER_WALLET = 3;

    MAX_MULTIMINT = 3;

    MAX_STANDARD_SUPPLY = 6363;
    MAX_PREMIUM_SUPPLY = 2727;
    MAX_STANDARD_RESERVED_SUPPLY = 636;
    MAX_PREMIUM_RESERVED_SUPPLY = 272;
    MAX_SUPPLY = MAX_STANDARD_SUPPLY + MAX_PREMIUM_SUPPLY;

    MAX_STANDARD_WHITELIST_SUPPLY = 3181;
    MAX_PREMIUM_WHITELIST_SUPPLY = 1363;
  }

  /** ADMIN FUNCTIONS **/

  bool public saleIsActive = false;
  bool public whitelistSaleIsActive = true;

  function flipSaleState() external onlyOwner {
    saleIsActive = !saleIsActive;
  }

  function flipWhitelistSaleState() external onlyOwner {
    whitelistSaleIsActive = !whitelistSaleIsActive;
  }

  function setStandardPrice(uint256 price) external onlyOwner {
    STANDARD_PRICE = price;
  }

  function setPremiumPrice(uint256 price) external onlyOwner {
    PREMIUM_PRICE = price;
  }

  function setPremiumLimitPerWallet(uint256 maxPerWallet) external onlyOwner {
    MAX_PREMIUM_PER_WALLET = maxPerWallet;
  }

  function setStandardLimitPerWallet(uint256 maxPerWallet) external onlyOwner {
    MAX_STANDARD_PER_WALLET = maxPerWallet;
  }

  function setMultiMint(uint256 maxMultiMint) external onlyOwner {
    MAX_MULTIMINT = maxMultiMint;
  }

  function setMaxStandardWhitelistSupply(uint256 maxSupply) external onlyOwner {
    MAX_STANDARD_WHITELIST_SUPPLY = maxSupply;
  }

  function setMaxPremiumWhitelistSupply(uint256 maxSupply) external onlyOwner {
    MAX_PREMIUM_WHITELIST_SUPPLY = maxSupply;
  }

  /** MINTING LIMITS **/

  mapping(address => uint256) private standardMintCountMap;
  mapping(address => uint256) private premiumMintCountMap;
  //mapping(address => uint256) private standardAllowedMintCountMap;

  function allowedStandardMintCount(address minter) public view returns (uint256) {
    return MAX_STANDARD_PER_WALLET - standardMintCountMap[minter];
  }

  function updateStandardMintCount(address minter, uint256 count) private {
    standardMintCountMap[minter] += count;
  }

    function allowedPremiumMintCount(address minter) public view returns (uint256) {
    return MAX_PREMIUM_PER_WALLET - premiumMintCountMap[minter];
  }

  function updatePremiumMintCount(address minter, uint256 count) private {
    premiumMintCountMap[minter] += count;
  }

  /** COUNTERS */

  Counters.Counter private standardSupplyCounter;
  Counters.Counter private standardReservedSupplyCounter;
  Counters.Counter private premiumSupplyCounter;
  Counters.Counter private premiumReservedSupplyCounter;
  Counters.Counter private standardWhitelistMintCounter;
  Counters.Counter private premiumWhitelistMintCounter;

  function totalStandardSupply() public view returns (uint256) {
    return standardSupplyCounter.current();
  }

  function totalStandardReservedSupply() public view returns (uint256) {
    return standardReservedSupplyCounter.current();
  }

  function totalPremiumSupply() public view returns (uint256) {
    return premiumSupplyCounter.current();
  }

  function totalPremiumReservedSupply() public view returns (uint256) {
    return premiumReservedSupplyCounter.current();
  }

  function totalStandardWhitelistMints() public view returns (uint256) {
    return standardWhitelistMintCounter.current();
  }

    function totalPremiumWhitelistMints() public view returns (uint256) {
    return premiumWhitelistMintCounter.current();
  }

  /** MINTING **/

  function mintStandard(uint256 count) public payable nonReentrant {
    require(saleIsActive, "Sale not active");
    require(totalStandardSupply() + count - 1 < MAX_STANDARD_SUPPLY - MAX_STANDARD_RESERVED_SUPPLY, "Exceeds max supply");
    require(count - 1 < MAX_MULTIMINT, "Trying to mint too many at a time");
    require(msg.value >= STANDARD_PRICE * count, "Insufficient payment");

    if (allowedStandardMintCount(_msgSender()) > 0) {
      updateStandardMintCount(_msgSender(), count);
    } else {
      revert("Minting limit exceeded");
    }

    for (uint256 i = 0; i < count; i++) {
      standardSupplyCounter.increment();
      _safeMint(_msgSender(), MAX_STANDARD_RESERVED_SUPPLY + totalStandardSupply());
    }

    payable(_splitter).transfer(msg.value);
  }

  function mintPremium(uint256 count) public payable nonReentrant {
    require(saleIsActive, "Sale not active");
    require(totalPremiumSupply() + count - 1 < MAX_PREMIUM_SUPPLY - MAX_PREMIUM_RESERVED_SUPPLY, "Exceeds max supply");
    require(count - 1 < MAX_MULTIMINT, "Trying to mint too many at a time");
    require(msg.value >= PREMIUM_PRICE , "Insufficient payment");

    if (allowedPremiumMintCount(_msgSender()) > 0) {
      updatePremiumMintCount(_msgSender(), count);
    } else {
      revert("Minting limit exceeded");
    }

    for (uint256 i = 0; i < count; i++) {
      premiumSupplyCounter.increment();
      _safeMint(_msgSender(), MAX_STANDARD_SUPPLY + MAX_PREMIUM_RESERVED_SUPPLY + totalPremiumSupply());
    }

    payable(_splitter).transfer(msg.value);
  }

  function mintStandardReserved(uint256 count) external onlyOwner {
    require(totalStandardReservedSupply() + count - 1 < MAX_STANDARD_RESERVED_SUPPLY, "Exceeds max supply");

    for (uint256 i = 0; i < count; i++) {
      standardReservedSupplyCounter.increment();
      _safeMint(_msgSender(), totalStandardReservedSupply());
    }
  }

  function mintStandardReservedToAddress(uint256 count, address account) external onlyOwner {
    require(totalStandardReservedSupply() + count - 1 < MAX_STANDARD_RESERVED_SUPPLY, "Exceeds max supply");

    for (uint256 i = 0; i < count; i++) {
      standardReservedSupplyCounter.increment();
      _safeMint(account, totalStandardReservedSupply());
    }
  }

  function mintPremiumReserved(uint256 count) external onlyOwner{
    require(totalPremiumReservedSupply() + count - 1 < MAX_PREMIUM_RESERVED_SUPPLY, "Exceeds max supply");

    for (uint256 i = 0; i < count; i++) {
      premiumReservedSupplyCounter.increment();
      _safeMint(_msgSender(), MAX_STANDARD_SUPPLY + totalPremiumReservedSupply());
    }
  }

  function mintPremiumReservedToAddress(uint256 count, address account) external onlyOwner{
    require(totalPremiumReservedSupply() + count - 1 < MAX_PREMIUM_RESERVED_SUPPLY, "Exceeds max supply");

    for (uint256 i = 0; i < count; i++) {
      premiumReservedSupplyCounter.increment();
      _safeMint(account, MAX_STANDARD_SUPPLY + totalPremiumReservedSupply());
    }
  }

  function mintStandardWhitelist(uint256 count, bytes calldata signature) public payable requiresWhitelist(signature) nonReentrant {
    require(whitelistSaleIsActive, "Sale not active");
    require(totalStandardWhitelistMints() + count - 1 < MAX_STANDARD_WHITELIST_SUPPLY, "Exceeds whitelist supply");
    require(totalStandardSupply() < MAX_STANDARD_SUPPLY - MAX_STANDARD_RESERVED_SUPPLY + count - 1, "Exceeds max supply");
    require(count - 1 < MAX_MULTIMINT, "Trying to mint too many at a time");
    require(msg.value >= STANDARD_PRICE * count, "Insufficient payment");

    if (allowedStandardMintCount(_msgSender()) > 0) {
      updateStandardMintCount(_msgSender(), count);
    } else {
      revert("Minting limit exceeded");
    }

    for (uint256 i = 0; i < count; i++) {
      standardSupplyCounter.increment();
      standardWhitelistMintCounter.increment();
      _safeMint(_msgSender(), MAX_STANDARD_RESERVED_SUPPLY + totalStandardSupply());
    }

    payable(_splitter).transfer(msg.value);
  }

  function mintPremiumWhitelist(uint256 count, bytes calldata signature) public payable requiresWhitelist(signature) nonReentrant {
    require(whitelistSaleIsActive, "Sale not active");
    require(totalPremiumWhitelistMints() + count - 1 < MAX_PREMIUM_WHITELIST_SUPPLY, "Exceeds whitelist supply");
    require(totalPremiumSupply() < MAX_PREMIUM_SUPPLY - MAX_PREMIUM_RESERVED_SUPPLY + count - 1, "Exceeds max supply");
    require(count - 1 < MAX_MULTIMINT, "Trying to mint too many at a time");
    require(msg.value >= PREMIUM_PRICE * count, "Insufficient payment");

    if (allowedPremiumMintCount(_msgSender()) > 0) {
      updatePremiumMintCount(_msgSender(), count);
    } else {
      revert("Minting limit exceeded");
    }

    for (uint256 i = 0; i < count; i++) {
      premiumSupplyCounter.increment();
      premiumWhitelistMintCounter.increment();
      _safeMint(_msgSender(), MAX_STANDARD_SUPPLY + MAX_PREMIUM_RESERVED_SUPPLY + totalPremiumSupply());
    }

    payable(_splitter).transfer(msg.value);
  }

  /** WHITELIST **/

  function checkWhitelist(bytes calldata signature) public view requiresWhitelist(signature) returns (bool) {
    return true;
  }

  /** URI HANDLING **/

  string private customBaseURI;

  function baseTokenURI() public view returns (string memory) {
    return customBaseURI;
  }

  function setBaseURI(string memory customBaseURI_) external onlyOwner {
    customBaseURI = customBaseURI_;
  }

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

  /** PAYOUT **/

  function release(address payable account) public virtual onlyOwner {
    _splitter.release(account);
  }
}

File 2 of 18 : EIP712Whitelisting.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

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

contract EIP712Whitelisting is Ownable {
    using ECDSA for bytes32;

    // The key used to sign whitelist signatures.
    // We will check to ensure that the key that signed the signature
    // is this one that we expect.
    address whitelistSigningKey = address(0);

    // Domain Separator is the EIP-712 defined structure that defines what contract
    // and chain these signatures can be used for.  This ensures people can't take
    // a signature used to mint on one contract and use it for another, or a signature
    // from testnet to replay on mainnet.
    // It has to be created in the constructor so we can dynamically grab the chainId.
    // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md#definition-of-domainseparator
    bytes32 public DOMAIN_SEPARATOR;

    // The typehash for the data type specified in the structured data
    // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md#rationale-for-typehash
    // This should match whats in the client side whitelist signing code
    // https://github.com/msfeldstein/EIP712-whitelisting/blob/main/test/signWhitelist.ts#L22
    bytes32 public constant MINTER_TYPEHASH =
        keccak256("Minter(address wallet)");

    constructor() {
        // This should match whats in the client side whitelist signing code
        // https://github.com/msfeldstein/EIP712-whitelisting/blob/main/test/signWhitelist.ts#L12
        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                keccak256(
                    "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
                ),
                // This should match the domain you set in your client side signing.
                keccak256(bytes("WhitelistToken")),
                keccak256(bytes("1")),
                block.chainid,
                address(this)
            )
        );
    }

    function setWhitelistSigningAddress(address newSigningKey) public onlyOwner {
        whitelistSigningKey = newSigningKey;
    }

    modifier requiresWhitelist(bytes calldata signature) {
        require(whitelistSigningKey != address(0), "whitelist not enabled");
        // Verify EIP-712 signature by recreating the data structure
        // that we signed on the client side, and then using that to recover
        // the address that signed the signature for this data.
        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                DOMAIN_SEPARATOR,
                keccak256(abi.encode(MINTER_TYPEHASH, msg.sender))
            )
        );
        // Use the recover method to see what address was used to create
        // the signature on this data.
        // Note that if the digest doesn't exactly match what was signed we'll
        // get a random recovered address.
        address recoveredAddress = digest.recover(signature);
        require(recoveredAddress == whitelistSigningKey, "Invalid Signature");
        _;
    }
}

File 3 of 18 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol";
import "../utils/Context.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 4 of 18 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 7 of 18 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 8 of 18 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 9 of 18 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 14 of 18 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 15 of 18 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 16 of 18 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

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

pragma solidity ^0.8.0;

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

File 18 of 18 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"string","name":"customBaseURI_","type":"string"},{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"},{"internalType":"uint256","name":"standardPrice","type":"uint256"},{"internalType":"uint256","name":"premiumPrice","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MULTIMINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PREMIUM_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PREMIUM_RESERVED_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PREMIUM_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PREMIUM_WHITELIST_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_STANDARD_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_STANDARD_RESERVED_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_STANDARD_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_STANDARD_WHITELIST_SUPPLY","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":"MINTER_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PREMIUM_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STANDARD_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedPremiumMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedStandardMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintPremium","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintPremiumReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"mintPremiumReservedToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintPremiumWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintStandard","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintStandardReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"mintStandardReservedToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintStandardWhitelist","outputs":[],"stateMutability":"payable","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":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","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":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMaxPremiumWhitelistSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMaxStandardWhitelistSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMultiMint","type":"uint256"}],"name":"setMultiMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"name":"setPremiumLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPremiumPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"name":"setStandardLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setStandardPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigningKey","type":"address"}],"name":"setWhitelistSigningAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPremiumReservedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPremiumSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPremiumWhitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStandardReservedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStandardSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStandardWhitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6080604052600880546001600160a01b03191690556016805461ffff60a01b1916600160a81b1790553480156200003557600080fd5b506040516200574938038062005749833981016040819052620000589162000538565b8651879087906200007190600090602085019062000294565b5080516200008790600190602084019062000294565b50506001600655506200009a3362000242565b604080518082018252600e81526d2bb434ba32b634b9ba2a37b5b2b760911b6020918201528151808301835260018152603160f81b9082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f918101919091527fb31abde365a4931cba9a0ea66b4737a15e8eb9a0649f549f4857db08880a9049918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160408051601f19818403018152919052805160209182012060095585516200018991601f919088019062000294565b5083836040516200019a9062000323565b620001a79291906200062c565b604051809103906000f080158015620001c4573d6000803e3d6000fd5b50601680546001600160a01b0319166001600160a01b0392909216919091179055600d829055600c8190556001600b556003600a8190556013556118db600e819055610aa7600f81905561027c6011556101106012556200022591620006b4565b6010555050610c6d60145550506105536015555062000718915050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002a290620006db565b90600052602060002090601f016020900481019282620002c6576000855562000311565b82601f10620002e157805160ff191683800117855562000311565b8280016001018555821562000311579182015b8281111562000311578251825591602001919060010190620002f4565b506200031f92915062000331565b5090565b61123d806200450c83390190565b5b808211156200031f576000815560010162000332565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171562000389576200038962000348565b604052919050565b600082601f830112620003a357600080fd5b81516001600160401b03811115620003bf57620003bf62000348565b6020620003d5601f8301601f191682016200035e565b8281528582848701011115620003ea57600080fd5b60005b838110156200040a578581018301518282018401528201620003ed565b838111156200041c5760008385840101525b5095945050505050565b60006001600160401b0382111562000442576200044262000348565b5060051b60200190565b600082601f8301126200045e57600080fd5b8151602062000477620004718362000426565b6200035e565b82815260059290921b840181019181810190868411156200049757600080fd5b8286015b84811015620004cb5780516001600160a01b0381168114620004bd5760008081fd5b83529183019183016200049b565b509695505050505050565b600082601f830112620004e857600080fd5b81516020620004fb620004718362000426565b82815260059290921b840181019181810190868411156200051b57600080fd5b8286015b84811015620004cb57805183529183019183016200051f565b600080600080600080600060e0888a0312156200055457600080fd5b87516001600160401b03808211156200056c57600080fd5b6200057a8b838c0162000391565b985060208a01519150808211156200059157600080fd5b6200059f8b838c0162000391565b975060408a0151915080821115620005b657600080fd5b620005c48b838c0162000391565b965060608a0151915080821115620005db57600080fd5b620005e98b838c016200044c565b955060808a01519150808211156200060057600080fd5b506200060f8a828b01620004d6565b93505060a0880151915060c0880151905092959891949750929550565b604080825283519082018190526000906020906060840190828701845b82811015620006705781516001600160a01b03168452928401929084019060010162000649565b5050508381038285015284518082528583019183019060005b81811015620006a75783518352928401929184019160010162000689565b5090979650505050505050565b60008219821115620006d657634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620006f057607f821691505b602082108114156200071257634e487b7160e01b600052602260045260246000fd5b50919050565b613de480620007286000396000f3fe6080604052600436106103ad5760003560e01c80636352211e116101e7578063b88d4fde1161010d578063d547cfb7116100a0578063ed3ad7701161006f578063ed3ad77014610a38578063ed5b620714610a58578063f2fde38b14610a6b578063fa4d280c14610a8b57600080fd5b8063d547cfb714610999578063e0ad790c146109ae578063e985e9c5146109ce578063eb8d244414610a1757600080fd5b8063c8b19c6a116100dc578063c8b19c6a1461092f578063cd77083314610944578063cf43b36d14610964578063d1beca641461098457600080fd5b8063b88d4fde146108b9578063b8fc1051146108d9578063c34c3854146108ef578063c87b56dd1461090f57600080fd5b8063838dc2b6116101855780639f91c582116101545780639f91c5821461084e578063a22cb46514610864578063a699875514610884578063ad2f26e11461089957600080fd5b8063838dc2b6146107e65780638d406eb6146107fb5780638da5cb5b1461081b57806395d89b411461083957600080fd5b80636ad460ff116101c15780636ad460ff1461078657806370a082311461079b578063715018a6146107bb5780638091ed20146107d057600080fd5b80636352211e14610730578063664dd6f51461075057806369f66cb71461077057600080fd5b806334918dfd116102d757806350001a921161026a57806355f804b31161023957806355f804b3146106ca578063567ec097146106ea57806357684712146106fd578063610c15971461071d57600080fd5b806350001a921461066857806350e596eb1461068857806352d49b701461069e57806354a246b9146106b457600080fd5b806349d429a0116102a657806349d429a0146106075780634ba3e4c1146106275780634bf2869f1461063c5780634e0bb07e1461065257600080fd5b806334918dfd146105a95780633644e515146105be5780633755cccf146105d457806342842e0e146105e757600080fd5b80631826f4361161034f578063274975cd1161031e578063274975cd1461053e57806329405aff146105535780632a9581791461057357806332cb6b0c1461059357600080fd5b80631826f436146104c857806319165587146104e857806321fbebb51461050857806323b872dd1461051e57600080fd5b8063095ea7b31161038b578063095ea7b31461044157806310b5454d1461046357806314b81e4114610484578063154ccdb1146104a457600080fd5b806301ffc9a7146103b257806306fdde03146103e7578063081812fc14610409575b600080fd5b3480156103be57600080fd5b506103d26103cd3660046137ec565b610abf565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b506103fc610b5c565b6040516103de9190613861565b34801561041557600080fd5b50610429610424366004613874565b610bee565b6040516001600160a01b0390911681526020016103de565b34801561044d57600080fd5b5061046161045c3660046138a2565b610c88565b005b34801561046f57600080fd5b506016546103d290600160a81b900460ff1681565b34801561049057600080fd5b5061046161049f366004613874565b610dba565b3480156104b057600080fd5b506104ba60155481565b6040519081526020016103de565b3480156104d457600080fd5b506104616104e3366004613874565b610ea6565b3480156104f457600080fd5b506104616105033660046138ce565b610ef3565b34801561051457600080fd5b506104ba600a5481565b34801561052a57600080fd5b506104616105393660046138eb565b610fb6565b34801561054a57600080fd5b506104ba61103d565b34801561055f57600080fd5b5061046161056e366004613874565b61104d565b34801561057f57600080fd5b5061046161058e366004613874565b61109a565b34801561059f57600080fd5b506104ba60105481565b3480156105b557600080fd5b506104616110e7565b3480156105ca57600080fd5b506104ba60095481565b6104616105e2366004613874565b61116b565b3480156105f357600080fd5b506104616106023660046138eb565b61142a565b34801561061357600080fd5b50610461610622366004613874565b611445565b34801561063357600080fd5b506104ba611492565b34801561064857600080fd5b506104ba600e5481565b34801561065e57600080fd5b506104ba600f5481565b34801561067457600080fd5b50610461610683366004613874565b61149d565b34801561069457600080fd5b506104ba60125481565b3480156106aa57600080fd5b506104ba60145481565b3480156106c057600080fd5b506104ba600c5481565b3480156106d657600080fd5b506104616106e53660046139b8565b6114ea565b6104616106f8366004613a43565b611545565b34801561070957600080fd5b506104ba6107183660046138ce565b6119ac565b61046161072b366004613a43565b6119d2565b34801561073c57600080fd5b5061042961074b366004613874565b611e01565b34801561075c57600080fd5b506104ba61076b3660046138ce565b611e8c565b34801561077c57600080fd5b506104ba600d5481565b34801561079257600080fd5b506104ba611eb2565b3480156107a757600080fd5b506104ba6107b63660046138ce565b611ebd565b3480156107c757600080fd5b50610461611f57565b3480156107dc57600080fd5b506104ba600b5481565b3480156107f257600080fd5b506104ba611fab565b34801561080757600080fd5b50610461610816366004613874565b611fb6565b34801561082757600080fd5b506007546001600160a01b0316610429565b34801561084557600080fd5b506103fc6120a6565b34801561085a57600080fd5b506104ba60115481565b34801561087057600080fd5b5061046161087f366004613a8f565b6120b5565b34801561089057600080fd5b506104ba6120c0565b3480156108a557600080fd5b506104616108b4366004613874565b6120cb565b3480156108c557600080fd5b506104616108d4366004613acd565b612118565b3480156108e557600080fd5b506104ba60135481565b3480156108fb57600080fd5b5061046161090a366004613b4d565b6121a6565b34801561091b57600080fd5b506103fc61092a366004613874565b612289565b34801561093b57600080fd5b506104ba612372565b34801561095057600080fd5b5061046161095f3660046138ce565b61237d565b34801561097057600080fd5b5061046161097f366004613874565b6123e7565b34801561099057600080fd5b50610461612434565b3480156109a557600080fd5b506103fc6124b8565b3480156109ba57600080fd5b506103d26109c9366004613b72565b6124c7565b3480156109da57600080fd5b506103d26109e9366004613bb4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a2357600080fd5b506016546103d290600160a01b900460ff1681565b348015610a4457600080fd5b50610461610a53366004613b4d565b61265c565b610461610a66366004613874565b61273f565b348015610a7757600080fd5b50610461610a863660046138ce565b61295b565b348015610a9757600080fd5b506104ba7f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c981565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480610b2257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b5657507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060008054610b6b90613be2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9790613be2565b8015610be45780601f10610bb957610100808354040283529160200191610be4565b820191906000526020600020905b815481529060010190602001808311610bc757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c6c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c9382611e01565b9050806001600160a01b0316836001600160a01b03161415610d1d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610c63565b336001600160a01b0382161480610d395750610d3981336109e9565b610dab5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c63565b610db58383612a2b565b505050565b6007546001600160a01b03163314610e025760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b601154600182610e10611eb2565b610e1a9190613c33565b610e249190613c4b565b10610e665760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610c63565b60005b81811015610ea257610e7f601a80546001019055565b610e9033610e8b611eb2565b612a99565b80610e9a81613c62565b915050610e69565b5050565b6007546001600160a01b03163314610eee5760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b600b55565b6007546001600160a01b03163314610f3b5760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b6016546040517f191655870000000000000000000000000000000000000000000000000000000081526001600160a01b03838116600483015290911690631916558790602401600060405180830381600087803b158015610f9b57600080fd5b505af1158015610faf573d6000803e3d6000fd5b5050505050565b610fc03382612ab3565b6110325760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c63565b610db5838383612baa565b6000611048601b5490565b905090565b6007546001600160a01b031633146110955760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b600a55565b6007546001600160a01b031633146110e25760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b600c55565b6007546001600160a01b0316331461112f5760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b601680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116600160a01b9182900460ff1615909102179055565b600260065414156111be5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c63565b6002600655601654600160a01b900460ff1661120e5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610c63565b601254600f5461121e9190613c4b565b60018261122961103d565b6112339190613c33565b61123d9190613c4b565b1061127f5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610c63565b60135461128d600183613c4b565b106112e45760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610c63565b600c5434101561132d5760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610c63565b6000611338336119ac565b111561134d576113483382612d77565b611395565b60405162461bcd60e51b815260206004820152601660248201527f4d696e74696e67206c696d6974206578636565646564000000000000000000006044820152606401610c63565b60005b818110156113e7576113ae601b80546001019055565b6113d5335b6113bb61103d565b601254600e546113cb9190613c33565b610e8b9190613c33565b806113df81613c62565b915050611398565b506016546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611421573d6000803e3d6000fd5b50506001600655565b610db583838360405180602001604052806000815250612118565b6007546001600160a01b0316331461148d5760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b600d55565b6000611048601c5490565b6007546001600160a01b031633146114e55760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b601355565b6007546001600160a01b031633146115325760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b8051610ea290601f90602084019061373d565b600854829082906001600160a01b03166115a15760405162461bcd60e51b815260206004820152601560248201527f77686974656c697374206e6f7420656e61626c656400000000000000000000006044820152606401610c63565b600954604080517f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c960208201523391810191909152600091906060016040516020818303038152906040528051906020012060405160200161161a92919061190160f01b81526002810192909252602282015260420190565b604051602081830303815290604052805190602001209050600061167684848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508693925050612da89050565b6008549091506001600160a01b038083169116146116ca5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b6044820152606401610c63565b6002600654141561171d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c63565b6002600655601654600160a81b900460ff1661176d5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610c63565b60155460018861177b612372565b6117859190613c33565b61178f9190613c4b565b106117dc5760405162461bcd60e51b815260206004820152601860248201527f457863656564732077686974656c69737420737570706c7900000000000000006044820152606401610c63565b600187601254600f546117ef9190613c4b565b6117f99190613c33565b6118039190613c4b565b61180b61103d565b1061184d5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610c63565b60135461185b600189613c4b565b106118b25760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610c63565b86600c546118c09190613c7d565b3410156119065760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610c63565b6000611911336119ac565b111561134d576119213388612d77565b60005b878110156119635761193a601b80546001019055565b611948601e80546001019055565b611951336113b3565b8061195b81613c62565b915050611924565b506016546040516001600160a01b03909116903480156108fc02916000818181858888f1935050505015801561199d573d6000803e3d6000fd5b50506001600655505050505050565b6001600160a01b038116600090815260186020526040812054600b54610b569190613c4b565b600854829082906001600160a01b0316611a2e5760405162461bcd60e51b815260206004820152601560248201527f77686974656c697374206e6f7420656e61626c656400000000000000000000006044820152606401610c63565b600954604080517f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c9602082015233918101919091526000919060600160405160208183030381529060405280519060200120604051602001611aa792919061190160f01b81526002810192909252602282015260420190565b6040516020818303038152906040528051906020012090506000611b0384848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508693925050612da89050565b6008549091506001600160a01b03808316911614611b575760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b6044820152606401610c63565b60026006541415611baa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c63565b6002600655601654600160a81b900460ff16611bfa5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610c63565b601454600188611c086120c0565b611c129190613c33565b611c1c9190613c4b565b10611c695760405162461bcd60e51b815260206004820152601860248201527f457863656564732077686974656c69737420737570706c7900000000000000006044820152606401610c63565b600187601154600e54611c7c9190613c4b565b611c869190613c33565b611c909190613c4b565b611c98611fab565b10611cda5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610c63565b601354611ce8600189613c4b565b10611d3f5760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610c63565b86600d54611d4d9190613c7d565b341015611d935760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610c63565b6000611d9e33611e8c565b111561134d57611dae3388612dcc565b60005b8781101561196357611dc7601980546001019055565b611dd5601d80546001019055565b611def335b611de2611fab565b601154610e8b9190613c33565b80611df981613c62565b915050611db1565b6000818152600260205260408120546001600160a01b031680610b565760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610c63565b6001600160a01b038116600090815260176020526040812054600a54610b569190613c4b565b6000611048601a5490565b60006001600160a01b038216611f3b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610c63565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314611f9f5760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b611fa96000612df4565b565b600061104860195490565b6007546001600160a01b03163314611ffe5760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b60125460018261200c611492565b6120169190613c33565b6120209190613c4b565b106120625760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610c63565b60005b81811015610ea25761207b601c80546001019055565b61209433612087611492565b600e54610e8b9190613c33565b8061209e81613c62565b915050612065565b606060018054610b6b90613be2565b610ea2338383612e46565b6000611048601d5490565b6007546001600160a01b031633146121135760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b601555565b6121223383612ab3565b6121945760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c63565b6121a084848484612f15565b50505050565b6007546001600160a01b031633146121ee5760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b6011546001836121fc611eb2565b6122069190613c33565b6122109190613c4b565b106122525760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610c63565b60005b82811015610db55761226b601a80546001019055565b61227782610e8b611eb2565b8061228181613c62565b915050612255565b6000818152600260205260409020546060906001600160a01b03166123165760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610c63565b60006123206124b8565b90506000815111612340576040518060200160405280600081525061236b565b8061234a84612f93565b60405160200161235b929190613c9c565b6040516020818303038152906040525b9392505050565b6000611048601e5490565b6007546001600160a01b031633146123c55760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b0316331461242f5760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b601455565b6007546001600160a01b0316331461247c5760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b601680547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff8116600160a81b9182900460ff1615909102179055565b6060601f8054610b6b90613be2565b600854600090839083906001600160a01b03166125265760405162461bcd60e51b815260206004820152601560248201527f77686974656c697374206e6f7420656e61626c656400000000000000000000006044820152606401610c63565b600954604080517f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c960208201523391810191909152600091906060016040516020818303038152906040528051906020012060405160200161259f92919061190160f01b81526002810192909252602282015260420190565b60405160208183030381529060405280519060200120905060006125fb84848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508693925050612da89050565b6008549091506001600160a01b0380831691161461264f5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b6044820152606401610c63565b5060019695505050505050565b6007546001600160a01b031633146126a45760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b6012546001836126b2611492565b6126bc9190613c33565b6126c69190613c4b565b106127085760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610c63565b60005b82811015610db557612721601c80546001019055565b61272d82612087611492565b8061273781613c62565b91505061270b565b600260065414156127925760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c63565b6002600655601654600160a01b900460ff166127e25760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610c63565b601154600e546127f29190613c4b565b6001826127fd611fab565b6128079190613c33565b6128119190613c4b565b106128535760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610c63565b601354612861600183613c4b565b106128b85760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610c63565b80600d546128c69190613c7d565b34101561290c5760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610c63565b600061291733611e8c565b111561134d576129273382612dcc565b60005b818110156113e757612940601980546001019055565b61294933611dda565b8061295381613c62565b91505061292a565b6007546001600160a01b031633146129a35760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b6001600160a01b038116612a1f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c63565b612a2881612df4565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612a6082611e01565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610ea28282604051806020016040528060008152506130c5565b6000818152600260205260408120546001600160a01b0316612b2c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c63565b6000612b3783611e01565b9050806001600160a01b0316846001600160a01b03161480612b725750836001600160a01b0316612b6784610bee565b6001600160a01b0316145b80612ba257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612bbd82611e01565b6001600160a01b031614612c395760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610c63565b6001600160a01b038216612cb45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c63565b612cbf600082612a2b565b6001600160a01b0383166000908152600360205260408120805460019290612ce8908490613c4b565b90915550506001600160a01b0382166000908152600360205260408120805460019290612d16908490613c33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821660009081526018602052604081208054839290612d9f908490613c33565b90915550505050565b6000806000612db78585613143565b91509150612dc4816131b3565b509392505050565b6001600160a01b03821660009081526017602052604081208054839290612d9f908490613c33565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415612ea85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c63565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612f20848484612baa565b612f2c8484848461336e565b6121a05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610c63565b606081612fd357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612ffd5780612fe781613c62565b9150612ff69050600a83613ce1565b9150612fd7565b60008167ffffffffffffffff8111156130185761301861392c565b6040519080825280601f01601f191660200182016040528015613042576020820181803683370190505b5090505b8415612ba257613057600183613c4b565b9150613064600a86613cf5565b61306f906030613c33565b60f81b81838151811061308457613084613d09565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506130be600a86613ce1565b9450613046565b6130cf83836134c6565b6130dc600084848461336e565b610db55760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610c63565b60008082516041141561317a5760208301516040840151606085015160001a61316e87828585613608565b945094505050506131ac565b8251604014156131a457602083015160408401516131998683836136f5565b9350935050506131ac565b506000905060025b9250929050565b60008160048111156131c7576131c7613d1f565b14156131d05750565b60018160048111156131e4576131e4613d1f565b14156132325760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610c63565b600281600481111561324657613246613d1f565b14156132945760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610c63565b60038160048111156132a8576132a8613d1f565b14156133015760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610c63565b600481600481111561331557613315613d1f565b1415612a285760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610c63565b60006001600160a01b0384163b156134bb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906133b2903390899088908890600401613d35565b602060405180830381600087803b1580156133cc57600080fd5b505af19250505080156133fc575060408051601f3d908101601f191682019092526133f991810190613d71565b60015b6134a1573d80801561342a576040519150601f19603f3d011682016040523d82523d6000602084013e61342f565b606091505b5080516134995760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610c63565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612ba2565b506001949350505050565b6001600160a01b03821661351c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c63565b6000818152600260205260409020546001600160a01b0316156135815760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c63565b6001600160a01b03821660009081526003602052604081208054600192906135aa908490613c33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561363f57506000905060036136ec565b8460ff16601b1415801561365757508460ff16601c14155b1561366857506000905060046136ec565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156136bc573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166136e5576000600192509250506136ec565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b0161372f87828885613608565b935093505050935093915050565b82805461374990613be2565b90600052602060002090601f01602090048101928261376b57600085556137b1565b82601f1061378457805160ff19168380011785556137b1565b828001600101855582156137b1579182015b828111156137b1578251825591602001919060010190613796565b506137bd9291506137c1565b5090565b5b808211156137bd57600081556001016137c2565b6001600160e01b031981168114612a2857600080fd5b6000602082840312156137fe57600080fd5b813561236b816137d6565b60005b8381101561382457818101518382015260200161380c565b838111156121a05750506000910152565b6000815180845261384d816020860160208601613809565b601f01601f19169290920160200192915050565b60208152600061236b6020830184613835565b60006020828403121561388657600080fd5b5035919050565b6001600160a01b0381168114612a2857600080fd5b600080604083850312156138b557600080fd5b82356138c08161388d565b946020939093013593505050565b6000602082840312156138e057600080fd5b813561236b8161388d565b60008060006060848603121561390057600080fd5b833561390b8161388d565b9250602084013561391b8161388d565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561395d5761395d61392c565b604051601f8501601f19908116603f011681019082821181831017156139855761398561392c565b8160405280935085815286868601111561399e57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156139ca57600080fd5b813567ffffffffffffffff8111156139e157600080fd5b8201601f810184136139f257600080fd5b612ba284823560208401613942565b60008083601f840112613a1357600080fd5b50813567ffffffffffffffff811115613a2b57600080fd5b6020830191508360208285010111156131ac57600080fd5b600080600060408486031215613a5857600080fd5b83359250602084013567ffffffffffffffff811115613a7657600080fd5b613a8286828701613a01565b9497909650939450505050565b60008060408385031215613aa257600080fd5b8235613aad8161388d565b915060208301358015158114613ac257600080fd5b809150509250929050565b60008060008060808587031215613ae357600080fd5b8435613aee8161388d565b93506020850135613afe8161388d565b925060408501359150606085013567ffffffffffffffff811115613b2157600080fd5b8501601f81018713613b3257600080fd5b613b4187823560208401613942565b91505092959194509250565b60008060408385031215613b6057600080fd5b823591506020830135613ac28161388d565b60008060208385031215613b8557600080fd5b823567ffffffffffffffff811115613b9c57600080fd5b613ba885828601613a01565b90969095509350505050565b60008060408385031215613bc757600080fd5b8235613bd28161388d565b91506020830135613ac28161388d565b600181811c90821680613bf657607f821691505b60208210811415613c1757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115613c4657613c46613c1d565b500190565b600082821015613c5d57613c5d613c1d565b500390565b6000600019821415613c7657613c76613c1d565b5060010190565b6000816000190483118215151615613c9757613c97613c1d565b500290565b60008351613cae818460208801613809565b835190830190613cc2818360208801613809565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b600082613cf057613cf0613ccb565b500490565b600082613d0457613d04613ccb565b500690565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b60006001600160a01b03808716835280861660208401525083604083015260806060830152613d676080830184613835565b9695505050505050565b600060208284031215613d8357600080fd5b815161236b816137d656fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220eea28672d45901995285754aed2799d6fbb48d695e89af66f05a6fdaf2e0a94264736f6c6343000809003360806040526040516200123d3803806200123d83398101604081905262000026916200042e565b8051825114620000985760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620000eb5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200008f565b60005b82518110156200015757620001428382815181106200011157620001116200050c565b60200260200101518383815181106200012e576200012e6200050c565b60200260200101516200016060201b60201c565b806200014e8162000538565b915050620000ee565b50505062000571565b6001600160a01b038216620001cd5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200008f565b600081116200021f5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200008f565b6001600160a01b038216600090815260026020526040902054156200029b5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200008f565b60048054600181019091557f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319166001600160a01b0384169081179091556000908152600260205260408120829055546200030390829062000556565b600055604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156200038d576200038d6200034c565b604052919050565b60006001600160401b03821115620003b157620003b16200034c565b5060051b60200190565b600082601f830112620003cd57600080fd5b81516020620003e6620003e08362000395565b62000362565b82815260059290921b840181019181810190868411156200040657600080fd5b8286015b848110156200042357805183529183019183016200040a565b509695505050505050565b600080604083850312156200044257600080fd5b82516001600160401b03808211156200045a57600080fd5b818501915085601f8301126200046f57600080fd5b8151602062000482620003e08362000395565b82815260059290921b84018101918181019089841115620004a257600080fd5b948201945b83861015620004d95785516001600160a01b0381168114620004c95760008081fd5b82529482019490820190620004a7565b91880151919650909350505080821115620004f357600080fd5b506200050285828601620003bb565b9150509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156200054f576200054f62000522565b5060010190565b600082198211156200056c576200056c62000522565b500190565b610cbc80620005816000396000f3fe60806040526004361061009a5760003560e01c80638b83209b11610069578063ce7c2ac21161004e578063ce7c2ac214610202578063d79779b214610238578063e33b7de31461026e57600080fd5b80638b83209b146101945780639852595c146101cc57600080fd5b806319165587146100e85780633a98ef391461010a578063406072a91461012e57806348b750441461017457600080fd5b366100e3577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156100f457600080fd5b50610108610103366004610ac1565b610283565b005b34801561011657600080fd5b506000545b6040519081526020015b60405180910390f35b34801561013a57600080fd5b5061011b610149366004610ade565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b34801561018057600080fd5b5061010861018f366004610ade565b610439565b3480156101a057600080fd5b506101b46101af366004610b17565b6106bd565b6040516001600160a01b039091168152602001610125565b3480156101d857600080fd5b5061011b6101e7366004610ac1565b6001600160a01b031660009081526003602052604090205490565b34801561020e57600080fd5b5061011b61021d366004610ac1565b6001600160a01b031660009081526002602052604090205490565b34801561024457600080fd5b5061011b610253366004610ac1565b6001600160a01b031660009081526005602052604090205490565b34801561027a57600080fd5b5060015461011b565b6001600160a01b0381166000908152600260205260409020546102fc5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084015b60405180910390fd5b600061030760015490565b6103119047610b46565b9050600061033e8383610339866001600160a01b031660009081526003602052604090205490565b6106ed565b9050806103a15760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016102f3565b6001600160a01b038316600090815260036020526040812080548392906103c9908490610b46565b9250508190555080600160008282546103e29190610b46565b909155506103f290508382610732565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6001600160a01b0381166000908152600260205260409020546104ad5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016102f3565b6001600160a01b0382166000908152600560205260408120546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561051e57600080fd5b505afa158015610532573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105569190610b5e565b6105609190610b46565b90506000610599838361033987876001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b9050806105fc5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016102f3565b6001600160a01b03808516600090815260066020908152604080832093871683529290529081208054839290610633908490610b46565b90915550506001600160a01b03841660009081526005602052604081208054839290610660908490610b46565b909155506106719050848483610850565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000600482815481106106d2576106d2610b77565b6000918252602090912001546001600160a01b031692915050565b600080546001600160a01b0385168252600260205260408220548391906107149086610b8d565b61071e9190610bac565b6107289190610bce565b90505b9392505050565b804710156107825760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016102f3565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146107cf576040519150601f19603f3d011682016040523d82523d6000602084013e6107d4565b606091505b505090508061084b5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016102f3565b505050565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65649084015261084b9286929160009161090e91851690849061099e565b80519091501561084b578080602001905181019061092c9190610be5565b61084b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016102f3565b6060610728848460008585843b6109f75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102f3565b600080866001600160a01b03168587604051610a139190610c37565b60006040518083038185875af1925050503d8060008114610a50576040519150601f19603f3d011682016040523d82523d6000602084013e610a55565b606091505b5091509150610a65828286610a70565b979650505050505050565b60608315610a7f57508161072b565b825115610a8f5782518084602001fd5b8160405162461bcd60e51b81526004016102f39190610c53565b6001600160a01b0381168114610abe57600080fd5b50565b600060208284031215610ad357600080fd5b813561072b81610aa9565b60008060408385031215610af157600080fd5b8235610afc81610aa9565b91506020830135610b0c81610aa9565b809150509250929050565b600060208284031215610b2957600080fd5b5035919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610b5957610b59610b30565b500190565b600060208284031215610b7057600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615610ba757610ba7610b30565b500290565b600082610bc957634e487b7160e01b600052601260045260246000fd5b500490565b600082821015610be057610be0610b30565b500390565b600060208284031215610bf757600080fd5b8151801515811461072b57600080fd5b60005b83811015610c22578181015183820152602001610c0a565b83811115610c31576000848401525b50505050565b60008251610c49818460208701610c07565b9190910192915050565b6020815260008251806020840152610c72816040850160208701610c07565b601f01601f1916919091016040019291505056fea26469706673582212201a625fb95daf53a8a3417c91b6b961971e5f9717a1285dde6af49c778327936464736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000027f7d0bdb92000000000000000000000000000000000000000000000000000009fdf42f6e48000000000000000000000000000000000000000000000000000000000000000000084c696e6b7344414f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084c494e4b5344414f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f697066732e6d616465776974686d61736f6e2e636f6d2f697066732f516d5675646576354c524533774677564c596734337a71596f444a69327833734231704e5541744a5a5036596a572f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000391fd74d878489981015635959c7c970e13ad0570000000000000000000000007d863d74917191685616217c8ab1a77e73e79f2100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000005f

Deployed Bytecode

0x6080604052600436106103ad5760003560e01c80636352211e116101e7578063b88d4fde1161010d578063d547cfb7116100a0578063ed3ad7701161006f578063ed3ad77014610a38578063ed5b620714610a58578063f2fde38b14610a6b578063fa4d280c14610a8b57600080fd5b8063d547cfb714610999578063e0ad790c146109ae578063e985e9c5146109ce578063eb8d244414610a1757600080fd5b8063c8b19c6a116100dc578063c8b19c6a1461092f578063cd77083314610944578063cf43b36d14610964578063d1beca641461098457600080fd5b8063b88d4fde146108b9578063b8fc1051146108d9578063c34c3854146108ef578063c87b56dd1461090f57600080fd5b8063838dc2b6116101855780639f91c582116101545780639f91c5821461084e578063a22cb46514610864578063a699875514610884578063ad2f26e11461089957600080fd5b8063838dc2b6146107e65780638d406eb6146107fb5780638da5cb5b1461081b57806395d89b411461083957600080fd5b80636ad460ff116101c15780636ad460ff1461078657806370a082311461079b578063715018a6146107bb5780638091ed20146107d057600080fd5b80636352211e14610730578063664dd6f51461075057806369f66cb71461077057600080fd5b806334918dfd116102d757806350001a921161026a57806355f804b31161023957806355f804b3146106ca578063567ec097146106ea57806357684712146106fd578063610c15971461071d57600080fd5b806350001a921461066857806350e596eb1461068857806352d49b701461069e57806354a246b9146106b457600080fd5b806349d429a0116102a657806349d429a0146106075780634ba3e4c1146106275780634bf2869f1461063c5780634e0bb07e1461065257600080fd5b806334918dfd146105a95780633644e515146105be5780633755cccf146105d457806342842e0e146105e757600080fd5b80631826f4361161034f578063274975cd1161031e578063274975cd1461053e57806329405aff146105535780632a9581791461057357806332cb6b0c1461059357600080fd5b80631826f436146104c857806319165587146104e857806321fbebb51461050857806323b872dd1461051e57600080fd5b8063095ea7b31161038b578063095ea7b31461044157806310b5454d1461046357806314b81e4114610484578063154ccdb1146104a457600080fd5b806301ffc9a7146103b257806306fdde03146103e7578063081812fc14610409575b600080fd5b3480156103be57600080fd5b506103d26103cd3660046137ec565b610abf565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b506103fc610b5c565b6040516103de9190613861565b34801561041557600080fd5b50610429610424366004613874565b610bee565b6040516001600160a01b0390911681526020016103de565b34801561044d57600080fd5b5061046161045c3660046138a2565b610c88565b005b34801561046f57600080fd5b506016546103d290600160a81b900460ff1681565b34801561049057600080fd5b5061046161049f366004613874565b610dba565b3480156104b057600080fd5b506104ba60155481565b6040519081526020016103de565b3480156104d457600080fd5b506104616104e3366004613874565b610ea6565b3480156104f457600080fd5b506104616105033660046138ce565b610ef3565b34801561051457600080fd5b506104ba600a5481565b34801561052a57600080fd5b506104616105393660046138eb565b610fb6565b34801561054a57600080fd5b506104ba61103d565b34801561055f57600080fd5b5061046161056e366004613874565b61104d565b34801561057f57600080fd5b5061046161058e366004613874565b61109a565b34801561059f57600080fd5b506104ba60105481565b3480156105b557600080fd5b506104616110e7565b3480156105ca57600080fd5b506104ba60095481565b6104616105e2366004613874565b61116b565b3480156105f357600080fd5b506104616106023660046138eb565b61142a565b34801561061357600080fd5b50610461610622366004613874565b611445565b34801561063357600080fd5b506104ba611492565b34801561064857600080fd5b506104ba600e5481565b34801561065e57600080fd5b506104ba600f5481565b34801561067457600080fd5b50610461610683366004613874565b61149d565b34801561069457600080fd5b506104ba60125481565b3480156106aa57600080fd5b506104ba60145481565b3480156106c057600080fd5b506104ba600c5481565b3480156106d657600080fd5b506104616106e53660046139b8565b6114ea565b6104616106f8366004613a43565b611545565b34801561070957600080fd5b506104ba6107183660046138ce565b6119ac565b61046161072b366004613a43565b6119d2565b34801561073c57600080fd5b5061042961074b366004613874565b611e01565b34801561075c57600080fd5b506104ba61076b3660046138ce565b611e8c565b34801561077c57600080fd5b506104ba600d5481565b34801561079257600080fd5b506104ba611eb2565b3480156107a757600080fd5b506104ba6107b63660046138ce565b611ebd565b3480156107c757600080fd5b50610461611f57565b3480156107dc57600080fd5b506104ba600b5481565b3480156107f257600080fd5b506104ba611fab565b34801561080757600080fd5b50610461610816366004613874565b611fb6565b34801561082757600080fd5b506007546001600160a01b0316610429565b34801561084557600080fd5b506103fc6120a6565b34801561085a57600080fd5b506104ba60115481565b34801561087057600080fd5b5061046161087f366004613a8f565b6120b5565b34801561089057600080fd5b506104ba6120c0565b3480156108a557600080fd5b506104616108b4366004613874565b6120cb565b3480156108c557600080fd5b506104616108d4366004613acd565b612118565b3480156108e557600080fd5b506104ba60135481565b3480156108fb57600080fd5b5061046161090a366004613b4d565b6121a6565b34801561091b57600080fd5b506103fc61092a366004613874565b612289565b34801561093b57600080fd5b506104ba612372565b34801561095057600080fd5b5061046161095f3660046138ce565b61237d565b34801561097057600080fd5b5061046161097f366004613874565b6123e7565b34801561099057600080fd5b50610461612434565b3480156109a557600080fd5b506103fc6124b8565b3480156109ba57600080fd5b506103d26109c9366004613b72565b6124c7565b3480156109da57600080fd5b506103d26109e9366004613bb4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a2357600080fd5b506016546103d290600160a01b900460ff1681565b348015610a4457600080fd5b50610461610a53366004613b4d565b61265c565b610461610a66366004613874565b61273f565b348015610a7757600080fd5b50610461610a863660046138ce565b61295b565b348015610a9757600080fd5b506104ba7f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c981565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480610b2257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b5657507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060008054610b6b90613be2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9790613be2565b8015610be45780601f10610bb957610100808354040283529160200191610be4565b820191906000526020600020905b815481529060010190602001808311610bc757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c6c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c9382611e01565b9050806001600160a01b0316836001600160a01b03161415610d1d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610c63565b336001600160a01b0382161480610d395750610d3981336109e9565b610dab5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c63565b610db58383612a2b565b505050565b6007546001600160a01b03163314610e025760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b601154600182610e10611eb2565b610e1a9190613c33565b610e249190613c4b565b10610e665760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610c63565b60005b81811015610ea257610e7f601a80546001019055565b610e9033610e8b611eb2565b612a99565b80610e9a81613c62565b915050610e69565b5050565b6007546001600160a01b03163314610eee5760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b600b55565b6007546001600160a01b03163314610f3b5760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b6016546040517f191655870000000000000000000000000000000000000000000000000000000081526001600160a01b03838116600483015290911690631916558790602401600060405180830381600087803b158015610f9b57600080fd5b505af1158015610faf573d6000803e3d6000fd5b5050505050565b610fc03382612ab3565b6110325760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c63565b610db5838383612baa565b6000611048601b5490565b905090565b6007546001600160a01b031633146110955760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b600a55565b6007546001600160a01b031633146110e25760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b600c55565b6007546001600160a01b0316331461112f5760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b601680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116600160a01b9182900460ff1615909102179055565b600260065414156111be5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c63565b6002600655601654600160a01b900460ff1661120e5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610c63565b601254600f5461121e9190613c4b565b60018261122961103d565b6112339190613c33565b61123d9190613c4b565b1061127f5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610c63565b60135461128d600183613c4b565b106112e45760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610c63565b600c5434101561132d5760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610c63565b6000611338336119ac565b111561134d576113483382612d77565b611395565b60405162461bcd60e51b815260206004820152601660248201527f4d696e74696e67206c696d6974206578636565646564000000000000000000006044820152606401610c63565b60005b818110156113e7576113ae601b80546001019055565b6113d5335b6113bb61103d565b601254600e546113cb9190613c33565b610e8b9190613c33565b806113df81613c62565b915050611398565b506016546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611421573d6000803e3d6000fd5b50506001600655565b610db583838360405180602001604052806000815250612118565b6007546001600160a01b0316331461148d5760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b600d55565b6000611048601c5490565b6007546001600160a01b031633146114e55760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b601355565b6007546001600160a01b031633146115325760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b8051610ea290601f90602084019061373d565b600854829082906001600160a01b03166115a15760405162461bcd60e51b815260206004820152601560248201527f77686974656c697374206e6f7420656e61626c656400000000000000000000006044820152606401610c63565b600954604080517f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c960208201523391810191909152600091906060016040516020818303038152906040528051906020012060405160200161161a92919061190160f01b81526002810192909252602282015260420190565b604051602081830303815290604052805190602001209050600061167684848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508693925050612da89050565b6008549091506001600160a01b038083169116146116ca5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b6044820152606401610c63565b6002600654141561171d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c63565b6002600655601654600160a81b900460ff1661176d5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610c63565b60155460018861177b612372565b6117859190613c33565b61178f9190613c4b565b106117dc5760405162461bcd60e51b815260206004820152601860248201527f457863656564732077686974656c69737420737570706c7900000000000000006044820152606401610c63565b600187601254600f546117ef9190613c4b565b6117f99190613c33565b6118039190613c4b565b61180b61103d565b1061184d5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610c63565b60135461185b600189613c4b565b106118b25760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610c63565b86600c546118c09190613c7d565b3410156119065760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610c63565b6000611911336119ac565b111561134d576119213388612d77565b60005b878110156119635761193a601b80546001019055565b611948601e80546001019055565b611951336113b3565b8061195b81613c62565b915050611924565b506016546040516001600160a01b03909116903480156108fc02916000818181858888f1935050505015801561199d573d6000803e3d6000fd5b50506001600655505050505050565b6001600160a01b038116600090815260186020526040812054600b54610b569190613c4b565b600854829082906001600160a01b0316611a2e5760405162461bcd60e51b815260206004820152601560248201527f77686974656c697374206e6f7420656e61626c656400000000000000000000006044820152606401610c63565b600954604080517f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c9602082015233918101919091526000919060600160405160208183030381529060405280519060200120604051602001611aa792919061190160f01b81526002810192909252602282015260420190565b6040516020818303038152906040528051906020012090506000611b0384848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508693925050612da89050565b6008549091506001600160a01b03808316911614611b575760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b6044820152606401610c63565b60026006541415611baa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c63565b6002600655601654600160a81b900460ff16611bfa5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610c63565b601454600188611c086120c0565b611c129190613c33565b611c1c9190613c4b565b10611c695760405162461bcd60e51b815260206004820152601860248201527f457863656564732077686974656c69737420737570706c7900000000000000006044820152606401610c63565b600187601154600e54611c7c9190613c4b565b611c869190613c33565b611c909190613c4b565b611c98611fab565b10611cda5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610c63565b601354611ce8600189613c4b565b10611d3f5760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610c63565b86600d54611d4d9190613c7d565b341015611d935760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610c63565b6000611d9e33611e8c565b111561134d57611dae3388612dcc565b60005b8781101561196357611dc7601980546001019055565b611dd5601d80546001019055565b611def335b611de2611fab565b601154610e8b9190613c33565b80611df981613c62565b915050611db1565b6000818152600260205260408120546001600160a01b031680610b565760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610c63565b6001600160a01b038116600090815260176020526040812054600a54610b569190613c4b565b6000611048601a5490565b60006001600160a01b038216611f3b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610c63565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314611f9f5760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b611fa96000612df4565b565b600061104860195490565b6007546001600160a01b03163314611ffe5760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b60125460018261200c611492565b6120169190613c33565b6120209190613c4b565b106120625760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610c63565b60005b81811015610ea25761207b601c80546001019055565b61209433612087611492565b600e54610e8b9190613c33565b8061209e81613c62565b915050612065565b606060018054610b6b90613be2565b610ea2338383612e46565b6000611048601d5490565b6007546001600160a01b031633146121135760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b601555565b6121223383612ab3565b6121945760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c63565b6121a084848484612f15565b50505050565b6007546001600160a01b031633146121ee5760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b6011546001836121fc611eb2565b6122069190613c33565b6122109190613c4b565b106122525760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610c63565b60005b82811015610db55761226b601a80546001019055565b61227782610e8b611eb2565b8061228181613c62565b915050612255565b6000818152600260205260409020546060906001600160a01b03166123165760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610c63565b60006123206124b8565b90506000815111612340576040518060200160405280600081525061236b565b8061234a84612f93565b60405160200161235b929190613c9c565b6040516020818303038152906040525b9392505050565b6000611048601e5490565b6007546001600160a01b031633146123c55760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b0316331461242f5760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b601455565b6007546001600160a01b0316331461247c5760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b601680547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff8116600160a81b9182900460ff1615909102179055565b6060601f8054610b6b90613be2565b600854600090839083906001600160a01b03166125265760405162461bcd60e51b815260206004820152601560248201527f77686974656c697374206e6f7420656e61626c656400000000000000000000006044820152606401610c63565b600954604080517f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c960208201523391810191909152600091906060016040516020818303038152906040528051906020012060405160200161259f92919061190160f01b81526002810192909252602282015260420190565b60405160208183030381529060405280519060200120905060006125fb84848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508693925050612da89050565b6008549091506001600160a01b0380831691161461264f5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b6044820152606401610c63565b5060019695505050505050565b6007546001600160a01b031633146126a45760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b6012546001836126b2611492565b6126bc9190613c33565b6126c69190613c4b565b106127085760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610c63565b60005b82811015610db557612721601c80546001019055565b61272d82612087611492565b8061273781613c62565b91505061270b565b600260065414156127925760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c63565b6002600655601654600160a01b900460ff166127e25760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610c63565b601154600e546127f29190613c4b565b6001826127fd611fab565b6128079190613c33565b6128119190613c4b565b106128535760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610c63565b601354612861600183613c4b565b106128b85760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610c63565b80600d546128c69190613c7d565b34101561290c5760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610c63565b600061291733611e8c565b111561134d576129273382612dcc565b60005b818110156113e757612940601980546001019055565b61294933611dda565b8061295381613c62565b91505061292a565b6007546001600160a01b031633146129a35760405162461bcd60e51b81526020600482018190526024820152600080516020613d8f8339815191526044820152606401610c63565b6001600160a01b038116612a1f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c63565b612a2881612df4565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612a6082611e01565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610ea28282604051806020016040528060008152506130c5565b6000818152600260205260408120546001600160a01b0316612b2c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c63565b6000612b3783611e01565b9050806001600160a01b0316846001600160a01b03161480612b725750836001600160a01b0316612b6784610bee565b6001600160a01b0316145b80612ba257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612bbd82611e01565b6001600160a01b031614612c395760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610c63565b6001600160a01b038216612cb45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c63565b612cbf600082612a2b565b6001600160a01b0383166000908152600360205260408120805460019290612ce8908490613c4b565b90915550506001600160a01b0382166000908152600360205260408120805460019290612d16908490613c33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821660009081526018602052604081208054839290612d9f908490613c33565b90915550505050565b6000806000612db78585613143565b91509150612dc4816131b3565b509392505050565b6001600160a01b03821660009081526017602052604081208054839290612d9f908490613c33565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415612ea85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c63565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612f20848484612baa565b612f2c8484848461336e565b6121a05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610c63565b606081612fd357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612ffd5780612fe781613c62565b9150612ff69050600a83613ce1565b9150612fd7565b60008167ffffffffffffffff8111156130185761301861392c565b6040519080825280601f01601f191660200182016040528015613042576020820181803683370190505b5090505b8415612ba257613057600183613c4b565b9150613064600a86613cf5565b61306f906030613c33565b60f81b81838151811061308457613084613d09565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506130be600a86613ce1565b9450613046565b6130cf83836134c6565b6130dc600084848461336e565b610db55760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610c63565b60008082516041141561317a5760208301516040840151606085015160001a61316e87828585613608565b945094505050506131ac565b8251604014156131a457602083015160408401516131998683836136f5565b9350935050506131ac565b506000905060025b9250929050565b60008160048111156131c7576131c7613d1f565b14156131d05750565b60018160048111156131e4576131e4613d1f565b14156132325760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610c63565b600281600481111561324657613246613d1f565b14156132945760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610c63565b60038160048111156132a8576132a8613d1f565b14156133015760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610c63565b600481600481111561331557613315613d1f565b1415612a285760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610c63565b60006001600160a01b0384163b156134bb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906133b2903390899088908890600401613d35565b602060405180830381600087803b1580156133cc57600080fd5b505af19250505080156133fc575060408051601f3d908101601f191682019092526133f991810190613d71565b60015b6134a1573d80801561342a576040519150601f19603f3d011682016040523d82523d6000602084013e61342f565b606091505b5080516134995760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610c63565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612ba2565b506001949350505050565b6001600160a01b03821661351c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c63565b6000818152600260205260409020546001600160a01b0316156135815760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c63565b6001600160a01b03821660009081526003602052604081208054600192906135aa908490613c33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561363f57506000905060036136ec565b8460ff16601b1415801561365757508460ff16601c14155b1561366857506000905060046136ec565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156136bc573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166136e5576000600192509250506136ec565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b0161372f87828885613608565b935093505050935093915050565b82805461374990613be2565b90600052602060002090601f01602090048101928261376b57600085556137b1565b82601f1061378457805160ff19168380011785556137b1565b828001600101855582156137b1579182015b828111156137b1578251825591602001919060010190613796565b506137bd9291506137c1565b5090565b5b808211156137bd57600081556001016137c2565b6001600160e01b031981168114612a2857600080fd5b6000602082840312156137fe57600080fd5b813561236b816137d6565b60005b8381101561382457818101518382015260200161380c565b838111156121a05750506000910152565b6000815180845261384d816020860160208601613809565b601f01601f19169290920160200192915050565b60208152600061236b6020830184613835565b60006020828403121561388657600080fd5b5035919050565b6001600160a01b0381168114612a2857600080fd5b600080604083850312156138b557600080fd5b82356138c08161388d565b946020939093013593505050565b6000602082840312156138e057600080fd5b813561236b8161388d565b60008060006060848603121561390057600080fd5b833561390b8161388d565b9250602084013561391b8161388d565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561395d5761395d61392c565b604051601f8501601f19908116603f011681019082821181831017156139855761398561392c565b8160405280935085815286868601111561399e57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156139ca57600080fd5b813567ffffffffffffffff8111156139e157600080fd5b8201601f810184136139f257600080fd5b612ba284823560208401613942565b60008083601f840112613a1357600080fd5b50813567ffffffffffffffff811115613a2b57600080fd5b6020830191508360208285010111156131ac57600080fd5b600080600060408486031215613a5857600080fd5b83359250602084013567ffffffffffffffff811115613a7657600080fd5b613a8286828701613a01565b9497909650939450505050565b60008060408385031215613aa257600080fd5b8235613aad8161388d565b915060208301358015158114613ac257600080fd5b809150509250929050565b60008060008060808587031215613ae357600080fd5b8435613aee8161388d565b93506020850135613afe8161388d565b925060408501359150606085013567ffffffffffffffff811115613b2157600080fd5b8501601f81018713613b3257600080fd5b613b4187823560208401613942565b91505092959194509250565b60008060408385031215613b6057600080fd5b823591506020830135613ac28161388d565b60008060208385031215613b8557600080fd5b823567ffffffffffffffff811115613b9c57600080fd5b613ba885828601613a01565b90969095509350505050565b60008060408385031215613bc757600080fd5b8235613bd28161388d565b91506020830135613ac28161388d565b600181811c90821680613bf657607f821691505b60208210811415613c1757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115613c4657613c46613c1d565b500190565b600082821015613c5d57613c5d613c1d565b500390565b6000600019821415613c7657613c76613c1d565b5060010190565b6000816000190483118215151615613c9757613c97613c1d565b500290565b60008351613cae818460208801613809565b835190830190613cc2818360208801613809565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b600082613cf057613cf0613ccb565b500490565b600082613d0457613d04613ccb565b500690565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b60006001600160a01b03808716835280861660208401525083604083015260806060830152613d676080830184613835565b9695505050505050565b600060208284031215613d8357600080fd5b815161236b816137d656fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220eea28672d45901995285754aed2799d6fbb48d695e89af66f05a6fdaf2e0a94264736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000027f7d0bdb92000000000000000000000000000000000000000000000000000009fdf42f6e48000000000000000000000000000000000000000000000000000000000000000000084c696e6b7344414f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084c494e4b5344414f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f697066732e6d616465776974686d61736f6e2e636f6d2f697066732f516d5675646576354c524533774677564c596734337a71596f444a69327833734231704e5541744a5a5036596a572f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000391fd74d878489981015635959c7c970e13ad0570000000000000000000000007d863d74917191685616217c8ab1a77e73e79f2100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000005f

-----Decoded View---------------
Arg [0] : tokenName (string): LinksDAO
Arg [1] : tokenSymbol (string): LINKSDAO
Arg [2] : customBaseURI_ (string): https://ipfs.madewithmason.com/ipfs/QmVudev5LRE3wFwVLYg43zqYoDJi2x3sB1pNUAtJZP6YjW/
Arg [3] : payees (address[]): 0x391Fd74D878489981015635959c7C970E13ad057,0x7d863d74917191685616217c8AB1a77e73E79F21
Arg [4] : shares (uint256[]): 5,95
Arg [5] : standardPrice (uint256): 180000000000000000
Arg [6] : premiumPrice (uint256): 720000000000000000

-----Encoded View---------------
21 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [5] : 000000000000000000000000000000000000000000000000027f7d0bdb920000
Arg [6] : 00000000000000000000000000000000000000000000000009fdf42f6e480000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [8] : 4c696e6b7344414f000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [10] : 4c494e4b5344414f000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000053
Arg [12] : 68747470733a2f2f697066732e6d616465776974686d61736f6e2e636f6d2f69
Arg [13] : 7066732f516d5675646576354c524533774677564c596734337a71596f444a69
Arg [14] : 327833734231704e5541744a5a5036596a572f00000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [16] : 000000000000000000000000391fd74d878489981015635959c7c970e13ad057
Arg [17] : 0000000000000000000000007d863d74917191685616217c8ab1a77e73e79f21
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [20] : 000000000000000000000000000000000000000000000000000000000000005f


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.