ETH Price: $2,971.46 (-5.44%)
Gas: 3 Gwei

Token

OmniBird (OBIRD)
 

Overview

Max Total Supply

0 OBIRD

Holders

1,018

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
lilfrito.eth
Balance
10 OBIRD
0xe73647c5f486975ecf2913f4f1263321c56aab4d
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:
OmniBird

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : OmniBird.sol
// SPDX-License-Identifier: BUSL-1.1

pragma solidity 0.8.4;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "./NonBlockingReceiver.sol";

import "./interfaces/ILayerZeroEndpoint.sol";

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

contract OmniBird is ERC721, NonblockingReceiver, ILayerZeroUserApplicationConfig {

    string public baseTokenURI;
    uint256 public gasForDestinationLzReceive = 350000;

    uint256 public nextTokenId;
    uint256 public maxMint;
    uint256 public publicSaleStartTime = 0;
    uint256 public maxMintPerWallet = 2;
    mapping(address => uint256) public minted;

    /// @notice Constructor for the OmniBird NFT
    /// @param _baseTokenURI the Uniform Resource Identifier (URI) for tokenId token
    /// @param _layerZeroEndpoint handles message transmission across chains
    /// @param _startToken the starting mint number on this chain
    /// @param _maxMint the max number of mints on this chain
    constructor(
        string memory _baseTokenURI,
        address _layerZeroEndpoint,
        uint256 _startToken,
        uint256 _maxMint
    )
    ERC721("OmniBird", "OBIRD"){
        setBaseURI(_baseTokenURI);
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        nextTokenId = _startToken;
        maxMint = _maxMint;
    }

    /// Mint OmniBird
    function setPublicSaleStartTime(uint256 newTime) public onlyOwner {
        publicSaleStartTime = newTime;
    }

    function setMaxMintPerWallet(uint256 newMaxMintPerWallet) external onlyOwner {
        maxMintPerWallet = newMaxMintPerWallet;
    }

    /**
     * pre-mint for community giveaways
     */
    function devMint(uint8 numTokens) public onlyOwner {
        require(nextTokenId + numTokens <= maxMint, "Mint exceeds supply");
        
        for (uint256 i = 0; i < numTokens; i++) {
            _safeMint(msg.sender, ++nextTokenId);
        }
    }

    function mint(uint8 numTokens) external payable {
        require(msg.sender == tx.origin, "User wallet required");
        require(publicSaleStartTime != 0 && publicSaleStartTime <= block.timestamp, "sales is not started");

        require(numTokens <= 2, "Max 2 NFTs per transaction");
        require(minted[msg.sender] + numTokens <= maxMintPerWallet, "limit per wallet reached");
        require(nextTokenId + numTokens <= maxMint, "Mint exceeds supply");

        _safeMint(msg.sender, ++nextTokenId);
        if (numTokens == 2) {
            _safeMint(msg.sender, ++nextTokenId);
        }

        minted[msg.sender] += numTokens;
    }

    /// @notice Burn OmniBird on source chain and mint on destination chain
    /// @param _chainId the destination chain id you want to transfer too
    /// @param _tokenId the id of the NFT you want to transfer
    function traverseChains(
        uint16 _chainId,
        uint256 _tokenId
    ) public payable {
        require(msg.sender == ownerOf(_tokenId), "Message sender must own the OmniBird.");
        require(trustedSourceLookup[_chainId].length != 0, "This chain is not a trusted source source.");

        // burn NFT on source chain
         _burn(_tokenId);

        // encode payload w/ sender address and NFT token id
        bytes memory payload = abi.encode(msg.sender, _tokenId);

        // encode adapterParams w/ extra gas for destination chain
        uint16 version = 1;
        uint gas = gasForDestinationLzReceive;
        bytes memory adapterParams = abi.encodePacked(version, gas);

        // use LayerZero estimateFees for cross chain delivery
        (uint quotedLayerZeroFee, ) = endpoint.estimateFees(_chainId, address(this), payload, false, adapterParams);

        require(msg.value >= quotedLayerZeroFee, "Not enough gas to cover cross chain transfer.");

        endpoint.send{value:msg.value}(
            _chainId,                      // destination chainId
            trustedSourceLookup[_chainId], // destination address of nft
            payload,                       // abi.encode()'ed bytes
            payable(msg.sender),           // refund address
            address(0x0),                  // future parameter
            adapterParams                  // adapterParams
        );
    }

    /// @notice Set the baseTokenURI
    /// @param _baseTokenURI to set
    function setBaseURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    /// @notice Get the base URI
    function _baseURI() override internal view returns (string memory) {
        return baseTokenURI;
    }

    // get fund inside contract
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(msg.sender), balance);
    }

    // just in case this fixed variable limits us from future integrations
    function setGasForDestinationLzReceive(uint256 newVal) external onlyOwner {
        gasForDestinationLzReceive = newVal;
    }

    /// @notice Override the _LzReceive internal function of the NonblockingReceiver
    // @param _srcChainId - the source endpoint identifier
    // @param _srcAddress - the source sending contract address from the source chain
    // @param _nonce - the ordered message nonce
    // @param _payload - the signed payload is the UA bytes has encoded to be sent
    function _LzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal override  {
        (address dstAddress, uint256 tokenId) = abi.decode(_payload, (address, uint256));
        _safeMint(dstAddress, tokenId);
    }

    // User Application Config
    function setConfig(
        uint16 _version,
        uint16 _chainId,
        uint256 _configType,
        bytes calldata _config
    ) external override onlyOwner {
        endpoint.setConfig(_version, _chainId, _configType, _config);
    }

    function setSendVersion(uint16 _version) external override onlyOwner {
        endpoint.setSendVersion(_version);
    }

    function setReceiveVersion(uint16 _version) external override onlyOwner {
        endpoint.setReceiveVersion(_version);
    }

    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner {
        endpoint.forceResumeReceive(_srcChainId, _srcAddress);
    }
}

File 2 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 15 : NonBlockingReceiver.sol
pragma solidity 0.8.4;

import "@openzeppelin/contracts/access/Ownable.sol";

import "./interfaces/ILayerZeroReceiver.sol";
import "./interfaces/ILayerZeroEndpoint.sol";
import "./interfaces/ILayerZeroReceiver.sol";

abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver {
    ILayerZeroEndpoint public endpoint;

    struct FailedMessages {
        uint payloadLength;
        bytes32 payloadHash;
    }

    mapping(uint16 => mapping(bytes => mapping(uint => FailedMessages))) public failedMessages;
    mapping(uint16 => bytes) public trustedSourceLookup;

    event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload);

    // abstract function
    function _LzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) virtual internal;

    function lzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) external override {
        require(msg.sender == address(endpoint)); // boilerplate! lzReceive must be called by the endpoint for security
        require(_srcAddress.length == trustedSourceLookup[_srcChainId].length && keccak256(_srcAddress) == keccak256(trustedSourceLookup[_srcChainId]), "NonblockingReceiver: invalid source sending contract");

        // try-catch all errors/exceptions
        // having failed messages does not block messages passing
        try this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload) {
            // do nothing
        } catch {
            // error / exception
            failedMessages[_srcChainId][_srcAddress][_nonce] = FailedMessages(_payload.length, keccak256(_payload));
            emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload);
        }
    }

    function onLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) public {
        // only internal transaction
        require(msg.sender == address(this), "NonblockingReceiver: caller must be Bridge.");
        _LzReceive( _srcChainId, _srcAddress, _nonce, _payload);
    }

    function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _txParam) internal {
        endpoint.send{value: msg.value}(_dstChainId, trustedSourceLookup[_dstChainId], _payload, _refundAddress, _zroPaymentAddress, _txParam);
    }

    function retryMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes calldata _payload) external payable {
        // assert there is message to retry
        FailedMessages storage failedMsg = failedMessages[_srcChainId][_srcAddress][_nonce];
        require(failedMsg.payloadHash != bytes32(0), "NonblockingReceiver: no stored message");
        require(_payload.length == failedMsg.payloadLength && keccak256(_payload) == failedMsg.payloadHash, "LayerZero: invalid payload");
        // clear the stored message
        failedMsg.payloadLength = 0;
        failedMsg.payloadHash = bytes32(0);
        // execute the message. revert if it fails again
        this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    function setTrustedSource(uint16 _chainId, bytes calldata _trustedSource) external onlyOwner {
        require(trustedSourceLookup[_chainId].length == 0, "The trusted source address has already been set for the chainId!");
        trustedSourceLookup[_chainId] = _trustedSource;
    }
}

File 4 of 15 : ILayerZeroEndpoint.sol
// SPDX-License-Identifier: BUSL-1.1

pragma solidity >=0.5.0;

import "./ILayerZeroUserApplicationConfig.sol";

interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig {
    // @notice send a LayerZero message to the specified address at a LayerZero endpoint.
    // @param _dstChainId - the destination chain identifier
    // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains
    // @param _payload - a custom bytes payload to send to the destination contract
    // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address
    // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction
    // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination
    function send(uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable;

    // @notice used by the messaging library to publish verified payload
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source contract (as bytes) at the source chain
    // @param _dstAddress - the address on destination chain
    // @param _nonce - the unbound message ordering nonce
    // @param _gasLimit - the gas limit for external contract execution
    // @param _payload - verified payload to send to the destination contract
    function receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload) external;

    // @notice get the inboundNonce of a receiver from a source chain which could be EVM or non-EVM chain
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64);

    // @notice get the outboundNonce from this source chain which, consequently, is always an EVM
    // @param _srcAddress - the source chain contract address
    function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64);

    // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery
    // @param _dstChainId - the destination chain identifier
    // @param _userApplication - the user app address on this EVM chain
    // @param _payload - the custom message to send over LayerZero
    // @param _payInZRO - if false, user app pays the protocol fee in native token
    // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain
    function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam) external view returns (uint nativeFee, uint zroFee);

    // @notice get this Endpoint's immutable source identifier
    function getChainId() external view returns (uint16);

    // @notice the interface to retry failed message on this Endpoint destination
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    // @param _payload - the payload to be retried
    function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external;

    // @notice query if any STORED payload (message blocking) at the endpoint.
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool);

    // @notice query if the _libraryAddress is valid for sending msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getSendLibraryAddress(address _userApplication) external view returns (address);

    // @notice query if the _libraryAddress is valid for receiving msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getReceiveLibraryAddress(address _userApplication) external view returns (address);

    // @notice query if the non-reentrancy guard for send() is on
    // @return true if the guard is on. false otherwise
    function isSendingPayload() external view returns (bool);

    // @notice query if the non-reentrancy guard for receive() is on
    // @return true if the guard is on. false otherwise
    function isReceivingPayload() external view returns (bool);

    // @notice get the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _userApplication - the contract address of the user application
    // @param _configType - type of configuration. every messaging library has its own convention.
    function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory);

    // @notice get the send() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getSendVersion(address _userApplication) external view returns (uint16);

    // @notice get the lzReceive() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getReceiveVersion(address _userApplication) external view returns (uint16);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 15 : 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 7 of 15 : 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 8 of 15 : 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 9 of 15 : 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 10 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 15 : 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 12 of 15 : 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 13 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 14 of 15 : ILayerZeroReceiver.sol
// SPDX-License-Identifier: BUSL-1.1

pragma solidity >=0.5.0;

interface ILayerZeroReceiver {
    // @notice LayerZero endpoint will invoke this function to deliver the message on the destination
    // @param _srcChainId - the source endpoint identifier
    // @param _srcAddress - the source sending contract address from the source chain
    // @param _nonce - the ordered message nonce
    // @param _payload - the signed payload is the UA bytes has encoded to be sent
    function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external;
}

File 15 of 15 : ILayerZeroUserApplicationConfig.sol
// SPDX-License-Identifier: BUSL-1.1

pragma solidity >=0.5.0;

interface ILayerZeroUserApplicationConfig {
    // @notice set the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _configType - type of configuration. every messaging library has its own convention.
    // @param _config - configuration in the bytes. can encode arbitrary content.
    function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external;

    // @notice set the send() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setSendVersion(uint16 _version) external;

    // @notice set the lzReceive() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setReceiveVersion(uint16 _version) external;

    // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload
    // @param _srcChainId - the chainId of the source chain
    // @param _srcAddress - the contract address of the source contract at the source chain
    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external;
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"},{"internalType":"uint256","name":"_startToken","type":"uint256"},{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForDestinationLzReceive","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"onLzReceive","outputs":[],"stateMutability":"nonpayable","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":"publicSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","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":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMintPerWallet","type":"uint256"}],"name":"setMaxMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTime","type":"uint256"}],"name":"setPublicSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedSource","type":"bytes"}],"name":"setTrustedSource","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedSourceLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405262055730600b556000600e556002600f553480156200002257600080fd5b506040516200362b3803806200362b83398101604081905262000045916200028f565b604080518082018252600881526713db5b9a509a5c9960c21b60208083019182528351808501909452600584526413d092549160da1b9084015281519192916200009291600091620001cc565b508051620000a8906001906020840190620001cc565b505050620000c5620000bf620000fe60201b60201c565b62000102565b620000d08462000154565b600780546001600160a01b0319166001600160a01b039490941693909317909255600c55600d5550620003dd565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001b35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001c890600a906020840190620001cc565b5050565b828054620001da906200038a565b90600052602060002090601f016020900481019282620001fe576000855562000249565b82601f106200021957805160ff191683800117855562000249565b8280016001018555821562000249579182015b82811115620002495782518255916020019190600101906200022c565b50620002579291506200025b565b5090565b5b808211156200025757600081556001016200025c565b80516001600160a01b03811681146200028a57600080fd5b919050565b60008060008060808587031215620002a5578384fd5b84516001600160401b0380821115620002bc578586fd5b818701915087601f830112620002d0578586fd5b815181811115620002e557620002e5620003c7565b604051601f8201601f19908116603f01168101908382118183101715620003105762000310620003c7565b81604052828152602093508a848487010111156200032c578889fd5b8891505b828210156200034f578482018401518183018501529083019062000330565b828211156200036057888484830101525b97506200037291505087820162000272565b60408801516060909801519699909850945050505050565b600181811c908216806200039f57607f821691505b60208210811415620003c157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61323e80620003ed6000396000f3fe6080604052600436106102505760003560e01c8063715018a611610139578063b228d925116100b6578063d1deba1f1161007a578063d1deba1f14610707578063d547cfb71461071a578063d73f057e1461072f578063e985e9c51461074f578063f2fde38b14610798578063f3234f40146107b857600080fd5b8063b228d9251461067e578063b88d4fde14610694578063c87b56dd146106b4578063cbed8b9c146106d4578063cf89fa03146106f457600080fd5b80638ee74912116100fd5780638ee749121461059e578063943fb8721461060957806395d89b4114610629578063a22cb4651461063e578063afdf61341461065e57600080fd5b8063715018a61461051f5780637501f7411461053457806375794a3c1461054a57806381c986ee146105605780638da5cb5b1461058057600080fd5b80633497d165116101d25780635e280f11116101965780635e280f11146104765780636352211e146104965780636bb7b1d9146104b65780636d5d40c6146104cc5780636ecd2306146104ec57806370a08231146104ff57600080fd5b80633497d165146103e15780633ccfd60b1461040157806342842e0e1461041657806342d65a8d1461043657806355f804b31461045657600080fd5b8063095ea7b311610219578063095ea7b31461032657806310ddb137146103465780631c37a822146103665780631e7269c51461038657806323b872dd146103c157600080fd5b80621d35671461025557806301ffc9a71461027757806306fdde03146102ac57806307e0db17146102ce578063081812fc146102ee575b600080fd5b34801561026157600080fd5b50610275610270366004612b27565b6107ce565b005b34801561028357600080fd5b50610297610292366004612964565b6109c8565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610a1a565b6040516102a39190612dca565b3480156102da57600080fd5b506102756102e93660046129e1565b610aac565b3480156102fa57600080fd5b5061030e610309366004612c12565b610b3b565b6040516001600160a01b0390911681526020016102a3565b34801561033257600080fd5b50610275610341366004612939565b610bd0565b34801561035257600080fd5b506102756103613660046129e1565b610ce6565b34801561037257600080fd5b50610275610381366004612b27565b610d44565b34801561039257600080fd5b506103b36103a13660046127de565b60106020526000908152604090205481565b6040519081526020016102a3565b3480156103cd57600080fd5b506102756103dc36600461285f565b610db3565b3480156103ed57600080fd5b506102756103fc366004612c4d565b610de4565b34801561040d57600080fd5b50610275610ea7565b34801561042257600080fd5b5061027561043136600461285f565b610edf565b34801561044257600080fd5b506102756104513660046129fb565b610efa565b34801561046257600080fd5b5061027561047136600461299c565b610f8f565b34801561048257600080fd5b5060075461030e906001600160a01b031681565b3480156104a257600080fd5b5061030e6104b1366004612c12565b610fcc565b3480156104c257600080fd5b506103b3600e5481565b3480156104d857600080fd5b506102756104e7366004612c12565b611043565b6102756104fa366004612c4d565b611072565b34801561050b57600080fd5b506103b361051a3660046127de565b611285565b34801561052b57600080fd5b5061027561130c565b34801561054057600080fd5b506103b3600d5481565b34801561055657600080fd5b506103b3600c5481565b34801561056c57600080fd5b506102c161057b3660046129e1565b611342565b34801561058c57600080fd5b506006546001600160a01b031661030e565b3480156105aa57600080fd5b506105f46105b9366004612a4b565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b604080519283526020830191909152016102a3565b34801561061557600080fd5b50610275610624366004612c12565b6113dc565b34801561063557600080fd5b506102c161140b565b34801561064a57600080fd5b50610275610659366004612908565b61141a565b34801561066a57600080fd5b50610275610679366004612c12565b611425565b34801561068a57600080fd5b506103b3600f5481565b3480156106a057600080fd5b506102756106af36600461289f565b611454565b3480156106c057600080fd5b506102c16106cf366004612c12565b611486565b3480156106e057600080fd5b506102756106ef366004612b9c565b611561565b610275610702366004612bf7565b6115fc565b610275610715366004612a9f565b6118c0565b34801561072657600080fd5b506102c1611a4d565b34801561073b57600080fd5b5061027561074a3660046129fb565b611a5a565b34801561075b57600080fd5b5061029761076a366004612827565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a457600080fd5b506102756107b33660046127de565b611b37565b3480156107c457600080fd5b506103b3600b5481565b6007546001600160a01b031633146107e557600080fd5b61ffff84166000908152600960205260409020805461080390613131565b90508351148015610842575061ffff84166000908152600960205260409081902090516108309190612cef565b60405180910390208380519060200120145b6108b05760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a822906108d9908790879087908790600401612f6f565b600060405180830381600087803b1580156108f357600080fd5b505af1925050508015610904575060015b6109c2576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff1681526020019081526020016000208460405161094e9190612cd3565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906109b9908690869086908690612f6f565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b14806109f957506001600160e01b03198216635b5e139f60e01b145b80610a1457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610a2990613131565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5590613131565b8015610aa25780601f10610a7757610100808354040283529160200191610aa2565b820191906000526020600020905b815481529060010190602001808311610a8557829003601f168201915b5050505050905090565b6006546001600160a01b03163314610ad65760405162461bcd60e51b81526004016108a790612e2f565b6007546040516307e0db1760e01b815261ffff831660048201526001600160a01b03909116906307e0db17906024015b600060405180830381600087803b158015610b2057600080fd5b505af1158015610b34573d6000803e3d6000fd5b5050505050565b6000818152600260205260408120546001600160a01b0316610bb45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108a7565b506000908152600460205260409020546001600160a01b031690565b6000610bdb82610fcc565b9050806001600160a01b0316836001600160a01b03161415610c495760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108a7565b336001600160a01b0382161480610c655750610c65813361076a565b610cd75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108a7565b610ce18383611bcf565b505050565b6006546001600160a01b03163314610d105760405162461bcd60e51b81526004016108a790612e2f565b6007546040516310ddb13760e01b815261ffff831660048201526001600160a01b03909116906310ddb13790602401610b06565b333014610da75760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b60648201526084016108a7565b6109c284848484611c3d565b610dbd3382611c6a565b610dd95760405162461bcd60e51b81526004016108a790612e64565b610ce1838383611d61565b6006546001600160a01b03163314610e0e5760405162461bcd60e51b81526004016108a790612e2f565b600d548160ff16600c54610e2291906130c2565b1115610e665760405162461bcd60e51b81526020600482015260136024820152724d696e74206578636565647320737570706c7960681b60448201526064016108a7565b60005b8160ff16811015610ea357610e9133600c60008154610e879061316c565b9182905550611efd565b80610e9b8161316c565b915050610e69565b5050565b6006546001600160a01b03163314610ed15760405162461bcd60e51b81526004016108a790612e2f565b47610edc3382611f17565b50565b610ce183838360405180602001604052806000815250611454565b6006546001600160a01b03163314610f245760405162461bcd60e51b81526004016108a790612e2f565b6007546040516342d65a8d60e01b81526001600160a01b03909116906342d65a8d90610f5890869086908690600401612f09565b600060405180830381600087803b158015610f7257600080fd5b505af1158015610f86573d6000803e3d6000fd5b50505050505050565b6006546001600160a01b03163314610fb95760405162461bcd60e51b81526004016108a790612e2f565b8051610ea390600a9060208401906125c9565b6000818152600260205260408120546001600160a01b031680610a145760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108a7565b6006546001600160a01b0316331461106d5760405162461bcd60e51b81526004016108a790612e2f565b600e55565b3332146110b85760405162461bcd60e51b8152602060048201526014602482015273155cd95c881dd85b1b195d081c995c5d5a5c995960621b60448201526064016108a7565b600e54158015906110cb575042600e5411155b61110e5760405162461bcd60e51b81526020600482015260146024820152731cd85b195cc81a5cc81b9bdd081cdd185c9d195960621b60448201526064016108a7565b60028160ff1611156111625760405162461bcd60e51b815260206004820152601a60248201527f4d61782032204e46547320706572207472616e73616374696f6e00000000000060448201526064016108a7565b600f54336000908152601060205260409020546111839060ff8416906130c2565b11156111d15760405162461bcd60e51b815260206004820152601860248201527f6c696d6974207065722077616c6c65742072656163686564000000000000000060448201526064016108a7565b600d548160ff16600c546111e591906130c2565b11156112295760405162461bcd60e51b81526020600482015260136024820152724d696e74206578636565647320737570706c7960681b60448201526064016108a7565b61123c33600c60008154610e879061316c565b8060ff166002141561125b5761125b33600c60008154610e879061316c565b336000908152601060205260408120805460ff8416929061127d9084906130c2565b909155505050565b60006001600160a01b0382166112f05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108a7565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146113365760405162461bcd60e51b81526004016108a790612e2f565b6113406000612030565b565b6009602052600090815260409020805461135b90613131565b80601f016020809104026020016040519081016040528092919081815260200182805461138790613131565b80156113d45780601f106113a9576101008083540402835291602001916113d4565b820191906000526020600020905b8154815290600101906020018083116113b757829003601f168201915b505050505081565b6006546001600160a01b031633146114065760405162461bcd60e51b81526004016108a790612e2f565b600b55565b606060018054610a2990613131565b610ea3338383612082565b6006546001600160a01b0316331461144f5760405162461bcd60e51b81526004016108a790612e2f565b600f55565b61145e3383611c6a565b61147a5760405162461bcd60e51b81526004016108a790612e64565b6109c284848484612151565b6000818152600260205260409020546060906001600160a01b03166115055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a7565b600061150f612184565b9050600081511161152f576040518060200160405280600081525061155a565b8061153984612193565b60405160200161154a929190612d5e565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461158b5760405162461bcd60e51b81526004016108a790612e2f565b6007546040516332fb62e760e21b81526001600160a01b039091169063cbed8b9c906115c39088908890889088908890600401613094565b600060405180830381600087803b1580156115dd57600080fd5b505af11580156115f1573d6000803e3d6000fd5b505050505050505050565b61160581610fcc565b6001600160a01b0316336001600160a01b0316146116735760405162461bcd60e51b815260206004820152602560248201527f4d6573736167652073656e646572206d757374206f776e20746865204f6d6e696044820152642134b9321760d91b60648201526084016108a7565b61ffff82166000908152600960205260409020805461169190613131565b151590506116f45760405162461bcd60e51b815260206004820152602a60248201527f5468697320636861696e206973206e6f742061207472757374656420736f757260448201526931b29039b7bab931b29760b11b60648201526084016108a7565b6116fd816122ac565b60408051336020820152808201839052815180820383018152606082018352600b54600160f01b608084015260828084018290528451808503909101815260a284019485905260075463040a7bb160e41b90955291936001939192916000916001600160a01b0316906340a7bb1090611782908a9030908a908790899060a601612eb5565b604080518083038186803b15801561179957600080fd5b505afa1580156117ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d19190612c2a565b5090508034101561183a5760405162461bcd60e51b815260206004820152602d60248201527f4e6f7420656e6f7567682067617320746f20636f7665722063726f737320636860448201526c30b4b7103a3930b739b332b91760991b60648201526084016108a7565b60075461ffff8816600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c5803100923492611885928d928c913391908b90600401612fb8565b6000604051808303818588803b15801561189e57600080fd5b505af11580156118b2573d6000803e3d6000fd5b505050505050505050505050565b61ffff851660009081526008602052604080822090516118e1908790612cd3565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506119685760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b60648201526084016108a7565b805482148015611992575080600101548383604051611988929190612cc3565b6040518091039020145b6119de5760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f616400000000000060448201526064016108a7565b60008082556001820155604051630e1bd41160e11b81523090631c37a82290611a139089908990899089908990600401612f30565b600060405180830381600087803b158015611a2d57600080fd5b505af1158015611a41573d6000803e3d6000fd5b50505050505050505050565b600a805461135b90613131565b6006546001600160a01b03163314611a845760405162461bcd60e51b81526004016108a790612e2f565b61ffff831660009081526009602052604090208054611aa290613131565b159050611b19576040805162461bcd60e51b81526020600482015260248101919091527f546865207472757374656420736f75726365206164647265737320686173206160448201527f6c7265616479206265656e2073657420666f722074686520636861696e49642160648201526084016108a7565b61ffff831660009081526009602052604090206109c290838361264d565b6006546001600160a01b03163314611b615760405162461bcd60e51b81526004016108a790612e2f565b6001600160a01b038116611bc65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a7565b610edc81612030565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c0482610fcc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611c5491906127fa565b91509150611c628282611efd565b505050505050565b6000818152600260205260408120546001600160a01b0316611ce35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108a7565b6000611cee83610fcc565b9050806001600160a01b0316846001600160a01b03161480611d295750836001600160a01b0316611d1e84610b3b565b6001600160a01b0316145b80611d5957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d7482610fcc565b6001600160a01b031614611dd85760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108a7565b6001600160a01b038216611e3a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108a7565b611e45600082611bcf565b6001600160a01b0383166000908152600360205260408120805460019290611e6e9084906130ee565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e9c9084906130c2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ea3828260405180602001604052806000815250612347565b80471015611f675760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108a7565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611fb4576040519150601f19603f3d011682016040523d82523d6000602084013e611fb9565b606091505b5050905080610ce15760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108a7565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120e45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108a7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61215c848484611d61565b6121688484848461237a565b6109c25760405162461bcd60e51b81526004016108a790612ddd565b6060600a8054610a2990613131565b6060816121b75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121e157806121cb8161316c565b91506121da9050600a836130da565b91506121bb565b6000816001600160401b0381111561220957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612233576020820181803683370190505b5090505b8415611d59576122486001836130ee565b9150612255600a86613187565b6122609060306130c2565b60f81b81838151811061228357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506122a5600a866130da565b9450612237565b60006122b782610fcc565b90506122c4600083611bcf565b6001600160a01b03811660009081526003602052604081208054600192906122ed9084906130ee565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6123518383612487565b61235e600084848461237a565b610ce15760405162461bcd60e51b81526004016108a790612ddd565b60006001600160a01b0384163b1561247c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123be903390899088908890600401612d8d565b602060405180830381600087803b1580156123d857600080fd5b505af1925050508015612408575060408051601f3d908101601f1916820190925261240591810190612980565b60015b612462573d808015612436576040519150601f19603f3d011682016040523d82523d6000602084013e61243b565b606091505b50805161245a5760405162461bcd60e51b81526004016108a790612ddd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d59565b506001949350505050565b6001600160a01b0382166124dd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108a7565b6000818152600260205260409020546001600160a01b0316156125425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108a7565b6001600160a01b038216600090815260036020526040812080546001929061256b9084906130c2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546125d590613131565b90600052602060002090601f0160209004810192826125f7576000855561263d565b82601f1061261057805160ff191683800117855561263d565b8280016001018555821561263d579182015b8281111561263d578251825591602001919060010190612622565b506126499291506126c1565b5090565b82805461265990613131565b90600052602060002090601f01602090048101928261267b576000855561263d565b82601f106126945782800160ff1982351617855561263d565b8280016001018555821561263d579182015b8281111561263d5782358255916020019190600101906126a6565b5b8082111561264957600081556001016126c2565b60006001600160401b03808411156126f0576126f06131c7565b604051601f8501601f19908116603f01168101908282118183101715612718576127186131c7565b8160405280935085815286868601111561273157600080fd5b858560208301376000602087830101525050509392505050565b60008083601f84011261275c578182fd5b5081356001600160401b03811115612772578182fd5b60208301915083602082850101111561278a57600080fd5b9250929050565b600082601f8301126127a1578081fd5b61155a838335602085016126d6565b803561ffff811681146127c257600080fd5b919050565b80356001600160401b03811681146127c257600080fd5b6000602082840312156127ef578081fd5b813561155a816131dd565b6000806040838503121561280c578081fd5b8251612817816131dd565b6020939093015192949293505050565b60008060408385031215612839578182fd5b8235612844816131dd565b91506020830135612854816131dd565b809150509250929050565b600080600060608486031215612873578081fd5b833561287e816131dd565b9250602084013561288e816131dd565b929592945050506040919091013590565b600080600080608085870312156128b4578081fd5b84356128bf816131dd565b935060208501356128cf816131dd565b92506040850135915060608501356001600160401b038111156128f0578182fd5b6128fc87828801612791565b91505092959194509250565b6000806040838503121561291a578182fd5b8235612925816131dd565b915060208301358015158114612854578182fd5b6000806040838503121561294b578182fd5b8235612956816131dd565b946020939093013593505050565b600060208284031215612975578081fd5b813561155a816131f2565b600060208284031215612991578081fd5b815161155a816131f2565b6000602082840312156129ad578081fd5b81356001600160401b038111156129c2578182fd5b8201601f810184136129d2578182fd5b611d59848235602084016126d6565b6000602082840312156129f2578081fd5b61155a826127b0565b600080600060408486031215612a0f578081fd5b612a18846127b0565b925060208401356001600160401b03811115612a32578182fd5b612a3e8682870161274b565b9497909650939450505050565b600080600060608486031215612a5f578081fd5b612a68846127b0565b925060208401356001600160401b03811115612a82578182fd5b612a8e86828701612791565b925050604084013590509250925092565b600080600080600060808688031215612ab6578283fd5b612abf866127b0565b945060208601356001600160401b0380821115612ada578485fd5b612ae689838a01612791565b9550612af4604089016127c7565b94506060880135915080821115612b09578283fd5b50612b168882890161274b565b969995985093965092949392505050565b60008060008060808587031215612b3c578182fd5b612b45856127b0565b935060208501356001600160401b0380821115612b60578384fd5b612b6c88838901612791565b9450612b7a604088016127c7565b93506060870135915080821115612b8f578283fd5b506128fc87828801612791565b600080600080600060808688031215612bb3578283fd5b612bbc866127b0565b9450612bca602087016127b0565b93506040860135925060608601356001600160401b03811115612beb578182fd5b612b168882890161274b565b60008060408385031215612c09578182fd5b612956836127b0565b600060208284031215612c23578081fd5b5035919050565b60008060408385031215612c3c578182fd5b505080516020909101519092909150565b600060208284031215612c5e578081fd5b813560ff8116811461155a578182fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60008151808452612caf816020860160208601613105565b601f01601f19169290920160200192915050565b8183823760009101908152919050565b60008251612ce5818460208701613105565b9190910192915050565b6000808354612cfd81613131565b60018281168015612d155760018114612d2657612d52565b60ff19841687528287019450612d52565b8786526020808720875b85811015612d495781548a820152908401908201612d30565b50505082870194505b50929695505050505050565b60008351612d70818460208801613105565b835190830190612d84818360208801613105565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612dc090830184612c97565b9695505050505050565b60208152600061155a6020830184612c97565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff861681526001600160a01b038516602082015260a060408201819052600090612ee390830186612c97565b84151560608401528281036080840152612efd8185612c97565b98975050505050505050565b61ffff84168152604060208201526000612f27604083018486612c6e565b95945050505050565b61ffff86168152608060208201526000612f4d6080830187612c97565b6001600160401b03861660408401528281036060840152612efd818587612c6e565b61ffff85168152608060208201526000612f8c6080830186612c97565b6001600160401b03851660408401528281036060840152612fad8185612c97565b979650505050505050565b61ffff871681526000602060c081840152818854612fd581613131565b8060c087015260e0600180841660008114612ff7576001811461300c57613037565b60ff1985168984015261010089019550613037565b8d8852868820885b8581101561302f5781548b8201860152908301908801613014565b8a0184019650505b5050505050838103604085015261304e8189612c97565b91505061306660608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a08401526130878185612c97565b9998505050505050505050565b600061ffff808816835280871660208401525084604083015260806060830152612fad608083018486612c6e565b600082198211156130d5576130d561319b565b500190565b6000826130e9576130e96131b1565b500490565b6000828210156131005761310061319b565b500390565b60005b83811015613120578181015183820152602001613108565b838111156109c25750506000910152565b600181811c9082168061314557607f821691505b6020821081141561316657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131805761318061319b565b5060010190565b600082613196576131966131b1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610edc57600080fd5b6001600160e01b031981168114610edc57600080fdfea26469706673582212208079afa51bc64840dbcd2fd1e7f6a25707861271b9ff52ad3e17408ef9db27ae64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f6d656469612e6f6d6e69626972646e66742e78797a2f756e72657665616c65642f6d657461646174612f0000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102505760003560e01c8063715018a611610139578063b228d925116100b6578063d1deba1f1161007a578063d1deba1f14610707578063d547cfb71461071a578063d73f057e1461072f578063e985e9c51461074f578063f2fde38b14610798578063f3234f40146107b857600080fd5b8063b228d9251461067e578063b88d4fde14610694578063c87b56dd146106b4578063cbed8b9c146106d4578063cf89fa03146106f457600080fd5b80638ee74912116100fd5780638ee749121461059e578063943fb8721461060957806395d89b4114610629578063a22cb4651461063e578063afdf61341461065e57600080fd5b8063715018a61461051f5780637501f7411461053457806375794a3c1461054a57806381c986ee146105605780638da5cb5b1461058057600080fd5b80633497d165116101d25780635e280f11116101965780635e280f11146104765780636352211e146104965780636bb7b1d9146104b65780636d5d40c6146104cc5780636ecd2306146104ec57806370a08231146104ff57600080fd5b80633497d165146103e15780633ccfd60b1461040157806342842e0e1461041657806342d65a8d1461043657806355f804b31461045657600080fd5b8063095ea7b311610219578063095ea7b31461032657806310ddb137146103465780631c37a822146103665780631e7269c51461038657806323b872dd146103c157600080fd5b80621d35671461025557806301ffc9a71461027757806306fdde03146102ac57806307e0db17146102ce578063081812fc146102ee575b600080fd5b34801561026157600080fd5b50610275610270366004612b27565b6107ce565b005b34801561028357600080fd5b50610297610292366004612964565b6109c8565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610a1a565b6040516102a39190612dca565b3480156102da57600080fd5b506102756102e93660046129e1565b610aac565b3480156102fa57600080fd5b5061030e610309366004612c12565b610b3b565b6040516001600160a01b0390911681526020016102a3565b34801561033257600080fd5b50610275610341366004612939565b610bd0565b34801561035257600080fd5b506102756103613660046129e1565b610ce6565b34801561037257600080fd5b50610275610381366004612b27565b610d44565b34801561039257600080fd5b506103b36103a13660046127de565b60106020526000908152604090205481565b6040519081526020016102a3565b3480156103cd57600080fd5b506102756103dc36600461285f565b610db3565b3480156103ed57600080fd5b506102756103fc366004612c4d565b610de4565b34801561040d57600080fd5b50610275610ea7565b34801561042257600080fd5b5061027561043136600461285f565b610edf565b34801561044257600080fd5b506102756104513660046129fb565b610efa565b34801561046257600080fd5b5061027561047136600461299c565b610f8f565b34801561048257600080fd5b5060075461030e906001600160a01b031681565b3480156104a257600080fd5b5061030e6104b1366004612c12565b610fcc565b3480156104c257600080fd5b506103b3600e5481565b3480156104d857600080fd5b506102756104e7366004612c12565b611043565b6102756104fa366004612c4d565b611072565b34801561050b57600080fd5b506103b361051a3660046127de565b611285565b34801561052b57600080fd5b5061027561130c565b34801561054057600080fd5b506103b3600d5481565b34801561055657600080fd5b506103b3600c5481565b34801561056c57600080fd5b506102c161057b3660046129e1565b611342565b34801561058c57600080fd5b506006546001600160a01b031661030e565b3480156105aa57600080fd5b506105f46105b9366004612a4b565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b604080519283526020830191909152016102a3565b34801561061557600080fd5b50610275610624366004612c12565b6113dc565b34801561063557600080fd5b506102c161140b565b34801561064a57600080fd5b50610275610659366004612908565b61141a565b34801561066a57600080fd5b50610275610679366004612c12565b611425565b34801561068a57600080fd5b506103b3600f5481565b3480156106a057600080fd5b506102756106af36600461289f565b611454565b3480156106c057600080fd5b506102c16106cf366004612c12565b611486565b3480156106e057600080fd5b506102756106ef366004612b9c565b611561565b610275610702366004612bf7565b6115fc565b610275610715366004612a9f565b6118c0565b34801561072657600080fd5b506102c1611a4d565b34801561073b57600080fd5b5061027561074a3660046129fb565b611a5a565b34801561075b57600080fd5b5061029761076a366004612827565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a457600080fd5b506102756107b33660046127de565b611b37565b3480156107c457600080fd5b506103b3600b5481565b6007546001600160a01b031633146107e557600080fd5b61ffff84166000908152600960205260409020805461080390613131565b90508351148015610842575061ffff84166000908152600960205260409081902090516108309190612cef565b60405180910390208380519060200120145b6108b05760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a822906108d9908790879087908790600401612f6f565b600060405180830381600087803b1580156108f357600080fd5b505af1925050508015610904575060015b6109c2576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff1681526020019081526020016000208460405161094e9190612cd3565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906109b9908690869086908690612f6f565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b14806109f957506001600160e01b03198216635b5e139f60e01b145b80610a1457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610a2990613131565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5590613131565b8015610aa25780601f10610a7757610100808354040283529160200191610aa2565b820191906000526020600020905b815481529060010190602001808311610a8557829003601f168201915b5050505050905090565b6006546001600160a01b03163314610ad65760405162461bcd60e51b81526004016108a790612e2f565b6007546040516307e0db1760e01b815261ffff831660048201526001600160a01b03909116906307e0db17906024015b600060405180830381600087803b158015610b2057600080fd5b505af1158015610b34573d6000803e3d6000fd5b5050505050565b6000818152600260205260408120546001600160a01b0316610bb45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108a7565b506000908152600460205260409020546001600160a01b031690565b6000610bdb82610fcc565b9050806001600160a01b0316836001600160a01b03161415610c495760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108a7565b336001600160a01b0382161480610c655750610c65813361076a565b610cd75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108a7565b610ce18383611bcf565b505050565b6006546001600160a01b03163314610d105760405162461bcd60e51b81526004016108a790612e2f565b6007546040516310ddb13760e01b815261ffff831660048201526001600160a01b03909116906310ddb13790602401610b06565b333014610da75760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b60648201526084016108a7565b6109c284848484611c3d565b610dbd3382611c6a565b610dd95760405162461bcd60e51b81526004016108a790612e64565b610ce1838383611d61565b6006546001600160a01b03163314610e0e5760405162461bcd60e51b81526004016108a790612e2f565b600d548160ff16600c54610e2291906130c2565b1115610e665760405162461bcd60e51b81526020600482015260136024820152724d696e74206578636565647320737570706c7960681b60448201526064016108a7565b60005b8160ff16811015610ea357610e9133600c60008154610e879061316c565b9182905550611efd565b80610e9b8161316c565b915050610e69565b5050565b6006546001600160a01b03163314610ed15760405162461bcd60e51b81526004016108a790612e2f565b47610edc3382611f17565b50565b610ce183838360405180602001604052806000815250611454565b6006546001600160a01b03163314610f245760405162461bcd60e51b81526004016108a790612e2f565b6007546040516342d65a8d60e01b81526001600160a01b03909116906342d65a8d90610f5890869086908690600401612f09565b600060405180830381600087803b158015610f7257600080fd5b505af1158015610f86573d6000803e3d6000fd5b50505050505050565b6006546001600160a01b03163314610fb95760405162461bcd60e51b81526004016108a790612e2f565b8051610ea390600a9060208401906125c9565b6000818152600260205260408120546001600160a01b031680610a145760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108a7565b6006546001600160a01b0316331461106d5760405162461bcd60e51b81526004016108a790612e2f565b600e55565b3332146110b85760405162461bcd60e51b8152602060048201526014602482015273155cd95c881dd85b1b195d081c995c5d5a5c995960621b60448201526064016108a7565b600e54158015906110cb575042600e5411155b61110e5760405162461bcd60e51b81526020600482015260146024820152731cd85b195cc81a5cc81b9bdd081cdd185c9d195960621b60448201526064016108a7565b60028160ff1611156111625760405162461bcd60e51b815260206004820152601a60248201527f4d61782032204e46547320706572207472616e73616374696f6e00000000000060448201526064016108a7565b600f54336000908152601060205260409020546111839060ff8416906130c2565b11156111d15760405162461bcd60e51b815260206004820152601860248201527f6c696d6974207065722077616c6c65742072656163686564000000000000000060448201526064016108a7565b600d548160ff16600c546111e591906130c2565b11156112295760405162461bcd60e51b81526020600482015260136024820152724d696e74206578636565647320737570706c7960681b60448201526064016108a7565b61123c33600c60008154610e879061316c565b8060ff166002141561125b5761125b33600c60008154610e879061316c565b336000908152601060205260408120805460ff8416929061127d9084906130c2565b909155505050565b60006001600160a01b0382166112f05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108a7565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146113365760405162461bcd60e51b81526004016108a790612e2f565b6113406000612030565b565b6009602052600090815260409020805461135b90613131565b80601f016020809104026020016040519081016040528092919081815260200182805461138790613131565b80156113d45780601f106113a9576101008083540402835291602001916113d4565b820191906000526020600020905b8154815290600101906020018083116113b757829003601f168201915b505050505081565b6006546001600160a01b031633146114065760405162461bcd60e51b81526004016108a790612e2f565b600b55565b606060018054610a2990613131565b610ea3338383612082565b6006546001600160a01b0316331461144f5760405162461bcd60e51b81526004016108a790612e2f565b600f55565b61145e3383611c6a565b61147a5760405162461bcd60e51b81526004016108a790612e64565b6109c284848484612151565b6000818152600260205260409020546060906001600160a01b03166115055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a7565b600061150f612184565b9050600081511161152f576040518060200160405280600081525061155a565b8061153984612193565b60405160200161154a929190612d5e565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461158b5760405162461bcd60e51b81526004016108a790612e2f565b6007546040516332fb62e760e21b81526001600160a01b039091169063cbed8b9c906115c39088908890889088908890600401613094565b600060405180830381600087803b1580156115dd57600080fd5b505af11580156115f1573d6000803e3d6000fd5b505050505050505050565b61160581610fcc565b6001600160a01b0316336001600160a01b0316146116735760405162461bcd60e51b815260206004820152602560248201527f4d6573736167652073656e646572206d757374206f776e20746865204f6d6e696044820152642134b9321760d91b60648201526084016108a7565b61ffff82166000908152600960205260409020805461169190613131565b151590506116f45760405162461bcd60e51b815260206004820152602a60248201527f5468697320636861696e206973206e6f742061207472757374656420736f757260448201526931b29039b7bab931b29760b11b60648201526084016108a7565b6116fd816122ac565b60408051336020820152808201839052815180820383018152606082018352600b54600160f01b608084015260828084018290528451808503909101815260a284019485905260075463040a7bb160e41b90955291936001939192916000916001600160a01b0316906340a7bb1090611782908a9030908a908790899060a601612eb5565b604080518083038186803b15801561179957600080fd5b505afa1580156117ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d19190612c2a565b5090508034101561183a5760405162461bcd60e51b815260206004820152602d60248201527f4e6f7420656e6f7567682067617320746f20636f7665722063726f737320636860448201526c30b4b7103a3930b739b332b91760991b60648201526084016108a7565b60075461ffff8816600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c5803100923492611885928d928c913391908b90600401612fb8565b6000604051808303818588803b15801561189e57600080fd5b505af11580156118b2573d6000803e3d6000fd5b505050505050505050505050565b61ffff851660009081526008602052604080822090516118e1908790612cd3565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506119685760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b60648201526084016108a7565b805482148015611992575080600101548383604051611988929190612cc3565b6040518091039020145b6119de5760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f616400000000000060448201526064016108a7565b60008082556001820155604051630e1bd41160e11b81523090631c37a82290611a139089908990899089908990600401612f30565b600060405180830381600087803b158015611a2d57600080fd5b505af1158015611a41573d6000803e3d6000fd5b50505050505050505050565b600a805461135b90613131565b6006546001600160a01b03163314611a845760405162461bcd60e51b81526004016108a790612e2f565b61ffff831660009081526009602052604090208054611aa290613131565b159050611b19576040805162461bcd60e51b81526020600482015260248101919091527f546865207472757374656420736f75726365206164647265737320686173206160448201527f6c7265616479206265656e2073657420666f722074686520636861696e49642160648201526084016108a7565b61ffff831660009081526009602052604090206109c290838361264d565b6006546001600160a01b03163314611b615760405162461bcd60e51b81526004016108a790612e2f565b6001600160a01b038116611bc65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a7565b610edc81612030565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c0482610fcc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611c5491906127fa565b91509150611c628282611efd565b505050505050565b6000818152600260205260408120546001600160a01b0316611ce35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108a7565b6000611cee83610fcc565b9050806001600160a01b0316846001600160a01b03161480611d295750836001600160a01b0316611d1e84610b3b565b6001600160a01b0316145b80611d5957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d7482610fcc565b6001600160a01b031614611dd85760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108a7565b6001600160a01b038216611e3a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108a7565b611e45600082611bcf565b6001600160a01b0383166000908152600360205260408120805460019290611e6e9084906130ee565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e9c9084906130c2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ea3828260405180602001604052806000815250612347565b80471015611f675760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108a7565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611fb4576040519150601f19603f3d011682016040523d82523d6000602084013e611fb9565b606091505b5050905080610ce15760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108a7565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120e45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108a7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61215c848484611d61565b6121688484848461237a565b6109c25760405162461bcd60e51b81526004016108a790612ddd565b6060600a8054610a2990613131565b6060816121b75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121e157806121cb8161316c565b91506121da9050600a836130da565b91506121bb565b6000816001600160401b0381111561220957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612233576020820181803683370190505b5090505b8415611d59576122486001836130ee565b9150612255600a86613187565b6122609060306130c2565b60f81b81838151811061228357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506122a5600a866130da565b9450612237565b60006122b782610fcc565b90506122c4600083611bcf565b6001600160a01b03811660009081526003602052604081208054600192906122ed9084906130ee565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6123518383612487565b61235e600084848461237a565b610ce15760405162461bcd60e51b81526004016108a790612ddd565b60006001600160a01b0384163b1561247c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123be903390899088908890600401612d8d565b602060405180830381600087803b1580156123d857600080fd5b505af1925050508015612408575060408051601f3d908101601f1916820190925261240591810190612980565b60015b612462573d808015612436576040519150601f19603f3d011682016040523d82523d6000602084013e61243b565b606091505b50805161245a5760405162461bcd60e51b81526004016108a790612ddd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d59565b506001949350505050565b6001600160a01b0382166124dd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108a7565b6000818152600260205260409020546001600160a01b0316156125425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108a7565b6001600160a01b038216600090815260036020526040812080546001929061256b9084906130c2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546125d590613131565b90600052602060002090601f0160209004810192826125f7576000855561263d565b82601f1061261057805160ff191683800117855561263d565b8280016001018555821561263d579182015b8281111561263d578251825591602001919060010190612622565b506126499291506126c1565b5090565b82805461265990613131565b90600052602060002090601f01602090048101928261267b576000855561263d565b82601f106126945782800160ff1982351617855561263d565b8280016001018555821561263d579182015b8281111561263d5782358255916020019190600101906126a6565b5b8082111561264957600081556001016126c2565b60006001600160401b03808411156126f0576126f06131c7565b604051601f8501601f19908116603f01168101908282118183101715612718576127186131c7565b8160405280935085815286868601111561273157600080fd5b858560208301376000602087830101525050509392505050565b60008083601f84011261275c578182fd5b5081356001600160401b03811115612772578182fd5b60208301915083602082850101111561278a57600080fd5b9250929050565b600082601f8301126127a1578081fd5b61155a838335602085016126d6565b803561ffff811681146127c257600080fd5b919050565b80356001600160401b03811681146127c257600080fd5b6000602082840312156127ef578081fd5b813561155a816131dd565b6000806040838503121561280c578081fd5b8251612817816131dd565b6020939093015192949293505050565b60008060408385031215612839578182fd5b8235612844816131dd565b91506020830135612854816131dd565b809150509250929050565b600080600060608486031215612873578081fd5b833561287e816131dd565b9250602084013561288e816131dd565b929592945050506040919091013590565b600080600080608085870312156128b4578081fd5b84356128bf816131dd565b935060208501356128cf816131dd565b92506040850135915060608501356001600160401b038111156128f0578182fd5b6128fc87828801612791565b91505092959194509250565b6000806040838503121561291a578182fd5b8235612925816131dd565b915060208301358015158114612854578182fd5b6000806040838503121561294b578182fd5b8235612956816131dd565b946020939093013593505050565b600060208284031215612975578081fd5b813561155a816131f2565b600060208284031215612991578081fd5b815161155a816131f2565b6000602082840312156129ad578081fd5b81356001600160401b038111156129c2578182fd5b8201601f810184136129d2578182fd5b611d59848235602084016126d6565b6000602082840312156129f2578081fd5b61155a826127b0565b600080600060408486031215612a0f578081fd5b612a18846127b0565b925060208401356001600160401b03811115612a32578182fd5b612a3e8682870161274b565b9497909650939450505050565b600080600060608486031215612a5f578081fd5b612a68846127b0565b925060208401356001600160401b03811115612a82578182fd5b612a8e86828701612791565b925050604084013590509250925092565b600080600080600060808688031215612ab6578283fd5b612abf866127b0565b945060208601356001600160401b0380821115612ada578485fd5b612ae689838a01612791565b9550612af4604089016127c7565b94506060880135915080821115612b09578283fd5b50612b168882890161274b565b969995985093965092949392505050565b60008060008060808587031215612b3c578182fd5b612b45856127b0565b935060208501356001600160401b0380821115612b60578384fd5b612b6c88838901612791565b9450612b7a604088016127c7565b93506060870135915080821115612b8f578283fd5b506128fc87828801612791565b600080600080600060808688031215612bb3578283fd5b612bbc866127b0565b9450612bca602087016127b0565b93506040860135925060608601356001600160401b03811115612beb578182fd5b612b168882890161274b565b60008060408385031215612c09578182fd5b612956836127b0565b600060208284031215612c23578081fd5b5035919050565b60008060408385031215612c3c578182fd5b505080516020909101519092909150565b600060208284031215612c5e578081fd5b813560ff8116811461155a578182fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60008151808452612caf816020860160208601613105565b601f01601f19169290920160200192915050565b8183823760009101908152919050565b60008251612ce5818460208701613105565b9190910192915050565b6000808354612cfd81613131565b60018281168015612d155760018114612d2657612d52565b60ff19841687528287019450612d52565b8786526020808720875b85811015612d495781548a820152908401908201612d30565b50505082870194505b50929695505050505050565b60008351612d70818460208801613105565b835190830190612d84818360208801613105565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612dc090830184612c97565b9695505050505050565b60208152600061155a6020830184612c97565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff861681526001600160a01b038516602082015260a060408201819052600090612ee390830186612c97565b84151560608401528281036080840152612efd8185612c97565b98975050505050505050565b61ffff84168152604060208201526000612f27604083018486612c6e565b95945050505050565b61ffff86168152608060208201526000612f4d6080830187612c97565b6001600160401b03861660408401528281036060840152612efd818587612c6e565b61ffff85168152608060208201526000612f8c6080830186612c97565b6001600160401b03851660408401528281036060840152612fad8185612c97565b979650505050505050565b61ffff871681526000602060c081840152818854612fd581613131565b8060c087015260e0600180841660008114612ff7576001811461300c57613037565b60ff1985168984015261010089019550613037565b8d8852868820885b8581101561302f5781548b8201860152908301908801613014565b8a0184019650505b5050505050838103604085015261304e8189612c97565b91505061306660608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a08401526130878185612c97565b9998505050505050505050565b600061ffff808816835280871660208401525084604083015260806060830152612fad608083018486612c6e565b600082198211156130d5576130d561319b565b500190565b6000826130e9576130e96131b1565b500490565b6000828210156131005761310061319b565b500390565b60005b83811015613120578181015183820152602001613108565b838111156109c25750506000910152565b600181811c9082168061314557607f821691505b6020821081141561316657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131805761318061319b565b5060010190565b600082613196576131966131b1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610edc57600080fd5b6001600160e01b031981168114610edc57600080fdfea26469706673582212208079afa51bc64840dbcd2fd1e7f6a25707861271b9ff52ad3e17408ef9db27ae64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f6d656469612e6f6d6e69626972646e66742e78797a2f756e72657665616c65642f6d657461646174612f0000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): https://media.omnibirdnft.xyz/unrevealed/metadata/
Arg [1] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675
Arg [2] : _startToken (uint256): 0
Arg [3] : _maxMint (uint256): 2000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [5] : 68747470733a2f2f6d656469612e6f6d6e69626972646e66742e78797a2f756e
Arg [6] : 72657665616c65642f6d657461646174612f0000000000000000000000000000


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.