ETH Price: $2,644.26 (-0.34%)

Token

Amber Vittoria X Save The Date (AVXSTD)
 

Overview

Max Total Supply

43 AVXSTD

Holders

26

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
koda997.eth
Balance
1 AVXSTD
0x2c49b9aedf814d7f9cccc694bd7c9e2eec2112e8
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:
AmberVittoriaXSaveTheDate

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 17: AmberVittoriaXSaveTheDate.sol
// SPDX-License-Identifier: MIT
/***
 *  
 *  8""""8                      
 *  8      eeeee ee   e eeee    
 *  8eeeee 8   8 88   8 8       
 *      88 8eee8 88  e8 8eee    
 *  e   88 88  8  8  8  88      
 *  8eee88 88  8  8ee8  88ee    
 *  ""8""                       
 *    8   e   e eeee            
 *    8e  8   8 8               
 *    88  8eee8 8eee            
 *    88  88  8 88              
 *    88  88  8 88ee            
 *  8""""8                      
 *  8    8 eeeee eeeee eeee     
 *  8e   8 8   8   8   8        
 *  88   8 8eee8   8e  8eee     
 *  88   8 88  8   88  88       
 *  88eee8 88  8   88  88ee     
 *  
 */
pragma solidity >=0.8.9 <0.9.0;

import './ERC721AQueryable.sol';
import './MerkleProof.sol';
import './Ownable.sol';
import './ReentrancyGuard.sol';
import './RefundContract.sol';

contract AmberVittoriaXSaveTheDate is ERC721AQueryable, Ownable, ReentrancyGuard {
  using Strings for uint256;

  event NftsMinted(address owner, uint256[] std_ids, uint256 currentIndex, uint256 mintAmount);

  mapping(uint256 => bool) public freelistClaimed;
  string public uriPrefix = '';
  uint256 public maxSupply = 18000;
  uint256 public maxMintAmountPerTx = 1;
  uint256 public cost = 0 ether;
  bytes32 public merkleRoot;

  string  public tokenName = "Amber Vittoria X Save The Date";
  string  public tokenSymbol = "AVXSTD";
  bool public paused = true;
  bool public whitelistMintEnabled = false;

  IERC721 internal saveTheDateContract;
  RefundContract internal refundContract;
  string internal uriSuffix = '.json';  

  constructor(string memory baseURI, address _saveTheDateContract, address _refundContract) ERC721A(tokenName, tokenSymbol) {
    setUriPrefix(baseURI);
    saveTheDateContract = IERC721(_saveTheDateContract);
    refundContract = RefundContract(_refundContract);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    _;
  }

  function mint(uint256 std_id) public payable mintCompliance(1) mintPriceCompliance(1) {
    require(!paused, 'The contract is paused!');
    require(!freelistClaimed[std_id], 'Token already claimed!');
    address _owner = saveTheDateContract.ownerOf(std_id);
    require(_owner == msg.sender, "Must be an owner to mint");
    safeMint(_msgSender(), std_id);
    freelistClaimed[std_id] = true;
    refundContract.claimReward(std_id);
  }

  function safeMint(address to, uint256 std_id) internal {
    uint256[] memory tmp = new uint256[](1);
    tmp[0] = std_id;
    bulkSafeMint(to, tmp);
    delete tmp;
  }

  function bulkSafeMint(address to, uint256[] memory std_ids) internal {
    uint256 currentIndex = _currentIndex;
    uint256 amount = std_ids.length;
    _safeMint(to, amount);
    emit NftsMinted(to, std_ids, currentIndex, amount);
  }

 function internalMint(uint256[] memory std_ids) external onlyOwner  {
    require(totalSupply() + std_ids.length <= maxSupply, 'Max supply exceeded!');
    bulkSafeMint(_msgSender(), std_ids);
  }
   
  function mintForAddress(uint256[] memory std_ids, address _receiver) public onlyOwner {
    require(totalSupply() + std_ids.length <= maxSupply, 'Max supply exceeded!');
    bulkSafeMint(_receiver, std_ids);
  }

  function mintForAddresses(uint256[] memory std_ids, address[] memory _addresses) public onlyOwner {
    uint256[] memory tmp = new uint256[](1);
    for (uint i = 0; i < std_ids.length; i++) {
      tmp[0] = std_ids[i];
      mintForAddress(tmp, _addresses[i]);
    }
    delete tmp;
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 17: 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 4 of 17: 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 5 of 17: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';
import './IERC721Receiver.sol';
import './Address.sol';
import './Context.sol';
import './Strings.sol';
import './ERC165.sol';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

File 6 of 17: ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import './ERC721A.sol';

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _currentIndex) {
            return ownership;
        }
        ownership = _ownerships[tokenId];
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _currentIndex;
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, _currentIndex)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 17: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721.sol';
import './IERC721Metadata.sol';

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

File 10 of 17: IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 11 of 17: 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 12 of 17: 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 13 of 17: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

pragma solidity ^0.8.0;

import "./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 15 of 17: 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 16 of 17: RefundContract.sol
// SPDX-License-Identifier: MIT
/***
 *  
 *  8""""8                      
 *  8      eeeee ee   e eeee    
 *  8eeeee 8   8 88   8 8       
 *      88 8eee8 88  e8 8eee    
 *  e   88 88  8  8  8  88      
 *  8eee88 88  8  8ee8  88ee    
 *  ""8""                       
 *    8   e   e eeee            
 *    8e  8   8 8               
 *    88  8eee8 8eee            
 *    88  88  8 88              
 *    88  88  8 88ee            
 *  8""""8                      
 *  8    8 eeeee eeeee eeee     
 *  8e   8 8   8   8   8        
 *  88   8 8eee8   8e  8eee     
 *  88   8 88  8   88  88       
 *  88eee8 88  8   88  88ee     
 *  
 */
pragma solidity >=0.8.9 <0.9.0;

import './IERC721.sol';
import './Ownable.sol';
import './MerkleProof.sol';
import './ReentrancyGuard.sol';
import './Strings.sol';
import './IERC721Receiver.sol';


contract RefundContract is Ownable, ReentrancyGuard, IERC721Receiver {
  using Strings for uint256;
  using Strings for address;

  event DateRefunded(address owner, uint256 tokenId);

    bytes32 public merkleRoot;
    bool public paused = true;
    uint256 public refundPrice = 0.07 ether;
    address public rewardsContractAddress;
    mapping(uint256 => bool) public claimedRewardTokens;

    IERC721 saveTheDateContract;

    constructor(address _saveTheDateContract) {
      saveTheDateContract = IERC721(_saveTheDateContract);
    }

  function refund(uint256 _tokenId, bytes32[] calldata _merkleProof) public nonReentrant {
    require(!paused, 'The contract is paused!');
    verifyWhitelistRequirements(_tokenId, _merkleProof);
    require(!claimedRewardTokens[_tokenId], 'Token claimed reward already');
    address _owner = saveTheDateContract.ownerOf(_tokenId);
    require(_owner == msg.sender, "Must be an owner to get refund");
    saveTheDateContract.transferFrom(msg.sender, address(this), _tokenId);
    payable(msg.sender).transfer(refundPrice);
    emit DateRefunded(_owner, _tokenId);
    delete _owner;
  }

  function claimReward(uint256 _tokenId) public {
    require(rewardsContractAddress == msg.sender, "Must be rewardsContractAddress to mark the token as claimed");
    claimedRewardTokens[_tokenId] = true;
  }

  function claimRewards(uint256[] calldata _tokenIds) public {
    require(rewardsContractAddress == msg.sender, "Must be rewardsContractAddress to mark the token as claimed");
    for (uint256 i = 0; i < _tokenIds.length; i++) {
      claimedRewardTokens[_tokenIds[i]] = true;
    }
  }

  function verifyWhitelistRequirements(uint256 _tokenId, bytes32[] calldata _merkleProof) public view { 
    bytes32 leaf = keccak256(buildMerkleLeaf(_tokenId));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');
  }

  function deposit() public payable onlyOwner {
  }

  function setSaveTheDateContract(address _contractAddress) public onlyOwner {
    saveTheDateContract = IERC721(_contractAddress);
  }

  function setRewardsContractAddress(address _rewardsContractAddress) public onlyOwner {
    rewardsContractAddress = _rewardsContractAddress;
  }

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

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setRefundPrice(uint256 _refundPrice) public onlyOwner {
    refundPrice = _refundPrice;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }

  function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4)
    {
      return bytes4(keccak256("onERC721Received(address,uint256,bytes)"));
    }

  function buildMerkleLeaf(uint256 _tokenId) internal view returns(bytes memory){ 
    return abi.encodePacked(_msgSender().toString(), "-", _tokenId.toString());
  }
}

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

    function toHexString(bytes memory data) internal pure returns(string memory) {
        bytes memory str = new bytes(2 + data.length * 2);
        str[0] = "0";
        str[1] = "x";
        for (uint i = 0; i < data.length; i++) {
          str[2+i*2] = _HEX_SYMBOLS[uint(uint8(data[i] >> 4))];
            str[3+i*2] = _HEX_SYMBOLS[uint(uint8(data[i] & 0x0f))];
        }
        return string(str);
    }

   function toString(address account) internal pure returns(string memory) {
    return toHexString(abi.encodePacked(account));
   }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address","name":"_saveTheDateContract","type":"address"},{"internalType":"address","name":"_refundContract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"std_ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256","name":"currentIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"NftsMinted","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":[{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"freelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"std_ids","type":"uint256[]"}],"name":"internalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"std_id","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"std_ids","type":"uint256[]"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"std_ids","type":"uint256[]"},{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"mintForAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSymbol","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600b916200038d565b50614650600c556001600d556000600e5560408051808201909152601e8082527f416d62657220566974746f726961205820536176652054686520446174650000602090920191825262000072916010916200038d565b506040805180820190915260068082526510559614d51160d21b6020909201918252620000a2916011916200038d565b506012805461ffff1916600117905560408051808201909152600580825264173539b7b760d91b6020909201918252620000df916014916200038d565b50348015620000ed57600080fd5b5060405162002fd838038062002fd8833981016040819052620001109162000466565b601080546200011f9062000569565b80601f01602080910402602001604051908101604052809291908181526020018280546200014d9062000569565b80156200019e5780601f1062000172576101008083540402835291602001916200019e565b820191906000526020600020905b8154815290600101906020018083116200018057829003601f168201915b505050505060118054620001b29062000569565b80601f0160208091040260200160405190810160405280929190818152602001828054620001e09062000569565b8015620002315780601f10620002055761010080835404028352916020019162000231565b820191906000526020600020905b8154815290600101906020018083116200021357829003601f168201915b505084516200024b9350600292506020860191506200038d565b508051620002619060039060208401906200038d565b50506001600055506200027433620002c3565b6001600955620002848362000315565b6012805462010000600160b01b031916620100006001600160a01b0394851602179055601380546001600160a01b0319169190921617905550620005a6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620003745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200038990600b9060208401906200038d565b5050565b8280546200039b9062000569565b90600052602060002090601f016020900481019282620003bf57600085556200040a565b82601f10620003da57805160ff19168380011785556200040a565b828001600101855582156200040a579182015b828111156200040a578251825591602001919060010190620003ed565b50620004189291506200041c565b5090565b5b808211156200041857600081556001016200041d565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200046157600080fd5b919050565b6000806000606084860312156200047c57600080fd5b83516001600160401b03808211156200049457600080fd5b818601915086601f830112620004a957600080fd5b815181811115620004be57620004be62000433565b604051601f8201601f19908116603f01168101908382118183101715620004e957620004e962000433565b816040528281526020935089848487010111156200050657600080fd5b600091505b828210156200052a57848201840151818301850152908301906200050b565b828211156200053c5760008484830101525b96506200054e91505086820162000449565b93505050620005606040850162000449565b90509250925092565b600181811c908216806200057e57607f821691505b60208210811415620005a057634e487b7160e01b600052602260045260246000fd5b50919050565b612a2280620005b66000396000f3fe6080604052600436106102515760003560e01c80636caede3d1161013957806399a2557a116100b6578063b88d4fde1161007a578063b88d4fde146106c7578063c23dc68f146106e7578063c87b56dd14610714578063d5abeb0114610734578063e985e9c51461074a578063f2fde38b1461076a57600080fd5b806399a2557a14610634578063a0712d6814610654578063a22cb46514610667578063a583542414610687578063b071401b146106a757600080fd5b80637ec4a659116100fd5780637ec4a6591461059e5780638462151c146105be5780638da5cb5b146105eb57806394354fd01461060957806395d89b411461061f57600080fd5b80636caede3d146105155780636f8b44b01461053457806370a0823114610554578063715018a6146105745780637b61c3201461058957600080fd5b80632a825569116101d25780635bbb2177116101965780635bbb2177146104545780635c975abb146104815780635ffa777d1461049b57806362b99ad4146104cb5780636352211e146104e05780636c02a9311461050057600080fd5b80632a825569146103c95780632eb4a7ab146103e95780633ccfd60b146103ff57806342842e0e1461041457806344a0d68a1461043457600080fd5b806316ba10e01161021957806316ba10e01461032b57806316c38b3c1461034b57806316da55c41461036b57806318160ddd1461038b57806323b872dd146103a957600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806313faede614610307575b600080fd5b34801561026257600080fd5b5061027661027136600461216f565b61078a565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107dc565b60405161028291906121e4565b3480156102b957600080fd5b506102cd6102c83660046121f7565b61086e565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612225565b6108b2565b005b34801561031357600080fd5b5061031d600e5481565b604051908152602001610282565b34801561033757600080fd5b506103056103463660046122ee565b610939565b34801561035757600080fd5b5061030561036636600461234b565b610983565b34801561037757600080fd5b506103056103863660046123f4565b6109c0565b34801561039757600080fd5b5061031d600154600054036000190190565b3480156103b557600080fd5b506103056103c4366004612445565b610a32565b3480156103d557600080fd5b506103056103e4366004612486565b610a3d565b3480156103f557600080fd5b5061031d600f5481565b34801561040b57600080fd5b50610305610b09565b34801561042057600080fd5b5061030561042f366004612445565b610c04565b34801561044057600080fd5b5061030561044f3660046121f7565b610c1f565b34801561046057600080fd5b5061047461046f366004612549565b610c4e565b604051610282919061257d565b34801561048d57600080fd5b506012546102769060ff1681565b3480156104a757600080fd5b506102766104b63660046121f7565b600a6020526000908152604090205460ff1681565b3480156104d757600080fd5b506102a0610d14565b3480156104ec57600080fd5b506102cd6104fb3660046121f7565b610da2565b34801561050c57600080fd5b506102a0610db4565b34801561052157600080fd5b5060125461027690610100900460ff1681565b34801561054057600080fd5b5061030561054f3660046121f7565b610dc1565b34801561056057600080fd5b5061031d61056f3660046125e7565b610df0565b34801561058057600080fd5b50610305610e3e565b34801561059557600080fd5b506102a0610e74565b3480156105aa57600080fd5b506103056105b93660046122ee565b610e81565b3480156105ca57600080fd5b506105de6105d93660046125e7565b610ebe565b604051610282919061263f565b3480156105f757600080fd5b506008546001600160a01b03166102cd565b34801561061557600080fd5b5061031d600d5481565b34801561062b57600080fd5b506102a061100b565b34801561064057600080fd5b506105de61064f366004612652565b61101a565b6103056106623660046121f7565b6111e0565b34801561067357600080fd5b50610305610682366004612687565b6114cd565b34801561069357600080fd5b506103056106a2366004612549565b611563565b3480156106b357600080fd5b506103056106c23660046121f7565b6115d8565b3480156106d357600080fd5b506103056106e23660046126bc565b611607565b3480156106f357600080fd5b506107076107023660046121f7565b61164b565b604051610282919061273b565b34801561072057600080fd5b506102a061072f3660046121f7565b611705565b34801561074057600080fd5b5061031d600c5481565b34801561075657600080fd5b50610276610765366004612770565b611789565b34801561077657600080fd5b506103056107853660046125e7565b6117b7565b60006001600160e01b031982166380ac58cd60e01b14806107bb57506001600160e01b03198216635b5e139f60e01b145b806107d657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107eb9061279e565b80601f01602080910402602001604051908101604052809291908181526020018280546108179061279e565b80156108645780601f1061083957610100808354040283529160200191610864565b820191906000526020600020905b81548152906001019060200180831161084757829003601f168201915b5050505050905090565b60006108798261184f565b610896576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108bd82610da2565b9050806001600160a01b0316836001600160a01b031614156108f25760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146109295761090c8133611789565b610929576040516367d9dca160e11b815260040160405180910390fd5b610934838383611888565b505050565b6008546001600160a01b0316331461096c5760405162461bcd60e51b8152600401610963906127d9565b60405180910390fd5b805161097f9060149060208401906120c0565b5050565b6008546001600160a01b031633146109ad5760405162461bcd60e51b8152600401610963906127d9565b6012805460ff1916911515919091179055565b6008546001600160a01b031633146109ea5760405162461bcd60e51b8152600401610963906127d9565b600c548251610a00600154600054036000190190565b610a0a9190612824565b1115610a285760405162461bcd60e51b81526004016109639061283c565b61097f81836118e4565b610934838383611936565b6008546001600160a01b03163314610a675760405162461bcd60e51b8152600401610963906127d9565b6040805160018082528183019092526000916020808301908036833701905050905060005b8351811015610b0357838181518110610aa757610aa761286a565b602002602001015182600081518110610ac257610ac261286a565b602002602001018181525050610af182848381518110610ae457610ae461286a565b60200260200101516109c0565b80610afb81612880565b915050610a8c565b50505050565b6008546001600160a01b03163314610b335760405162461bcd60e51b8152600401610963906127d9565b60026009541415610b865760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610963565b60026009556000610b9f6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610be9576040519150601f19603f3d011682016040523d82523d6000602084013e610bee565b606091505b5050905080610bfc57600080fd5b506001600955565b61093483838360405180602001604052806000815250611607565b6008546001600160a01b03163314610c495760405162461bcd60e51b8152600401610963906127d9565b600e55565b80516060906000816001600160401b03811115610c6d57610c6d612251565b604051908082528060200260200182016040528015610cb857816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610c8b5790505b50905060005b828114610d0c57610ce7858281518110610cda57610cda61286a565b602002602001015161164b565b828281518110610cf957610cf961286a565b6020908102919091010152600101610cbe565b509392505050565b600b8054610d219061279e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4d9061279e565b8015610d9a5780601f10610d6f57610100808354040283529160200191610d9a565b820191906000526020600020905b815481529060010190602001808311610d7d57829003601f168201915b505050505081565b6000610dad82611b23565b5192915050565b60108054610d219061279e565b6008546001600160a01b03163314610deb5760405162461bcd60e51b8152600401610963906127d9565b600c55565b60006001600160a01b038216610e19576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610e685760405162461bcd60e51b8152600401610963906127d9565b610e726000611c45565b565b60118054610d219061279e565b6008546001600160a01b03163314610eab5760405162461bcd60e51b8152600401610963906127d9565b805161097f90600b9060208401906120c0565b60606000806000610ece85610df0565b90506000816001600160401b03811115610eea57610eea612251565b604051908082528060200260200182016040528015610f13578160200160208202803683370190505b509050610f39604080516060810182526000808252602082018190529181019190915290565b60015b838614610fff57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250610fa257610ff7565b81516001600160a01b031615610fb757815194505b876001600160a01b0316856001600160a01b03161415610ff75780838780600101985081518110610fea57610fea61286a565b6020026020010181815250505b600101610f3c565b50909695505050505050565b6060600380546107eb9061279e565b606081831061103c57604051631960ccad60e11b815260040160405180910390fd5b60008054600185101561104e57600194505b8084111561105a578093505b600061106587610df0565b905084861015611084578585038181101561107e578091505b50611088565b5060005b6000816001600160401b038111156110a2576110a2612251565b6040519080825280602002602001820160405280156110cb578160200160208202803683370190505b509050816110de5793506111d992505050565b60006110e98861164b565b9050600081604001516110fa575080515b885b88811415801561110c5750848714155b156111cd57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529350611170576111c5565b82516001600160a01b03161561118557825191505b8a6001600160a01b0316826001600160a01b031614156111c557808488806001019950815181106111b8576111b861286a565b6020026020010181815250505b6001016110fc565b50505092835250909150505b9392505050565b6001600d5481111561122b5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610963565b600c5481611240600154600054036000190190565b61124a9190612824565b11156112685760405162461bcd60e51b81526004016109639061283c565b600180600e54611278919061289b565b3410156112bd5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610963565b60125460ff16156113105760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610963565b6000838152600a602052604090205460ff16156113685760405162461bcd60e51b8152602060048201526016602482015275546f6b656e20616c726561647920636c61696d65642160501b6044820152606401610963565b6012546040516331a9108f60e11b8152600481018590526000916201000090046001600160a01b031690636352211e9060240160206040518083038186803b1580156113b357600080fd5b505afa1580156113c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113eb91906128ba565b90506001600160a01b03811633146114455760405162461bcd60e51b815260206004820152601860248201527f4d75737420626520616e206f776e657220746f206d696e7400000000000000006044820152606401610963565b61144f3385611c97565b6000848152600a602052604090819020805460ff191660011790556013549051630ae169a560e41b8152600481018690526001600160a01b039091169063ae169a5090602401600060405180830381600087803b1580156114af57600080fd5b505af11580156114c3573d6000803e3d6000fd5b5050505050505050565b6001600160a01b0382163314156114f75760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461158d5760405162461bcd60e51b8152600401610963906127d9565b600c5481516115a3600154600054036000190190565b6115ad9190612824565b11156115cb5760405162461bcd60e51b81526004016109639061283c565b6115d533826118e4565b50565b6008546001600160a01b031633146116025760405162461bcd60e51b8152600401610963906127d9565b600d55565b611612848484611936565b6001600160a01b0383163b15610b035761162e84848484611ce3565b610b03576040516368d2bf6b60e11b815260040160405180910390fd5b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281019290925290600183108061169157506000548310155b1561169c5792915050565b50600082815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252906116fc5792915050565b6111d983611b23565b60606117108261184f565b61172d57604051630a14c4b560e41b815260040160405180910390fd5b6000611737611ddb565b905080516000141561175857604051806020016040528060008152506111d9565b8061176284611dea565b6040516020016117739291906128d7565b6040516020818303038152906040529392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146117e15760405162461bcd60e51b8152600401610963906127d9565b6001600160a01b0381166118465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610963565b6115d581611c45565b600081600111158015611863575060005482105b80156107d6575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60005481516118f38482611ee7565b7f102e9d07c211550df36fe13636ecaa163325a38a6c48d8de1a7b6070601b2157848484846040516119289493929190612906565b60405180910390a150505050565b600061194182611b23565b9050836001600160a01b031681600001516001600160a01b0316146119785760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061199657506119968533611789565b806119b15750336119a68461086e565b6001600160a01b0316145b9050806119d157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166119f857604051633a954ecd60e21b815260040160405180910390fd5b611a0460008487611888565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611ad8576000548214611ad857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528180600111611c2c57600054811015611c2c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611c2a5780516001600160a01b031615611bc1579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611c25579392505050565b611bc1565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516001808252818301909252600091602080830190803683370190505090508181600081518110611ccd57611ccd61286a565b60200260200101818152505061093483826118e4565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d1890339089908890889060040161293d565b602060405180830381600087803b158015611d3257600080fd5b505af1925050508015611d62575060408051601f3d908101601f19168201909252611d5f9181019061297a565b60015b611dbd573d808015611d90576040519150601f19603f3d011682016040523d82523d6000602084013e611d95565b606091505b508051611db5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546107eb9061279e565b606081611e0e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e385780611e2281612880565b9150611e319050600a836129ad565b9150611e12565b6000816001600160401b03811115611e5257611e52612251565b6040519080825280601f01601f191660200182016040528015611e7c576020820181803683370190505b5090505b8415611dd357611e916001836129c1565b9150611e9e600a866129d8565b611ea9906030612824565b60f81b818381518110611ebe57611ebe61286a565b60200101906001600160f81b031916908160001a905350611ee0600a866129ad565b9450611e80565b61097f8282604051806020016040528060008152506000546001600160a01b038416611f2557604051622e076360e81b815260040160405180910390fd5b82611f435760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b1561206b575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120346000878480600101955087611ce3565b612051576040516368d2bf6b60e11b815260040160405180910390fd5b808210611fe957826000541461206657600080fd5b6120b0565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061206c575b506000908155610b039085838684565b8280546120cc9061279e565b90600052602060002090601f0160209004810192826120ee5760008555612134565b82601f1061210757805160ff1916838001178555612134565b82800160010185558215612134579182015b82811115612134578251825591602001919060010190612119565b50612140929150612144565b5090565b5b808211156121405760008155600101612145565b6001600160e01b0319811681146115d557600080fd5b60006020828403121561218157600080fd5b81356111d981612159565b60005b838110156121a757818101518382015260200161218f565b83811115610b035750506000910152565b600081518084526121d081602086016020860161218c565b601f01601f19169290920160200192915050565b6020815260006111d960208301846121b8565b60006020828403121561220957600080fd5b5035919050565b6001600160a01b03811681146115d557600080fd5b6000806040838503121561223857600080fd5b823561224381612210565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561228f5761228f612251565b604052919050565b60006001600160401b038311156122b0576122b0612251565b6122c3601f8401601f1916602001612267565b90508281528383830111156122d757600080fd5b828260208301376000602084830101529392505050565b60006020828403121561230057600080fd5b81356001600160401b0381111561231657600080fd5b8201601f8101841361232757600080fd5b611dd384823560208401612297565b8035801515811461234657600080fd5b919050565b60006020828403121561235d57600080fd5b6111d982612336565b60006001600160401b0382111561237f5761237f612251565b5060051b60200190565b600082601f83011261239a57600080fd5b813560206123af6123aa83612366565b612267565b82815260059290921b840181019181810190868411156123ce57600080fd5b8286015b848110156123e957803583529183019183016123d2565b509695505050505050565b6000806040838503121561240757600080fd5b82356001600160401b0381111561241d57600080fd5b61242985828601612389565b925050602083013561243a81612210565b809150509250929050565b60008060006060848603121561245a57600080fd5b833561246581612210565b9250602084013561247581612210565b929592945050506040919091013590565b6000806040838503121561249957600080fd5b82356001600160401b03808211156124b057600080fd5b6124bc86838701612389565b93506020915081850135818111156124d357600080fd5b85019050601f810186136124e657600080fd5b80356124f46123aa82612366565b81815260059190911b8201830190838101908883111561251357600080fd5b928401925b8284101561253a57833561252b81612210565b82529284019290840190612518565b80955050505050509250929050565b60006020828403121561255b57600080fd5b81356001600160401b0381111561257157600080fd5b611dd384828501612389565b6020808252825182820181905260009190848201906040850190845b81811015610fff576125d483855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101612599565b6000602082840312156125f957600080fd5b81356111d981612210565b600081518084526020808501945080840160005b8381101561263457815187529582019590820190600101612618565b509495945050505050565b6020815260006111d96020830184612604565b60008060006060848603121561266757600080fd5b833561267281612210565b95602085013595506040909401359392505050565b6000806040838503121561269a57600080fd5b82356126a581612210565b91506126b360208401612336565b90509250929050565b600080600080608085870312156126d257600080fd5b84356126dd81612210565b935060208501356126ed81612210565b92506040850135915060608501356001600160401b0381111561270f57600080fd5b8501601f8101871361272057600080fd5b61272f87823560208401612297565b91505092959194509250565b81516001600160a01b031681526020808301516001600160401b031690820152604080830151151590820152606081016107d6565b6000806040838503121561278357600080fd5b823561278e81612210565b9150602083013561243a81612210565b600181811c908216806127b257607f821691505b602082108114156127d357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128375761283761280e565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156128945761289461280e565b5060010190565b60008160001904831182151516156128b5576128b561280e565b500290565b6000602082840312156128cc57600080fd5b81516111d981612210565b600083516128e981846020880161218c565b8351908301906128fd81836020880161218c565b01949350505050565b6001600160a01b038516815260806020820181905260009061292a90830186612604565b6040830194909452506060015292915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612970908301846121b8565b9695505050505050565b60006020828403121561298c57600080fd5b81516111d981612159565b634e487b7160e01b600052601260045260246000fd5b6000826129bc576129bc612997565b500490565b6000828210156129d3576129d361280e565b500390565b6000826129e7576129e7612997565b50069056fea2646970667358221220db3618d162dd0d5040e5dee1783a007cf88375f30be31846c6182007cbdb2d4964736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000005e90ae496c133b2c22286767a20907b8fed8818000000000000000000000000e80f06f7ceb7f295643f1e83418d21f53c94fcd2000000000000000000000000000000000000000000000000000000000000002d687474703a2f2f6170692e776861746973796f7572646174652e78797a2f6d657461646174612f616d6265722f00000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636caede3d1161013957806399a2557a116100b6578063b88d4fde1161007a578063b88d4fde146106c7578063c23dc68f146106e7578063c87b56dd14610714578063d5abeb0114610734578063e985e9c51461074a578063f2fde38b1461076a57600080fd5b806399a2557a14610634578063a0712d6814610654578063a22cb46514610667578063a583542414610687578063b071401b146106a757600080fd5b80637ec4a659116100fd5780637ec4a6591461059e5780638462151c146105be5780638da5cb5b146105eb57806394354fd01461060957806395d89b411461061f57600080fd5b80636caede3d146105155780636f8b44b01461053457806370a0823114610554578063715018a6146105745780637b61c3201461058957600080fd5b80632a825569116101d25780635bbb2177116101965780635bbb2177146104545780635c975abb146104815780635ffa777d1461049b57806362b99ad4146104cb5780636352211e146104e05780636c02a9311461050057600080fd5b80632a825569146103c95780632eb4a7ab146103e95780633ccfd60b146103ff57806342842e0e1461041457806344a0d68a1461043457600080fd5b806316ba10e01161021957806316ba10e01461032b57806316c38b3c1461034b57806316da55c41461036b57806318160ddd1461038b57806323b872dd146103a957600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806313faede614610307575b600080fd5b34801561026257600080fd5b5061027661027136600461216f565b61078a565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107dc565b60405161028291906121e4565b3480156102b957600080fd5b506102cd6102c83660046121f7565b61086e565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612225565b6108b2565b005b34801561031357600080fd5b5061031d600e5481565b604051908152602001610282565b34801561033757600080fd5b506103056103463660046122ee565b610939565b34801561035757600080fd5b5061030561036636600461234b565b610983565b34801561037757600080fd5b506103056103863660046123f4565b6109c0565b34801561039757600080fd5b5061031d600154600054036000190190565b3480156103b557600080fd5b506103056103c4366004612445565b610a32565b3480156103d557600080fd5b506103056103e4366004612486565b610a3d565b3480156103f557600080fd5b5061031d600f5481565b34801561040b57600080fd5b50610305610b09565b34801561042057600080fd5b5061030561042f366004612445565b610c04565b34801561044057600080fd5b5061030561044f3660046121f7565b610c1f565b34801561046057600080fd5b5061047461046f366004612549565b610c4e565b604051610282919061257d565b34801561048d57600080fd5b506012546102769060ff1681565b3480156104a757600080fd5b506102766104b63660046121f7565b600a6020526000908152604090205460ff1681565b3480156104d757600080fd5b506102a0610d14565b3480156104ec57600080fd5b506102cd6104fb3660046121f7565b610da2565b34801561050c57600080fd5b506102a0610db4565b34801561052157600080fd5b5060125461027690610100900460ff1681565b34801561054057600080fd5b5061030561054f3660046121f7565b610dc1565b34801561056057600080fd5b5061031d61056f3660046125e7565b610df0565b34801561058057600080fd5b50610305610e3e565b34801561059557600080fd5b506102a0610e74565b3480156105aa57600080fd5b506103056105b93660046122ee565b610e81565b3480156105ca57600080fd5b506105de6105d93660046125e7565b610ebe565b604051610282919061263f565b3480156105f757600080fd5b506008546001600160a01b03166102cd565b34801561061557600080fd5b5061031d600d5481565b34801561062b57600080fd5b506102a061100b565b34801561064057600080fd5b506105de61064f366004612652565b61101a565b6103056106623660046121f7565b6111e0565b34801561067357600080fd5b50610305610682366004612687565b6114cd565b34801561069357600080fd5b506103056106a2366004612549565b611563565b3480156106b357600080fd5b506103056106c23660046121f7565b6115d8565b3480156106d357600080fd5b506103056106e23660046126bc565b611607565b3480156106f357600080fd5b506107076107023660046121f7565b61164b565b604051610282919061273b565b34801561072057600080fd5b506102a061072f3660046121f7565b611705565b34801561074057600080fd5b5061031d600c5481565b34801561075657600080fd5b50610276610765366004612770565b611789565b34801561077657600080fd5b506103056107853660046125e7565b6117b7565b60006001600160e01b031982166380ac58cd60e01b14806107bb57506001600160e01b03198216635b5e139f60e01b145b806107d657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107eb9061279e565b80601f01602080910402602001604051908101604052809291908181526020018280546108179061279e565b80156108645780601f1061083957610100808354040283529160200191610864565b820191906000526020600020905b81548152906001019060200180831161084757829003601f168201915b5050505050905090565b60006108798261184f565b610896576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108bd82610da2565b9050806001600160a01b0316836001600160a01b031614156108f25760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146109295761090c8133611789565b610929576040516367d9dca160e11b815260040160405180910390fd5b610934838383611888565b505050565b6008546001600160a01b0316331461096c5760405162461bcd60e51b8152600401610963906127d9565b60405180910390fd5b805161097f9060149060208401906120c0565b5050565b6008546001600160a01b031633146109ad5760405162461bcd60e51b8152600401610963906127d9565b6012805460ff1916911515919091179055565b6008546001600160a01b031633146109ea5760405162461bcd60e51b8152600401610963906127d9565b600c548251610a00600154600054036000190190565b610a0a9190612824565b1115610a285760405162461bcd60e51b81526004016109639061283c565b61097f81836118e4565b610934838383611936565b6008546001600160a01b03163314610a675760405162461bcd60e51b8152600401610963906127d9565b6040805160018082528183019092526000916020808301908036833701905050905060005b8351811015610b0357838181518110610aa757610aa761286a565b602002602001015182600081518110610ac257610ac261286a565b602002602001018181525050610af182848381518110610ae457610ae461286a565b60200260200101516109c0565b80610afb81612880565b915050610a8c565b50505050565b6008546001600160a01b03163314610b335760405162461bcd60e51b8152600401610963906127d9565b60026009541415610b865760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610963565b60026009556000610b9f6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610be9576040519150601f19603f3d011682016040523d82523d6000602084013e610bee565b606091505b5050905080610bfc57600080fd5b506001600955565b61093483838360405180602001604052806000815250611607565b6008546001600160a01b03163314610c495760405162461bcd60e51b8152600401610963906127d9565b600e55565b80516060906000816001600160401b03811115610c6d57610c6d612251565b604051908082528060200260200182016040528015610cb857816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610c8b5790505b50905060005b828114610d0c57610ce7858281518110610cda57610cda61286a565b602002602001015161164b565b828281518110610cf957610cf961286a565b6020908102919091010152600101610cbe565b509392505050565b600b8054610d219061279e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4d9061279e565b8015610d9a5780601f10610d6f57610100808354040283529160200191610d9a565b820191906000526020600020905b815481529060010190602001808311610d7d57829003601f168201915b505050505081565b6000610dad82611b23565b5192915050565b60108054610d219061279e565b6008546001600160a01b03163314610deb5760405162461bcd60e51b8152600401610963906127d9565b600c55565b60006001600160a01b038216610e19576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610e685760405162461bcd60e51b8152600401610963906127d9565b610e726000611c45565b565b60118054610d219061279e565b6008546001600160a01b03163314610eab5760405162461bcd60e51b8152600401610963906127d9565b805161097f90600b9060208401906120c0565b60606000806000610ece85610df0565b90506000816001600160401b03811115610eea57610eea612251565b604051908082528060200260200182016040528015610f13578160200160208202803683370190505b509050610f39604080516060810182526000808252602082018190529181019190915290565b60015b838614610fff57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250610fa257610ff7565b81516001600160a01b031615610fb757815194505b876001600160a01b0316856001600160a01b03161415610ff75780838780600101985081518110610fea57610fea61286a565b6020026020010181815250505b600101610f3c565b50909695505050505050565b6060600380546107eb9061279e565b606081831061103c57604051631960ccad60e11b815260040160405180910390fd5b60008054600185101561104e57600194505b8084111561105a578093505b600061106587610df0565b905084861015611084578585038181101561107e578091505b50611088565b5060005b6000816001600160401b038111156110a2576110a2612251565b6040519080825280602002602001820160405280156110cb578160200160208202803683370190505b509050816110de5793506111d992505050565b60006110e98861164b565b9050600081604001516110fa575080515b885b88811415801561110c5750848714155b156111cd57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529350611170576111c5565b82516001600160a01b03161561118557825191505b8a6001600160a01b0316826001600160a01b031614156111c557808488806001019950815181106111b8576111b861286a565b6020026020010181815250505b6001016110fc565b50505092835250909150505b9392505050565b6001600d5481111561122b5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610963565b600c5481611240600154600054036000190190565b61124a9190612824565b11156112685760405162461bcd60e51b81526004016109639061283c565b600180600e54611278919061289b565b3410156112bd5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610963565b60125460ff16156113105760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610963565b6000838152600a602052604090205460ff16156113685760405162461bcd60e51b8152602060048201526016602482015275546f6b656e20616c726561647920636c61696d65642160501b6044820152606401610963565b6012546040516331a9108f60e11b8152600481018590526000916201000090046001600160a01b031690636352211e9060240160206040518083038186803b1580156113b357600080fd5b505afa1580156113c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113eb91906128ba565b90506001600160a01b03811633146114455760405162461bcd60e51b815260206004820152601860248201527f4d75737420626520616e206f776e657220746f206d696e7400000000000000006044820152606401610963565b61144f3385611c97565b6000848152600a602052604090819020805460ff191660011790556013549051630ae169a560e41b8152600481018690526001600160a01b039091169063ae169a5090602401600060405180830381600087803b1580156114af57600080fd5b505af11580156114c3573d6000803e3d6000fd5b5050505050505050565b6001600160a01b0382163314156114f75760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461158d5760405162461bcd60e51b8152600401610963906127d9565b600c5481516115a3600154600054036000190190565b6115ad9190612824565b11156115cb5760405162461bcd60e51b81526004016109639061283c565b6115d533826118e4565b50565b6008546001600160a01b031633146116025760405162461bcd60e51b8152600401610963906127d9565b600d55565b611612848484611936565b6001600160a01b0383163b15610b035761162e84848484611ce3565b610b03576040516368d2bf6b60e11b815260040160405180910390fd5b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281019290925290600183108061169157506000548310155b1561169c5792915050565b50600082815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252906116fc5792915050565b6111d983611b23565b60606117108261184f565b61172d57604051630a14c4b560e41b815260040160405180910390fd5b6000611737611ddb565b905080516000141561175857604051806020016040528060008152506111d9565b8061176284611dea565b6040516020016117739291906128d7565b6040516020818303038152906040529392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146117e15760405162461bcd60e51b8152600401610963906127d9565b6001600160a01b0381166118465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610963565b6115d581611c45565b600081600111158015611863575060005482105b80156107d6575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60005481516118f38482611ee7565b7f102e9d07c211550df36fe13636ecaa163325a38a6c48d8de1a7b6070601b2157848484846040516119289493929190612906565b60405180910390a150505050565b600061194182611b23565b9050836001600160a01b031681600001516001600160a01b0316146119785760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061199657506119968533611789565b806119b15750336119a68461086e565b6001600160a01b0316145b9050806119d157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166119f857604051633a954ecd60e21b815260040160405180910390fd5b611a0460008487611888565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611ad8576000548214611ad857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528180600111611c2c57600054811015611c2c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611c2a5780516001600160a01b031615611bc1579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611c25579392505050565b611bc1565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516001808252818301909252600091602080830190803683370190505090508181600081518110611ccd57611ccd61286a565b60200260200101818152505061093483826118e4565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d1890339089908890889060040161293d565b602060405180830381600087803b158015611d3257600080fd5b505af1925050508015611d62575060408051601f3d908101601f19168201909252611d5f9181019061297a565b60015b611dbd573d808015611d90576040519150601f19603f3d011682016040523d82523d6000602084013e611d95565b606091505b508051611db5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546107eb9061279e565b606081611e0e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e385780611e2281612880565b9150611e319050600a836129ad565b9150611e12565b6000816001600160401b03811115611e5257611e52612251565b6040519080825280601f01601f191660200182016040528015611e7c576020820181803683370190505b5090505b8415611dd357611e916001836129c1565b9150611e9e600a866129d8565b611ea9906030612824565b60f81b818381518110611ebe57611ebe61286a565b60200101906001600160f81b031916908160001a905350611ee0600a866129ad565b9450611e80565b61097f8282604051806020016040528060008152506000546001600160a01b038416611f2557604051622e076360e81b815260040160405180910390fd5b82611f435760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b1561206b575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120346000878480600101955087611ce3565b612051576040516368d2bf6b60e11b815260040160405180910390fd5b808210611fe957826000541461206657600080fd5b6120b0565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061206c575b506000908155610b039085838684565b8280546120cc9061279e565b90600052602060002090601f0160209004810192826120ee5760008555612134565b82601f1061210757805160ff1916838001178555612134565b82800160010185558215612134579182015b82811115612134578251825591602001919060010190612119565b50612140929150612144565b5090565b5b808211156121405760008155600101612145565b6001600160e01b0319811681146115d557600080fd5b60006020828403121561218157600080fd5b81356111d981612159565b60005b838110156121a757818101518382015260200161218f565b83811115610b035750506000910152565b600081518084526121d081602086016020860161218c565b601f01601f19169290920160200192915050565b6020815260006111d960208301846121b8565b60006020828403121561220957600080fd5b5035919050565b6001600160a01b03811681146115d557600080fd5b6000806040838503121561223857600080fd5b823561224381612210565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561228f5761228f612251565b604052919050565b60006001600160401b038311156122b0576122b0612251565b6122c3601f8401601f1916602001612267565b90508281528383830111156122d757600080fd5b828260208301376000602084830101529392505050565b60006020828403121561230057600080fd5b81356001600160401b0381111561231657600080fd5b8201601f8101841361232757600080fd5b611dd384823560208401612297565b8035801515811461234657600080fd5b919050565b60006020828403121561235d57600080fd5b6111d982612336565b60006001600160401b0382111561237f5761237f612251565b5060051b60200190565b600082601f83011261239a57600080fd5b813560206123af6123aa83612366565b612267565b82815260059290921b840181019181810190868411156123ce57600080fd5b8286015b848110156123e957803583529183019183016123d2565b509695505050505050565b6000806040838503121561240757600080fd5b82356001600160401b0381111561241d57600080fd5b61242985828601612389565b925050602083013561243a81612210565b809150509250929050565b60008060006060848603121561245a57600080fd5b833561246581612210565b9250602084013561247581612210565b929592945050506040919091013590565b6000806040838503121561249957600080fd5b82356001600160401b03808211156124b057600080fd5b6124bc86838701612389565b93506020915081850135818111156124d357600080fd5b85019050601f810186136124e657600080fd5b80356124f46123aa82612366565b81815260059190911b8201830190838101908883111561251357600080fd5b928401925b8284101561253a57833561252b81612210565b82529284019290840190612518565b80955050505050509250929050565b60006020828403121561255b57600080fd5b81356001600160401b0381111561257157600080fd5b611dd384828501612389565b6020808252825182820181905260009190848201906040850190845b81811015610fff576125d483855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101612599565b6000602082840312156125f957600080fd5b81356111d981612210565b600081518084526020808501945080840160005b8381101561263457815187529582019590820190600101612618565b509495945050505050565b6020815260006111d96020830184612604565b60008060006060848603121561266757600080fd5b833561267281612210565b95602085013595506040909401359392505050565b6000806040838503121561269a57600080fd5b82356126a581612210565b91506126b360208401612336565b90509250929050565b600080600080608085870312156126d257600080fd5b84356126dd81612210565b935060208501356126ed81612210565b92506040850135915060608501356001600160401b0381111561270f57600080fd5b8501601f8101871361272057600080fd5b61272f87823560208401612297565b91505092959194509250565b81516001600160a01b031681526020808301516001600160401b031690820152604080830151151590820152606081016107d6565b6000806040838503121561278357600080fd5b823561278e81612210565b9150602083013561243a81612210565b600181811c908216806127b257607f821691505b602082108114156127d357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128375761283761280e565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156128945761289461280e565b5060010190565b60008160001904831182151516156128b5576128b561280e565b500290565b6000602082840312156128cc57600080fd5b81516111d981612210565b600083516128e981846020880161218c565b8351908301906128fd81836020880161218c565b01949350505050565b6001600160a01b038516815260806020820181905260009061292a90830186612604565b6040830194909452506060015292915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612970908301846121b8565b9695505050505050565b60006020828403121561298c57600080fd5b81516111d981612159565b634e487b7160e01b600052601260045260246000fd5b6000826129bc576129bc612997565b500490565b6000828210156129d3576129d361280e565b500390565b6000826129e7576129e7612997565b50069056fea2646970667358221220db3618d162dd0d5040e5dee1783a007cf88375f30be31846c6182007cbdb2d4964736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000005e90ae496c133b2c22286767a20907b8fed8818000000000000000000000000e80f06f7ceb7f295643f1e83418d21f53c94fcd2000000000000000000000000000000000000000000000000000000000000002d687474703a2f2f6170692e776861746973796f7572646174652e78797a2f6d657461646174612f616d6265722f00000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): http://api.whatisyourdate.xyz/metadata/amber/
Arg [1] : _saveTheDateContract (address): 0x05E90ae496C133B2c22286767a20907b8FEd8818
Arg [2] : _refundContract (address): 0xe80F06F7CeB7F295643F1e83418d21f53C94fCd2

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000005e90ae496c133b2c22286767a20907b8fed8818
Arg [2] : 000000000000000000000000e80f06f7ceb7f295643f1e83418d21f53c94fcd2
Arg [3] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [4] : 687474703a2f2f6170692e776861746973796f7572646174652e78797a2f6d65
Arg [5] : 7461646174612f616d6265722f00000000000000000000000000000000000000


Deployed Bytecode Sourcemap

858:3991:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2986:305:4;;;;;;;;;;-1:-1:-1;2986:305:4;;;;;:::i;:::-;;:::i;:::-;;;565:14:17;;558:22;540:41;;528:2;513:18;2986:305:4;;;;;;;;6101:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7605:204::-;;;;;;;;;;-1:-1:-1;7605:204:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:17;;;1674:51;;1662:2;1647:18;7605:204:4;1528:203:17;7167:372:4;;;;;;;;;;-1:-1:-1;7167:372:4;;;;;:::i;:::-;;:::i;:::-;;1239:29:1;;;;;;;;;;;;;;;;;;;2338:25:17;;;2326:2;2311:18;1239:29:1;2192:177:17;4317:100:1;;;;;;;;;;-1:-1:-1;4317:100:1;;;;;:::i;:::-;;:::i;4503:77::-;;;;;;;;;;-1:-1:-1;4503:77:1;;;;;:::i;:::-;;:::i;3354:214::-;;;;;;;;;;-1:-1:-1;3354:214:1;;;;;:::i;:::-;;:::i;2226:312:4:-;;;;;;;;;;;;3962:1:1;2489:12:4;2279:7;2473:13;:28;-1:-1:-1;;2473:46:4;;2226:312;8470:170;;;;;;;;;;-1:-1:-1;8470:170:4;;;;;:::i;:::-;;:::i;3574:294:1:-;;;;;;;;;;-1:-1:-1;3574:294:1;;;;;:::i;:::-;;:::i;1273:25::-;;;;;;;;;;;;;;;;4586:150;;;;;;;;;;;;;:::i;8711:185:4:-;;;;;;;;;;-1:-1:-1;8711:185:4;;;;;:::i;:::-;;:::i;4423:74:1:-;;;;;;;;;;-1:-1:-1;4423:74:1;;;;;:::i;:::-;;:::i;1547:468:5:-;;;;;;;;;;-1:-1:-1;1547:468:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1411:25:1:-;;;;;;;;;;-1:-1:-1;1411:25:1;;;;;;;;1075:47;;;;;;;;;;-1:-1:-1;1075:47:1;;;;;:::i;:::-;;;;;;;;;;;;;;;;1127:28;;;;;;;;;;;;;:::i;5909:125:4:-;;;;;;;;;;-1:-1:-1;5909:125:4;;;;;:::i;:::-;;:::i;1305:59:1:-;;;;;;;;;;;;;:::i;1441:40::-;;;;;;;;;;-1:-1:-1;1441:40:1;;;;;;;;;;;3975:94;;;;;;;;;;-1:-1:-1;3975:94:1;;;;;:::i;:::-;;:::i;3355:206:4:-;;;;;;;;;;-1:-1:-1;3355:206:4;;;;;:::i;:::-;;:::i;1714:103:13:-;;;;;;;;;;;;;:::i;1369:37:1:-;;;;;;;;;;;;;:::i;4211:100::-;;;;;;;;;;-1:-1:-1;4211:100:1;;;;;:::i;:::-;;:::i;5361:891:5:-;;;;;;;;;;-1:-1:-1;5361:891:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1063:87:13:-;;;;;;;;;;-1:-1:-1;1136:6:13;;-1:-1:-1;;;;;1136:6:13;1063:87;;1197:37:1;;;;;;;;;;;;;;;;6270:104:4;;;;;;;;;;;;;:::i;2405:2507:5:-;;;;;;;;;;-1:-1:-1;2405:2507:5;;;;;:::i;:::-;;:::i;2268:446:1:-;;;;;;:::i;:::-;;:::i;7881:287:4:-;;;;;;;;;;-1:-1:-1;7881:287:4;;;;;:::i;:::-;;:::i;3146:199:1:-;;;;;;;;;;-1:-1:-1;3146:199:1;;;;;:::i;:::-;;:::i;4075:130::-;;;;;;;;;;-1:-1:-1;4075:130:1;;;;;:::i;:::-;;:::i;8967:370:4:-;;;;;;;;;;-1:-1:-1;8967:370:4;;;;;:::i;:::-;;:::i;970:418:5:-;;;;;;;;;;-1:-1:-1;970:418:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6445:318:4:-;;;;;;;;;;-1:-1:-1;6445:318:4;;;;;:::i;:::-;;:::i;1160:32:1:-;;;;;;;;;;;;;;;;8239:164:4;;;;;;;;;;-1:-1:-1;8239:164:4;;;;;:::i;:::-;;:::i;1972:201:13:-;;;;;;;;;;-1:-1:-1;1972:201:13;;;;;:::i;:::-;;:::i;2986:305:4:-;3088:4;-1:-1:-1;;;;;;3125:40:4;;-1:-1:-1;;;3125:40:4;;:105;;-1:-1:-1;;;;;;;3182:48:4;;-1:-1:-1;;;3182:48:4;3125:105;:158;;;-1:-1:-1;;;;;;;;;;963:40:3;;;3247:36:4;3105:178;2986:305;-1:-1:-1;;2986:305:4:o;6101:100::-;6155:13;6188:5;6181:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6101:100;:::o;7605:204::-;7673:7;7698:16;7706:7;7698;:16::i;:::-;7693:64;;7723:34;;-1:-1:-1;;;7723:34:4;;;;;;;;;;;7693:64;-1:-1:-1;7777:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;7777:24:4;;7605:204::o;7167:372::-;7240:13;7256:24;7272:7;7256:15;:24::i;:::-;7240:40;;7301:5;-1:-1:-1;;;;;7295:11:4;:2;-1:-1:-1;;;;;7295:11:4;;7291:48;;;7315:24;;-1:-1:-1;;;7315:24:4;;;;;;;;;;;7291:48;736:10:2;-1:-1:-1;;;;;7356:21:4;;;7352:139;;7383:37;7400:5;736:10:2;8239:164:4;:::i;7383:37::-;7379:112;;7444:35;;-1:-1:-1;;;7444:35:4;;;;;;;;;;;7379:112;7503:28;7512:2;7516:7;7525:5;7503:8;:28::i;:::-;7229:310;7167:372;;:::o;4317:100:1:-;1136:6:13;;-1:-1:-1;;;;;1136:6:13;736:10:2;1283:23:13;1275:68;;;;-1:-1:-1;;;1275:68:13;;;;;;;:::i;:::-;;;;;;;;;4389:22:1;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;4317:100:::0;:::o;4503:77::-;1136:6:13;;-1:-1:-1;;;;;1136:6:13;736:10:2;1283:23:13;1275:68;;;;-1:-1:-1;;;1275:68:13;;;;;;;:::i;:::-;4559:6:1::1;:15:::0;;-1:-1:-1;;4559:15:1::1;::::0;::::1;;::::0;;;::::1;::::0;;4503:77::o;3354:214::-;1136:6:13;;-1:-1:-1;;;;;1136:6:13;736:10:2;1283:23:13;1275:68;;;;-1:-1:-1;;;1275:68:13;;;;;;;:::i;:::-;3489:9:1::1;;3471:7;:14;3455:13;3962:1:::0;2489:12:4;2279:7;2473:13;:28;-1:-1:-1;;2473:46:4;;2226:312;3455:13:1::1;:30;;;;:::i;:::-;:43;;3447:76;;;;-1:-1:-1::0;;;3447:76:1::1;;;;;;;:::i;:::-;3530:32;3543:9;3554:7;3530:12;:32::i;8470:170:4:-:0;8604:28;8614:4;8620:2;8624:7;8604:9;:28::i;3574:294:1:-;1136:6:13;;-1:-1:-1;;;;;1136:6:13;736:10:2;1283:23:13;1275:68;;;;-1:-1:-1;;;1275:68:13;;;;;;;:::i;:::-;3702:16:1::1;::::0;;3716:1:::1;3702:16:::0;;;;;::::1;::::0;;;3679:20:::1;::::0;3702:16:::1;::::0;;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;3702:16:1::1;3679:39;;3730:6;3725:121;3746:7;:14;3742:1;:18;3725:121;;;3785:7;3793:1;3785:10;;;;;;;;:::i;:::-;;;;;;;3776:3;3780:1;3776:6;;;;;;;;:::i;:::-;;;;;;:19;;;::::0;::::1;3804:34;3819:3;3824:10;3835:1;3824:13;;;;;;;;:::i;:::-;;;;;;;3804:14;:34::i;:::-;3762:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3725:121;;;-1:-1:-1::0;;;;3574:294:1:o;4586:150::-;1136:6:13;;-1:-1:-1;;;;;1136:6:13;736:10:2;1283:23:13;1275:68;;;;-1:-1:-1;;;1275:68:13;;;;;;;:::i;:::-;1778:1:14::1;2376:7;;:19;;2368:63;;;::::0;-1:-1:-1;;;2368:63:14;;13538:2:17;2368:63:14::1;::::0;::::1;13520:21:17::0;13577:2;13557:18;;;13550:30;13616:33;13596:18;;;13589:61;13667:18;;2368:63:14::1;13336:355:17::0;2368:63:14::1;1778:1;2509:7;:18:::0;4644:7:1::2;4665;1136:6:13::0;;-1:-1:-1;;;;;1136:6:13;;1063:87;4665:7:1::2;-1:-1:-1::0;;;;;4657:21:1::2;4686;4657:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4643:69;;;4727:2;4719:11;;;::::0;::::2;;-1:-1:-1::0;1734:1:14::1;2688:7;:22:::0;4586:150:1:o;8711:185:4:-;8849:39;8866:4;8872:2;8876:7;8849:39;;;;;;;;;;;;:16;:39::i;4423:74:1:-;1136:6:13;;-1:-1:-1;;;;;1136:6:13;736:10:2;1283:23:13;1275:68;;;;-1:-1:-1;;;1275:68:13;;;;;;;:::i;:::-;4479:4:1::1;:12:::0;4423:74::o;1547:468:5:-;1722:15;;1636:23;;1697:22;1722:15;-1:-1:-1;;;;;1789:36:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;1789:36:5;;-1:-1:-1;;1789:36:5;;;;;;;;;;;;1752:73;;1845:9;1840:125;1861:14;1856:1;:19;1840:125;;1917:32;1937:8;1946:1;1937:11;;;;;;;;:::i;:::-;;;;;;;1917:19;:32::i;:::-;1901:10;1912:1;1901:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;1877:3;;1840:125;;;-1:-1:-1;1986:10:5;1547:468;-1:-1:-1;;;1547:468:5:o;1127:28:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5909:125:4:-;5973:7;6000:21;6013:7;6000:12;:21::i;:::-;:26;;5909:125;-1:-1:-1;;5909:125:4:o;1305:59:1:-;;;;;;;:::i;3975:94::-;1136:6:13;;-1:-1:-1;;;;;1136:6:13;736:10:2;1283:23:13;1275:68;;;;-1:-1:-1;;;1275:68:13;;;;;;;:::i;:::-;4041:9:1::1;:22:::0;3975:94::o;3355:206:4:-;3419:7;-1:-1:-1;;;;;3443:19:4;;3439:60;;3471:28;;-1:-1:-1;;;3471:28:4;;;;;;;;;;;3439:60;-1:-1:-1;;;;;;3525:19:4;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;3525:27:4;;3355:206::o;1714:103:13:-;1136:6;;-1:-1:-1;;;;;1136:6:13;736:10:2;1283:23:13;1275:68;;;;-1:-1:-1;;;1275:68:13;;;;;;;:::i;:::-;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;1369:37:1:-;;;;;;;:::i;4211:100::-;1136:6:13;;-1:-1:-1;;;;;1136:6:13;736:10:2;1283:23:13;1275:68;;;;-1:-1:-1;;;1275:68:13;;;;;;;:::i;:::-;4283:22:1;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;5361:891:5:-:0;5431:16;5485:19;5519:25;5559:22;5584:16;5594:5;5584:9;:16::i;:::-;5559:41;;5615:25;5657:14;-1:-1:-1;;;;;5643:29:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5643:29:5;;5615:57;;5687:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;5687:31:5;3962:1:1;5733:471:5;5782:14;5767:11;:29;5733:471;;5834:14;;;;:11;:14;;;;;;;;;5822:26;;;;;;;;;-1:-1:-1;;;;;5822:26:5;;;;-1:-1:-1;;;5822:26:5;;-1:-1:-1;;;;;5822:26:5;;;;;;;;-1:-1:-1;;;5822:26:5;;;;;;;;;;;;;;;;-1:-1:-1;5867:73:5;;5912:8;;5867:73;5962:14;;-1:-1:-1;;;;;5962:28:5;;5958:111;;6035:14;;;-1:-1:-1;5958:111:5;6112:5;-1:-1:-1;;;;;6091:26:5;:17;-1:-1:-1;;;;;6091:26:5;;6087:102;;;6168:1;6142:8;6151:13;;;;;;6142:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;6087:102;5798:3;;5733:471;;;-1:-1:-1;6225:8:5;;5361:891;-1:-1:-1;;;;;;5361:891:5:o;6270:104:4:-;6326:13;6359:7;6352:14;;;;;:::i;2405:2507:5:-;2540:16;2607:4;2598:5;:13;2594:45;;2620:19;;-1:-1:-1;;;2620:19:5;;;;;;;;;;;2594:45;2654:19;2708:13;;3962:1:1;2799:5:5;:23;2795:87;;;3962:1:1;2843:23:5;;2795:87;2962:9;2955:4;:16;2951:73;;;2999:9;2992:16;;2951:73;3038:25;3066:16;3076:5;3066:9;:16::i;:::-;3038:44;;3260:4;3252:5;:12;3248:278;;;3307:12;;;3342:31;;;3338:111;;;3418:11;3398:31;;3338:111;3266:198;3248:278;;;-1:-1:-1;3509:1:5;3248:278;3540:25;3582:17;-1:-1:-1;;;;;3568:32:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3568:32:5;-1:-1:-1;3540:60:5;-1:-1:-1;3619:22:5;3615:78;;3669:8;-1:-1:-1;3662:15:5;;-1:-1:-1;;;3662:15:5;3615:78;3837:31;3871:26;3891:5;3871:19;:26::i;:::-;3837:60;;3912:25;4157:9;:16;;;4152:92;;-1:-1:-1;4214:14:5;;4152:92;4275:5;4258:477;4287:4;4282:1;:9;;:45;;;;;4310:17;4295:11;:32;;4282:45;4258:477;;;4365:14;;;;:11;:14;;;;;;;;;4353:26;;;;;;;;;-1:-1:-1;;;;;4353:26:5;;;;-1:-1:-1;;;4353:26:5;;-1:-1:-1;;;;;4353:26:5;;;;;;;;-1:-1:-1;;;4353:26:5;;;;;;;;;;;;;;;;-1:-1:-1;4398:73:5;;4443:8;;4398:73;4493:14;;-1:-1:-1;;;;;4493:28:5;;4489:111;;4566:14;;;-1:-1:-1;4489:111:5;4643:5;-1:-1:-1;;;;;4622:26:5;:17;-1:-1:-1;;;;;4622:26:5;;4618:102;;;4699:1;4673:8;4682:13;;;;;;4673:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;4618:102;4329:3;;4258:477;;;-1:-1:-1;;;4820:29:5;;;-1:-1:-1;4827:8:5;;-1:-1:-1;;2405:2507:5;;;;;;:::o;2268:446:1:-;2328:1;1985:18;;1970:11;:33;;1943:85;;;;-1:-1:-1;;;1943:85:1;;14108:2:17;1943:85:1;;;14090:21:17;14147:2;14127:18;;;14120:30;-1:-1:-1;;;14166:18:17;;;14159:50;14226:18;;1943:85:1;13906:344:17;1943:85:1;2074:9;;2059:11;2043:13;3962:1;2489:12:4;2279:7;2473:13;:28;-1:-1:-1;;2473:46:4;;2226:312;2043:13:1;:27;;;;:::i;:::-;:40;;2035:73;;;;-1:-1:-1;;;2035:73:1;;;;;;;:::i;:::-;2351:1:::1;2213:11;2206:4;;:18;;;;:::i;:::-;2193:9;:31;;2185:63;;;::::0;-1:-1:-1;;;2185:63:1;;14630:2:17;2185:63:1::1;::::0;::::1;14612:21:17::0;14669:2;14649:18;;;14642:30;-1:-1:-1;;;14688:18:17;;;14681:49;14747:18;;2185:63:1::1;14428:343:17::0;2185:63:1::1;2370:6:::2;::::0;::::2;;2369:7;2361:43;;;::::0;-1:-1:-1;;;2361:43:1;;14978:2:17;2361:43:1::2;::::0;::::2;14960:21:17::0;15017:2;14997:18;;;14990:30;15056:25;15036:18;;;15029:53;15099:18;;2361:43:1::2;14776:347:17::0;2361:43:1::2;2420:23;::::0;;;:15:::2;:23;::::0;;;;;::::2;;2419:24;2411:59;;;::::0;-1:-1:-1;;;2411:59:1;;15330:2:17;2411:59:1::2;::::0;::::2;15312:21:17::0;15369:2;15349:18;;;15342:30;-1:-1:-1;;;15388:18:17;;;15381:52;15450:18;;2411:59:1::2;15128:346:17::0;2411:59:1::2;2494:19;::::0;:35:::2;::::0;-1:-1:-1;;;2494:35:1;;::::2;::::0;::::2;2338:25:17::0;;;2477:14:1::2;::::0;2494:19;;::::2;-1:-1:-1::0;;;;;2494:19:1::2;::::0;:27:::2;::::0;2311:18:17;;2494:35:1::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2477:52:::0;-1:-1:-1;;;;;;2544:20:1;::::2;2554:10;2544:20;2536:57;;;::::0;-1:-1:-1;;;2536:57:1;;15937:2:17;2536:57:1::2;::::0;::::2;15919:21:17::0;15976:2;15956:18;;;15949:30;16015:26;15995:18;;;15988:54;16059:18;;2536:57:1::2;15735:348:17::0;2536:57:1::2;2600:30;736:10:2::0;2623:6:1::2;2600:8;:30::i;:::-;2637:23;::::0;;;:15:::2;:23;::::0;;;;;;:30;;-1:-1:-1;;2637:30:1::2;2663:4;2637:30;::::0;;2674:14:::2;::::0;:34;;-1:-1:-1;;;2674:34:1;;::::2;::::0;::::2;2338:25:17::0;;;-1:-1:-1;;;;;2674:14:1;;::::2;::::0;:26:::2;::::0;2311:18:17;;2674:34:1::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;2354:360;2115:1:::1;2268:446:::0;;:::o;7881:287:4:-;-1:-1:-1;;;;;7980:24:4;;736:10:2;7980:24:4;7976:54;;;8013:17;;-1:-1:-1;;;8013:17:4;;;;;;;;;;;7976:54;736:10:2;8043:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;8043:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;8043:53:4;;;;;;;;;;8112:48;;540:41:17;;;8043:42:4;;736:10:2;8112:48:4;;513:18:17;8112:48:4;;;;;;;7881:287;;:::o;3146:199:1:-;1136:6:13;;-1:-1:-1;;;;;1136:6:13;736:10:2;1283:23:13;1275:68;;;;-1:-1:-1;;;1275:68:13;;;;;;;:::i;:::-;3263:9:1::1;;3245:7;:14;3229:13;3962:1:::0;2489:12:4;2279:7;2473:13;:28;-1:-1:-1;;2473:46:4;;2226:312;3229:13:1::1;:30;;;;:::i;:::-;:43;;3221:76;;;;-1:-1:-1::0;;;3221:76:1::1;;;;;;;:::i;:::-;3304:35;736:10:2::0;3331:7:1::1;3304:12;:35::i;:::-;3146:199:::0;:::o;4075:130::-;1136:6:13;;-1:-1:-1;;;;;1136:6:13;736:10:2;1283:23:13;1275:68;;;;-1:-1:-1;;;1275:68:13;;;;;;;:::i;:::-;4159:18:1::1;:40:::0;4075:130::o;8967:370:4:-;9134:28;9144:4;9150:2;9154:7;9134:9;:28::i;:::-;-1:-1:-1;;;;;9177:13:4;;1505:19:0;:23;9173:157:4;;9198:56;9229:4;9235:2;9239:7;9248:5;9198:30;:56::i;:::-;9194:136;;9278:40;;-1:-1:-1;;;9278:40:4;;;;;;;;;;;970:418:5;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3962:1:1;1126:25:5;;;:53;;;1166:13;;1155:7;:24;;1126:53;1122:102;;;1203:9;970:418;-1:-1:-1;;970:418:5:o;1122:102::-;-1:-1:-1;1246:20:5;;;;:11;:20;;;;;;;;;1234:32;;;;;;;;;-1:-1:-1;;;;;1234:32:5;;;;-1:-1:-1;;;1234:32:5;;-1:-1:-1;;;;;1234:32:5;;;;;;;;-1:-1:-1;;;1234:32:5;;;;;;;;;;;;;;;;1277:65;;1321:9;970:418;-1:-1:-1;;970:418:5:o;1277:65::-;1359:21;1372:7;1359:12;:21::i;6445:318:4:-;6518:13;6549:16;6557:7;6549;:16::i;:::-;6544:59;;6574:29;;-1:-1:-1;;;6574:29:4;;;;;;;;;;;6544:59;6616:21;6640:10;:8;:10::i;:::-;6616:34;;6674:7;6668:21;6693:1;6668:26;;:87;;;;;;;;;;;;;;;;;6721:7;6730:18;:7;:16;:18::i;:::-;6704:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6661:94;6445:318;-1:-1:-1;;;6445:318:4:o;8239:164::-;-1:-1:-1;;;;;8360:25:4;;;8336:4;8360:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;8239:164::o;1972:201:13:-;1136:6;;-1:-1:-1;;;;;1136:6:13;736:10:2;1283:23:13;1275:68;;;;-1:-1:-1;;;1275:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;2061:22:13;::::1;2053:73;;;::::0;-1:-1:-1;;;2053:73:13;;16765:2:17;2053:73:13::1;::::0;::::1;16747:21:17::0;16804:2;16784:18;;;16777:30;16843:34;16823:18;;;16816:62;-1:-1:-1;;;16894:18:17;;;16887:36;16940:19;;2053:73:13::1;16563:402:17::0;2053:73:13::1;2137:28;2156:8;2137:18;:28::i;9592:174:4:-:0;9649:4;9692:7;3962:1:1;9673:26:4;;:53;;;;;9713:13;;9703:7;:23;9673:53;:85;;;;-1:-1:-1;;9731:20:4;;;;:11;:20;;;;;:27;-1:-1:-1;;;9731:27:4;;;;9730:28;;9592:174::o;18814:196::-;18929:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;18929:29:4;-1:-1:-1;;;;;18929:29:4;;;;;;;;;18974:28;;18929:24;;18974:28;;;;;;;18814:196;;;:::o;2900:241:1:-;2976:20;2999:13;3036:14;;3057:21;3067:2;3036:14;3057:9;:21::i;:::-;3090:45;3101:2;3105:7;3114:12;3128:6;3090:45;;;;;;;;;:::i;:::-;;;;;;;;2969:172;;2900:241;;:::o;13762:2130:4:-;13877:35;13915:21;13928:7;13915:12;:21::i;:::-;13877:59;;13975:4;-1:-1:-1;;;;;13953:26:4;:13;:18;;;-1:-1:-1;;;;;13953:26:4;;13949:67;;13988:28;;-1:-1:-1;;;13988:28:4;;;;;;;;;;;13949:67;14029:22;736:10:2;-1:-1:-1;;;;;14055:20:4;;;;:73;;-1:-1:-1;14092:36:4;14109:4;736:10:2;8239:164:4;:::i;14092:36::-;14055:126;;;-1:-1:-1;736:10:2;14145:20:4;14157:7;14145:11;:20::i;:::-;-1:-1:-1;;;;;14145:36:4;;14055:126;14029:153;;14200:17;14195:66;;14226:35;;-1:-1:-1;;;14226:35:4;;;;;;;;;;;14195:66;-1:-1:-1;;;;;14276:16:4;;14272:52;;14301:23;;-1:-1:-1;;;14301:23:4;;;;;;;;;;;14272:52;14445:35;14462:1;14466:7;14475:4;14445:8;:35::i;:::-;-1:-1:-1;;;;;14776:18:4;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;14776:31:4;;;-1:-1:-1;;;;;14776:31:4;;;-1:-1:-1;;14776:31:4;;;;;;;14822:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;14822:29:4;;;;;;;;;;;14902:20;;;:11;:20;;;;;;14937:18;;-1:-1:-1;;;;;;14970:49:4;;;;-1:-1:-1;;;15003:15:4;14970:49;;;;;;;;;;15293:11;;15353:24;;;;;15396:13;;14902:20;;15353:24;;15396:13;15392:384;;15606:13;;15591:11;:28;15587:174;;15644:20;;15713:28;;;;-1:-1:-1;;;;;15687:54:4;-1:-1:-1;;;15687:54:4;-1:-1:-1;;;;;;15687:54:4;;;-1:-1:-1;;;;;15644:20:4;;15687:54;;;;15587:174;14751:1036;;;15823:7;15819:2;-1:-1:-1;;;;;15804:27:4;15813:4;-1:-1:-1;;;;;15804:27:4;;;;;;;;;;;13866:2026;;13762:2130;;;:::o;4736:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;4847:7:4;;3962:1:1;4896:23:4;4892:888;;4932:13;;4925:4;:20;4921:859;;;4966:31;5000:17;;;:11;:17;;;;;;;;;4966:51;;;;;;;;;-1:-1:-1;;;;;4966:51:4;;;;-1:-1:-1;;;4966:51:4;;-1:-1:-1;;;;;4966:51:4;;;;;;;;-1:-1:-1;;;4966:51:4;;;;;;;;;;;;;;5036:729;;5086:14;;-1:-1:-1;;;;;5086:28:4;;5082:101;;5150:9;4736:1111;-1:-1:-1;;;4736:1111:4:o;5082:101::-;-1:-1:-1;;;5525:6:4;5570:17;;;;:11;:17;;;;;;;;;5558:29;;;;;;;;;-1:-1:-1;;;;;5558:29:4;;;;;-1:-1:-1;;;5558:29:4;;-1:-1:-1;;;;;5558:29:4;;;;;;;;-1:-1:-1;;;5558:29:4;;;;;;;;;;;;;5618:28;5614:109;;5686:9;4736:1111;-1:-1:-1;;;4736:1111:4:o;5614:109::-;5485:261;;;4947:833;4921:859;5808:31;;-1:-1:-1;;;5808:31:4;;;;;;;;;;;2333:191:13;2426:6;;;-1:-1:-1;;;;;2443:17:13;;;-1:-1:-1;;;;;;2443:17:13;;;;;;;2476:40;;2426:6;;;2443:17;2426:6;;2476:40;;2407:16;;2476:40;2396:128;2333:191;:::o;2720:174:1:-;2805:16;;;2819:1;2805:16;;;;;;;;;2782:20;;2805:16;;;;;;;;;;;-1:-1:-1;2805:16:1;2782:39;;2837:6;2828:3;2832:1;2828:6;;;;;;;;:::i;:::-;;;;;;:15;;;;;2850:21;2863:2;2867:3;2850:12;:21::i;19502:667:4:-;19686:72;;-1:-1:-1;;;19686:72:4;;19665:4;;-1:-1:-1;;;;;19686:36:4;;;;;:72;;736:10:2;;19737:4:4;;19743:7;;19752:5;;19686:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19686:72:4;;;;;;;;-1:-1:-1;;19686:72:4;;;;;;;;;;;;:::i;:::-;;;19682:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19920:13:4;;19916:235;;19966:40;;-1:-1:-1;;;19966:40:4;;;;;;;;;;;19916:235;20109:6;20103:13;20094:6;20090:2;20086:15;20079:38;19682:480;-1:-1:-1;;;;;;19805:55:4;-1:-1:-1;;;19805:55:4;;-1:-1:-1;19682:480:4;19502:667;;;;;;:::o;4742:104:1:-;4802:13;4831:9;4824:16;;;;;:::i;342:723:16:-;398:13;619:10;615:53;;-1:-1:-1;;646:10:16;;;;;;;;;;;;-1:-1:-1;;;646:10:16;;;;;342:723::o;615:53::-;693:5;678:12;734:78;741:9;;734:78;;767:8;;;;:::i;:::-;;-1:-1:-1;790:10:16;;-1:-1:-1;798:2:16;790:10;;:::i;:::-;;;734:78;;;822:19;854:6;-1:-1:-1;;;;;844:17:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;844:17:16;;822:39;;872:154;879:10;;872:154;;906:11;916:1;906:11;;:::i;:::-;;-1:-1:-1;975:10:16;983:2;975:5;:10;:::i;:::-;962:24;;:2;:24;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;932:56:16;;;;;;;;-1:-1:-1;1003:11:16;1012:2;1003:11;;:::i;:::-;;;872:154;;9850:104:4;9919:27;9929:2;9933:8;9919:27;;;;;;;;;;;;10450:20;10473:13;-1:-1:-1;;;;;10501:16:4;;10497:48;;10526:19;;-1:-1:-1;;;10526:19:4;;;;;;;;;;;10497:48;10560:13;10556:44;;10582:18;;-1:-1:-1;;;10582:18:4;;;;;;;;;;;10556:44;-1:-1:-1;;;;;10951:16:4;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;11010:49:4;;-1:-1:-1;;;;;10951:44:4;;;;;;;11010:49;;;;-1:-1:-1;;10951:44:4;;;;;;11010:49;;;;;;;;;;;;;;;;11076:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;11126:66:4;;;-1:-1:-1;;;11176:15:4;11126:66;;;;;;;;;;;;;11076:25;;11273:23;;;;1505:19:0;:23;11313:631:4;;11353:313;11384:38;;11409:12;;-1:-1:-1;;;;;11384:38:4;;;11401:1;;11384:38;;11401:1;;11384:38;11450:69;11489:1;11493:2;11497:14;;;;;;11513:5;11450:30;:69::i;:::-;11445:174;;11555:40;;-1:-1:-1;;;11555:40:4;;;;;;;;;;;11445:174;11661:3;11646:12;:18;11353:313;;11747:12;11730:13;;:29;11726:43;;11761:8;;;11726:43;11313:631;;;11810:119;11841:40;;11866:14;;;;;-1:-1:-1;;;;;11841:40:4;;;11858:1;;11841:40;;11858:1;;11841:40;11924:3;11909:12;:18;11810:119;;11313:631;-1:-1:-1;11958:13:4;:28;;;12008:60;;12041:2;12045:12;12059:8;12008:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:17;-1:-1:-1;;;;;;88:32:17;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:17;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:17;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:17:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:17;;1343:180;-1:-1:-1;1343:180:17:o;1736:131::-;-1:-1:-1;;;;;1811:31:17;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:17:o;2374:127::-;2435:10;2430:3;2426:20;2423:1;2416:31;2466:4;2463:1;2456:15;2490:4;2487:1;2480:15;2506:275;2577:2;2571:9;2642:2;2623:13;;-1:-1:-1;;2619:27:17;2607:40;;-1:-1:-1;;;;;2662:34:17;;2698:22;;;2659:62;2656:88;;;2724:18;;:::i;:::-;2760:2;2753:22;2506:275;;-1:-1:-1;2506:275:17:o;2786:407::-;2851:5;-1:-1:-1;;;;;2877:6:17;2874:30;2871:56;;;2907:18;;:::i;:::-;2945:57;2990:2;2969:15;;-1:-1:-1;;2965:29:17;2996:4;2961:40;2945:57;:::i;:::-;2936:66;;3025:6;3018:5;3011:21;3065:3;3056:6;3051:3;3047:16;3044:25;3041:45;;;3082:1;3079;3072:12;3041:45;3131:6;3126:3;3119:4;3112:5;3108:16;3095:43;3185:1;3178:4;3169:6;3162:5;3158:18;3154:29;3147:40;2786:407;;;;;:::o;3198:451::-;3267:6;3320:2;3308:9;3299:7;3295:23;3291:32;3288:52;;;3336:1;3333;3326:12;3288:52;3376:9;3363:23;-1:-1:-1;;;;;3401:6:17;3398:30;3395:50;;;3441:1;3438;3431:12;3395:50;3464:22;;3517:4;3509:13;;3505:27;-1:-1:-1;3495:55:17;;3546:1;3543;3536:12;3495:55;3569:74;3635:7;3630:2;3617:16;3612:2;3608;3604:11;3569:74;:::i;3654:160::-;3719:20;;3775:13;;3768:21;3758:32;;3748:60;;3804:1;3801;3794:12;3748:60;3654:160;;;:::o;3819:180::-;3875:6;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;3967:26;3983:9;3967:26;:::i;4004:183::-;4064:4;-1:-1:-1;;;;;4089:6:17;4086:30;4083:56;;;4119:18;;:::i;:::-;-1:-1:-1;4164:1:17;4160:14;4176:4;4156:25;;4004:183::o;4192:662::-;4246:5;4299:3;4292:4;4284:6;4280:17;4276:27;4266:55;;4317:1;4314;4307:12;4266:55;4353:6;4340:20;4379:4;4403:60;4419:43;4459:2;4419:43;:::i;:::-;4403:60;:::i;:::-;4497:15;;;4583:1;4579:10;;;;4567:23;;4563:32;;;4528:12;;;;4607:15;;;4604:35;;;4635:1;4632;4625:12;4604:35;4671:2;4663:6;4659:15;4683:142;4699:6;4694:3;4691:15;4683:142;;;4765:17;;4753:30;;4803:12;;;;4716;;4683:142;;;-1:-1:-1;4843:5:17;4192:662;-1:-1:-1;;;;;;4192:662:17:o;4859:483::-;4952:6;4960;5013:2;5001:9;4992:7;4988:23;4984:32;4981:52;;;5029:1;5026;5019:12;4981:52;5069:9;5056:23;-1:-1:-1;;;;;5094:6:17;5091:30;5088:50;;;5134:1;5131;5124:12;5088:50;5157:61;5210:7;5201:6;5190:9;5186:22;5157:61;:::i;:::-;5147:71;;;5268:2;5257:9;5253:18;5240:32;5281:31;5306:5;5281:31;:::i;:::-;5331:5;5321:15;;;4859:483;;;;;:::o;5347:456::-;5424:6;5432;5440;5493:2;5481:9;5472:7;5468:23;5464:32;5461:52;;;5509:1;5506;5499:12;5461:52;5548:9;5535:23;5567:31;5592:5;5567:31;:::i;:::-;5617:5;-1:-1:-1;5674:2:17;5659:18;;5646:32;5687:33;5646:32;5687:33;:::i;:::-;5347:456;;5739:7;;-1:-1:-1;;;5793:2:17;5778:18;;;;5765:32;;5347:456::o;5808:1213::-;5926:6;5934;5987:2;5975:9;5966:7;5962:23;5958:32;5955:52;;;6003:1;6000;5993:12;5955:52;6043:9;6030:23;-1:-1:-1;;;;;6113:2:17;6105:6;6102:14;6099:34;;;6129:1;6126;6119:12;6099:34;6152:61;6205:7;6196:6;6185:9;6181:22;6152:61;:::i;:::-;6142:71;;6232:2;6222:12;;6287:2;6276:9;6272:18;6259:32;6316:2;6306:8;6303:16;6300:36;;;6332:1;6329;6322:12;6300:36;6355:24;;;-1:-1:-1;6410:4:17;6402:13;;6398:27;-1:-1:-1;6388:55:17;;6439:1;6436;6429:12;6388:55;6475:2;6462:16;6498:60;6514:43;6554:2;6514:43;:::i;6498:60::-;6592:15;;;6674:1;6670:10;;;;6662:19;;6658:28;;;6623:12;;;;6698:19;;;6695:39;;;6730:1;6727;6720:12;6695:39;6754:11;;;;6774:217;6790:6;6785:3;6782:15;6774:217;;;6870:3;6857:17;6887:31;6912:5;6887:31;:::i;:::-;6931:18;;6807:12;;;;6969;;;;6774:217;;;7010:5;7000:15;;;;;;;5808:1213;;;;;:::o;7208:348::-;7292:6;7345:2;7333:9;7324:7;7320:23;7316:32;7313:52;;;7361:1;7358;7351:12;7313:52;7401:9;7388:23;-1:-1:-1;;;;;7426:6:17;7423:30;7420:50;;;7466:1;7463;7456:12;7420:50;7489:61;7542:7;7533:6;7522:9;7518:22;7489:61;:::i;7844:724::-;8079:2;8131:21;;;8201:13;;8104:18;;;8223:22;;;8050:4;;8079:2;8302:15;;;;8276:2;8261:18;;;8050:4;8345:197;8359:6;8356:1;8353:13;8345:197;;;8408:52;8456:3;8447:6;8441:13;7645:12;;-1:-1:-1;;;;;7641:38:17;7629:51;;7733:4;7722:16;;;7716:23;-1:-1:-1;;;;;7712:48:17;7696:14;;;7689:72;7824:4;7813:16;;;7807:23;7800:31;7793:39;7777:14;;7770:63;7561:278;8408:52;8517:15;;;;8489:4;8480:14;;;;;8381:1;8374:9;8345:197;;8573:247;8632:6;8685:2;8673:9;8664:7;8660:23;8656:32;8653:52;;;8701:1;8698;8691:12;8653:52;8740:9;8727:23;8759:31;8784:5;8759:31;:::i;8825:435::-;8878:3;8916:5;8910:12;8943:6;8938:3;8931:19;8969:4;8998:2;8993:3;8989:12;8982:19;;9035:2;9028:5;9024:14;9056:1;9066:169;9080:6;9077:1;9074:13;9066:169;;;9141:13;;9129:26;;9175:12;;;;9210:15;;;;9102:1;9095:9;9066:169;;;-1:-1:-1;9251:3:17;;8825:435;-1:-1:-1;;;;;8825:435:17:o;9265:261::-;9444:2;9433:9;9426:21;9407:4;9464:56;9516:2;9505:9;9501:18;9493:6;9464:56;:::i;9531:383::-;9608:6;9616;9624;9677:2;9665:9;9656:7;9652:23;9648:32;9645:52;;;9693:1;9690;9683:12;9645:52;9732:9;9719:23;9751:31;9776:5;9751:31;:::i;:::-;9801:5;9853:2;9838:18;;9825:32;;-1:-1:-1;9904:2:17;9889:18;;;9876:32;;9531:383;-1:-1:-1;;;9531:383:17:o;9919:315::-;9984:6;9992;10045:2;10033:9;10024:7;10020:23;10016:32;10013:52;;;10061:1;10058;10051:12;10013:52;10100:9;10087:23;10119:31;10144:5;10119:31;:::i;:::-;10169:5;-1:-1:-1;10193:35:17;10224:2;10209:18;;10193:35;:::i;:::-;10183:45;;9919:315;;;;;:::o;10239:795::-;10334:6;10342;10350;10358;10411:3;10399:9;10390:7;10386:23;10382:33;10379:53;;;10428:1;10425;10418:12;10379:53;10467:9;10454:23;10486:31;10511:5;10486:31;:::i;:::-;10536:5;-1:-1:-1;10593:2:17;10578:18;;10565:32;10606:33;10565:32;10606:33;:::i;:::-;10658:7;-1:-1:-1;10712:2:17;10697:18;;10684:32;;-1:-1:-1;10767:2:17;10752:18;;10739:32;-1:-1:-1;;;;;10783:30:17;;10780:50;;;10826:1;10823;10816:12;10780:50;10849:22;;10902:4;10894:13;;10890:27;-1:-1:-1;10880:55:17;;10931:1;10928;10921:12;10880:55;10954:74;11020:7;11015:2;11002:16;10997:2;10993;10989:11;10954:74;:::i;:::-;10944:84;;;10239:795;;;;;;;:::o;11039:267::-;7645:12;;-1:-1:-1;;;;;7641:38:17;7629:51;;7733:4;7722:16;;;7716:23;-1:-1:-1;;;;;7712:48:17;7696:14;;;7689:72;7824:4;7813:16;;;7807:23;7800:31;7793:39;7777:14;;;7770:63;11237:2;11222:18;;11249:51;7561:278;11311:388;11379:6;11387;11440:2;11428:9;11419:7;11415:23;11411:32;11408:52;;;11456:1;11453;11446:12;11408:52;11495:9;11482:23;11514:31;11539:5;11514:31;:::i;:::-;11564:5;-1:-1:-1;11621:2:17;11606:18;;11593:32;11634:33;11593:32;11634:33;:::i;11704:380::-;11783:1;11779:12;;;;11826;;;11847:61;;11901:4;11893:6;11889:17;11879:27;;11847:61;11954:2;11946:6;11943:14;11923:18;11920:38;11917:161;;;12000:10;11995:3;11991:20;11988:1;11981:31;12035:4;12032:1;12025:15;12063:4;12060:1;12053:15;11917:161;;11704:380;;;:::o;12089:356::-;12291:2;12273:21;;;12310:18;;;12303:30;12369:34;12364:2;12349:18;;12342:62;12436:2;12421:18;;12089:356::o;12450:127::-;12511:10;12506:3;12502:20;12499:1;12492:31;12542:4;12539:1;12532:15;12566:4;12563:1;12556:15;12582:128;12622:3;12653:1;12649:6;12646:1;12643:13;12640:39;;;12659:18;;:::i;:::-;-1:-1:-1;12695:9:17;;12582:128::o;12715:344::-;12917:2;12899:21;;;12956:2;12936:18;;;12929:30;-1:-1:-1;;;12990:2:17;12975:18;;12968:50;13050:2;13035:18;;12715:344::o;13064:127::-;13125:10;13120:3;13116:20;13113:1;13106:31;13156:4;13153:1;13146:15;13180:4;13177:1;13170:15;13196:135;13235:3;-1:-1:-1;;13256:17:17;;13253:43;;;13276:18;;:::i;:::-;-1:-1:-1;13323:1:17;13312:13;;13196:135::o;14255:168::-;14295:7;14361:1;14357;14353:6;14349:14;14346:1;14343:21;14338:1;14331:9;14324:17;14320:45;14317:71;;;14368:18;;:::i;:::-;-1:-1:-1;14408:9:17;;14255:168::o;15479:251::-;15549:6;15602:2;15590:9;15581:7;15577:23;15573:32;15570:52;;;15618:1;15615;15608:12;15570:52;15650:9;15644:16;15669:31;15694:5;15669:31;:::i;16088:470::-;16267:3;16305:6;16299:13;16321:53;16367:6;16362:3;16355:4;16347:6;16343:17;16321:53;:::i;:::-;16437:13;;16396:16;;;;16459:57;16437:13;16396:16;16493:4;16481:17;;16459:57;:::i;:::-;16532:20;;16088:470;-1:-1:-1;;;;16088:470:17:o;16970:502::-;-1:-1:-1;;;;;17233:32:17;;17215:51;;17302:3;17297:2;17282:18;;17275:31;;;-1:-1:-1;;17323:57:17;;17360:19;;17352:6;17323:57;:::i;:::-;17411:2;17396:18;;17389:34;;;;-1:-1:-1;17454:2:17;17439:18;17432:34;17315:65;16970:502;-1:-1:-1;;16970:502:17:o;17477:489::-;-1:-1:-1;;;;;17746:15:17;;;17728:34;;17798:15;;17793:2;17778:18;;17771:43;17845:2;17830:18;;17823:34;;;17893:3;17888:2;17873:18;;17866:31;;;17671:4;;17914:46;;17940:19;;17932:6;17914:46;:::i;:::-;17906:54;17477:489;-1:-1:-1;;;;;;17477:489:17:o;17971:249::-;18040:6;18093:2;18081:9;18072:7;18068:23;18064:32;18061:52;;;18109:1;18106;18099:12;18061:52;18141:9;18135:16;18160:30;18184:5;18160:30;:::i;18225:127::-;18286:10;18281:3;18277:20;18274:1;18267:31;18317:4;18314:1;18307:15;18341:4;18338:1;18331:15;18357:120;18397:1;18423;18413:35;;18428:18;;:::i;:::-;-1:-1:-1;18462:9:17;;18357:120::o;18482:125::-;18522:4;18550:1;18547;18544:8;18541:34;;;18555:18;;:::i;:::-;-1:-1:-1;18592:9:17;;18482:125::o;18612:112::-;18644:1;18670;18660:35;;18675:18;;:::i;:::-;-1:-1:-1;18709:9:17;;18612:112::o

Swarm Source

ipfs://db3618d162dd0d5040e5dee1783a007cf88375f30be31846c6182007cbdb2d49
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.