ETH Price: $3,454.21 (-0.95%)
Gas: 3 Gwei

Token

Smashverse (SMASH)
 

Overview

Max Total Supply

6,632 SMASH

Holders

1,056

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
alimain.eth
Balance
4 SMASH
0x8c759953FB0dBF18b73335DDb4E797567A918F36
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:
SmashverseNFTByMetadrop

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 32 : SmashverseNFTByMetadrop.sol
// SPDX-License-Identifier: BUSL 1.0
// Metadrop Contracts (v1)

pragma solidity 0.8.17;

import "@openzeppelin/contracts/utils/Strings.sol";
import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol";
import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol";
// Use of ERC721M which contains staking, vesting, and gas improvements for batch minting:
import "./ERC721M/ERC721M.sol";
// Layer Zero support for multi-chain freedom:
import "./LayerZero/onft/IONFT721.sol";
import "./LayerZero/onft/ONFT721Core.sol";
// Operator Filter
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
// Metadrop NFT interface
import "./INFTByMetadrop.sol";

contract SmashverseNFTByMetadrop is
  INFTByMetadrop,
  ONFT721Core,
  ERC721M,
  IONFT721,
  DefaultOperatorFilterer,
  VRFConsumerBaseV2
{
  using Strings for uint256;

  // Base chain for this collection (used with layer zero):
  uint256 immutable baseChain;
  address public immutable primarySaleContract;

  // Which metadata source are we using:
  bool public useArweave = true;
  // Are we pre-reveal:
  bool public preReveal = true;
  // Is metadata locked?:
  bool public metadataLocked = false;
  // Use the EPS composition service?
  bool public useEPS_CT = true;
  // Minting complete confirmation
  bool public mintingComplete;

  // Max duration for staking
  uint256 public maxStakingDurationInDays;

  uint256 public recordedRandomWord;
  uint256 public vrfStartPosition;

  address public baseContract;
  string public preRevealURI;
  string public arweaveURI;
  string public ipfsURI;

  /**
   * @dev Chainlink config.
   */
  // Mainnet: 0x271682DEB8C4E0901D1a1550aD2e64D568E69909
  // Goerli: 0x2Ca8E0C643bDe4C2E08ab1fA0da3401AdAD7734D
  VRFCoordinatorV2Interface vrfCoordinator;
  uint64 vrfSubscriptionId;
  // see https://docs.chain.link/docs/vrf-contracts/#configurations
  // Mainnet 200 gwei: 0x8af398995b04c28e9951adb9721ef74c74f93e6a478f39e7e0777be13527e7ef
  // Goerli 150 gwei 0x79d3d8832d904592c0bf9818b621522c988bb8b0c05cdc3b15aea1b6e8db0c15
  bytes32 vrfKeyHash;
  uint32 vrfCallbackGasLimit = 150000;
  uint16 vrfRequestConfirmations = 3;
  uint32 vrfNumWords = 1;

  bytes32 public positionProof;

  // Track tokens off-chain
  mapping(uint256 => address) public offChainOwner;

  error IncorrectConfirmationValue();
  error VRFAlreadySet();
  error PositionProofAlreadySet();

  event RandomNumberReceived(uint256 indexed requestId, uint256 randomNumber);
  event VRFPositionSet(uint256 VRFPosition);

  constructor(
    address primarySaleContract_,
    uint256 supply_,
    uint256 baseChain_,
    address epsDelegateRegister_,
    address epsComposeThis_,
    address vrfCoordinator_,
    bytes32 vrfKeyHash_,
    uint64 vrfSubscriptionId_,
    address royaltyReceipientAddress_,
    uint96 royaltyPercentageBasisPoints_
  )
    ERC721M(
      "Smashverse",
      "SMASH",
      supply_,
      epsDelegateRegister_,
      epsComposeThis_
    )
    ONFT721Core(_getLzEndPoint())
    VRFConsumerBaseV2(vrfCoordinator_)
  {
    primarySaleContract = primarySaleContract_;
    baseChain = baseChain_;
    vrfCoordinator = VRFCoordinatorV2Interface(vrfCoordinator_);
    vrfKeyHash = vrfKeyHash_;
    setVRFSubscriptionId(vrfSubscriptionId_);
    setDefaultRoyalty(royaltyReceipientAddress_, royaltyPercentageBasisPoints_);
  }

  // =======================================
  // OPERATOR FILTER REGISTER
  // =======================================

  function setApprovalForAll(address operator, bool approved)
    public
    override(ERC721M, IERC721)
    onlyAllowedOperatorApproval(operator)
  {
    super.setApprovalForAll(operator, approved);
  }

  function approve(address operator, uint256 tokenId)
    public
    override(ERC721M, IERC721)
    onlyAllowedOperatorApproval(operator)
  {
    super.approve(operator, tokenId);
  }

  function transferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public override(ERC721M, IERC721) onlyAllowedOperator(from) {
    super.transferFrom(from, to, tokenId);
  }

  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public override(ERC721M, IERC721) onlyAllowedOperator(from) {
    super.safeTransferFrom(from, to, tokenId);
  }

  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory data
  ) public override(ERC721M, IERC721) onlyAllowedOperator(from) {
    super.safeTransferFrom(from, to, tokenId, data);
  }

  /**
   * @dev Burns `tokenId`. See {ERC721-_burn}.
   *
   * Requirements:
   *
   * - The caller must own `tokenId` or be an approved operator.
   */
  function burn(uint256 tokenId) public virtual {
    //solhint-disable-next-line max-line-length
    require(_isApprovedOrOwner(_msgSender(), tokenId), "Not owner or approved");
    _burn(tokenId);
  }

  // =======================================
  // MINTING
  // =======================================

  /**
   *
   *
   * @dev mint: mint items
   *
   *
   */
  function mint(
    uint256 quantityToMint_,
    address to_,
    uint256 vestingInDays_
  ) external {
    if (mintingComplete) {
      revert MintingIsClosedForever();
    }

    if (msg.sender != primarySaleContract) revert InvalidAddress();

    if (block.chainid != baseChain) {
      revert baseChainOnly();
    }

    _mintSequential(to_, quantityToMint_, vestingInDays_);
  }

  // =======================================
  // VRF
  // =======================================

  /**
   *
   *
   * @dev getStartPosition
   *
   *
   */
  function getStartPosition() external onlyOwner returns (uint256) {
    if (recordedRandomWord != 0) {
      revert VRFAlreadySet();
    }
    return
      vrfCoordinator.requestRandomWords(
        vrfKeyHash,
        vrfSubscriptionId,
        vrfRequestConfirmations,
        vrfCallbackGasLimit,
        vrfNumWords
      );
  }

  /**
   *
   *
   * @dev fulfillRandomWords: Callback from the chainlinkv2 oracle with randomness.
   *
   *
   */
  function fulfillRandomWords(uint256 requestId_, uint256[] memory randomWords_)
    internal
    override
  {
    recordedRandomWord = randomWords_[0];
    vrfStartPosition = (randomWords_[0] % maxSupply) + 1;
    emit RandomNumberReceived(requestId_, randomWords_[0]);
    emit VRFPositionSet(vrfStartPosition);
  }

  // =======================================
  // ADMINISTRATION
  // =======================================
  /**
   *
   *
   * @dev setDefaultRoyalty: Set the royalty percentage claimed
   * by the project owner for the collection.
   *
   * Note - we have specifically NOT implemented the ability to have different
   * royalties on a token by token basis. This reduces the complexity of processing on
   * multi-buys, and also avoids challenges to decentralisation (e.g. the project targetting
   * one users tokens with larger royalties)
   *
   *
   */
  function setDefaultRoyalty(address recipient, uint96 fraction)
    public
    onlyOwner
  {
    _setDefaultRoyalty(recipient, fraction);
  }

  /**
   *
   *
   * @dev deleteDefaultRoyalty: Delete the royalty percentage claimed
   * by the project owner for the collection.
   *
   *
   */
  function deleteDefaultRoyalty() public onlyOwner {
    _deleteDefaultRoyalty();
  }

  /**
   *
   *
   * @dev lockURIs: lock the URI data for this contract
   *
   *
   */
  function lockURIs() external onlyOwner {
    metadataLocked = true;
  }

  /**
   *
   *
   * @dev setURIs: Set the URI data for this contract
   *
   *
   */
  function setURIs(
    string memory preRevealURI_,
    string memory arweaveURI_,
    string memory ipfsURI_
  ) external onlyOwner {
    if (metadataLocked) {
      revert MetadataIsLocked();
    }

    preRevealURI = preRevealURI_;
    arweaveURI = arweaveURI_;
    ipfsURI = ipfsURI_;
  }

  /**
   *
   *
   * @dev switchImageSource (guards against either arweave or IPFS being no more)
   *
   *
   */
  function switchImageSource(bool useArweave_) external onlyOwner {
    useArweave = useArweave_;
  }

  /**
   *
   *
   * @dev setMaxStakingPeriod
   *
   *
   */
  function setMaxStakingPeriod(uint16 maxStakingDurationInDays_)
    external
    onlyOwner
  {
    maxStakingDurationInDays = maxStakingDurationInDays_;
    emit MaxStakingDurationSet(maxStakingDurationInDays_);
  }

  /**
   *
   *
   * @dev setEPSComposeThisAddress. Owner can update the EPS ComposeThis address
   *
   *
   */
  function setEPSComposeThisAddress(address epsComposeThis_)
    external
    onlyOwner
  {
    epsComposeThis = IEPS_CT(epsComposeThis_);
    emit EPSComposeThisUpdated(epsComposeThis_);
  }

  /**
   *
   *
   * @dev setEPSDelegateRegisterAddress. Owner can update the EPS DelegateRegister address
   *
   *
   */
  function setEPSDelegateRegisterAddress(address epsDelegateRegister_)
    external
    onlyOwner
  {
    epsDeligateRegister = IEPS_DR(epsDelegateRegister_);
    emit EPSDelegateRegisterUpdated(epsDelegateRegister_);
  }

  /**
   *
   *
   * @dev reveal. Owner can reveal
   *
   *
   */
  function reveal() external onlyOwner {
    preReveal = false;
    emit Revealed();
  }

  /**
   *
   *
   * @dev setMintingCompleteForeverCannotBeUndone: Allow owner to set minting complete
   * Enter confirmation value of "SmashverseMintingComplete" to confirm that you are closing
   * this mint forever.
   *
   *
   */
  function setMintingCompleteForeverCannotBeUndone(string memory confirmation_)
    external
    onlyOwner
  {
    string memory expectedValue = "SmashverseMintingComplete";
    if (
      keccak256(abi.encodePacked(confirmation_)) ==
      keccak256(abi.encodePacked(expectedValue))
    ) {
      mintingComplete = true;
    } else {
      revert IncorrectConfirmationValue();
    }
  }

  /**
   *
   *
   * @dev setBaseContract. Owner can set base contract
   *
   *
   */
  function setBaseContract(address baseContract_) external onlyOwner {
    if (block.chainid == baseChain) {
      revert ThisIsTheBaseContract();
    }

    baseContract = baseContract_;

    emit BaseContractSet(baseContract_);
  }

  /**
   *
   *
   * @dev setEPS_CTOn. Owner can turn EPS CT on
   *
   *
   */
  function setEPS_CTOn() external onlyOwner {
    useEPS_CT = true;
    emit EPS_CTTurnedOn();
  }

  /**
   *
   *
   * @dev setEPS_CTOff. Owner can turn EPS CT off
   *
   *
   */
  function setEPS_CTOff() external onlyOwner {
    useEPS_CT = false;
    emit EPS_CTTurnedOff();
  }

  /**
   *
   * @dev setPositionProof
   *
   */
  function setPositionProof(bytes32 positionProof_) external onlyOwner {
    if (positionProof != "") {
      revert PositionProofAlreadySet();
    }
    positionProof = positionProof_;

    emit MerkleRootSet(positionProof_);
  }

  /**
   *
   * @dev chainlink configuration setters:
   *
   */

  /**
   *
   * @dev setVRFSubscriptionId: Set the chainlink subscription id.
   *
   */
  function setVRFSubscriptionId(uint64 vrfSubscriptionId_) public onlyOwner {
    vrfSubscriptionId = vrfSubscriptionId_;
  }

  /**
   *
   * @dev setVRFKeyHash: Set the chainlink keyhash (gas lane).
   *
   */
  function setVRFKeyHash(bytes32 vrfKeyHash_) external onlyOwner {
    vrfKeyHash = vrfKeyHash_;
  }

  /**
   *
   * @dev setVRFCallbackGasLimit: Set the chainlink callback gas limit.
   *
   */
  function setVRFCallbackGasLimit(uint32 vrfCallbackGasLimit_)
    external
    onlyOwner
  {
    vrfCallbackGasLimit = vrfCallbackGasLimit_;
  }

  /**
   *
   * @dev set: Set the chainlink number of confirmations.
   *
   */
  function setVRFRequestConfirmations(uint16 vrfRequestConfirmations_)
    external
    onlyOwner
  {
    vrfRequestConfirmations = vrfRequestConfirmations_;
  }

  // =======================================
  // STAKING AND VESTING
  // =======================================

  /**
   *
   *
   * @dev beneficiaryOf
   *
   *
   */
  function beneficiaryOf(uint256 tokenId_)
    external
    view
    returns (address beneficiary_, BeneficiaryType beneficiaryType_)
  {
    beneficiary_ = epsDeligateRegister.beneficiaryOf(
      address(this),
      tokenId_,
      1
    );

    if (beneficiary_ == address(this)) {
      // If this token is owned by this contract we need to determine if it is vested,
      // staked, or currently off-chain
      address stakedOwner = stakedOwnerOf(tokenId_);
      if (stakedOwner != address(0)) {
        beneficiary_ = stakedOwner;
        beneficiaryType_ = BeneficiaryType.stakedOwner;
      } else {
        address vestedOwner = vestedOwnerOf(tokenId_);
        if (vestedOwner != address(0)) {
          beneficiary_ = vestedOwner;
          beneficiaryType_ = BeneficiaryType.vestedOwner;
        } else {
          // Not vested or staked, must be off-chain:
          address otherChainOwner = offChainOwner[tokenId_];
          if (otherChainOwner != address(0)) {
            beneficiary_ = otherChainOwner;
            beneficiaryType_ = BeneficiaryType.offChainOwner;
          }
        }
      }
    } else {
      if (beneficiary_ != ownerOf(tokenId_)) {
        beneficiaryType_ = BeneficiaryType.epsDelegate;
      }
    }

    if (beneficiary_ == address(0)) {
      revert InvalidToken();
    }

    return (beneficiary_, beneficiaryType_);
  }

  /**
   *
   *
   * @dev inVestingPeriod: return if the token is in a vesting period
   *
   *
   */
  function inVestingPeriod(uint256 tokenId) external view returns (bool) {
    return (vestingEndDateForToken[tokenId] >= block.timestamp);
  }

  /**
   *
   *
   * @dev inStakedPeriod: return if the token is staked
   *
   *
   */
  function inStakedPeriod(uint256 tokenId) external view returns (bool) {
    return (stakingEndDateForToken[tokenId] >= block.timestamp);
  }

  /**
   *
   *
   * @dev stake: stake items
   *
   *
   */
  function stake(uint256[] memory tokenIds_, uint256 stakingInDays_) external {
    if (stakingInDays_ > maxStakingDurationInDays) {
      revert StakingDurationExceedsMaximum(
        stakingInDays_,
        maxStakingDurationInDays
      );
    }

    for (uint256 i = 0; i < tokenIds_.length; ) {
      _setTokenStakingDate(tokenIds_[i], stakingInDays_);
      unchecked {
        i++;
      }
    }
  }

  /**
   *
   *
   * @dev tokenURI. Includes layer zero satellite chain support
   * and staking / vesting display using EPS_CT
   *
   *
   */
  function tokenURI(uint256 tokenId_)
    public
    view
    override
    returns (string memory)
  {
    _requireMinted(tokenId_);

    // If we are using the EPS_CT service we can apply additional
    // details to metadata:

    if (useEPS_CT && address(epsComposeThis) != address(0)) {
      // Check for staking:
      if (stakingEndDateForToken[tokenId_] > block.timestamp) {
        AddedTrait[] memory addedTraits = new AddedTrait[](2);

        addedTraits[0] = AddedTrait(
          "Staked Until",
          ValueType.date,
          stakingEndDateForToken[tokenId_],
          "",
          address(0)
        );

        addedTraits[1] = AddedTrait(
          "Staked",
          ValueType.characterString,
          0,
          "true",
          address(0)
        );

        string[] memory addedImages = new string[](1);

        addedImages[0] = "staked";

        return
          epsComposeThis.composeURIFromBaseURI(
            _baseTokenURI(tokenId_),
            addedTraits,
            1,
            addedImages
          );
      }

      // Check for vesting:
      if (vestingEndDateForToken[tokenId_] > block.timestamp) {
        AddedTrait[] memory addedTraits = new AddedTrait[](2);

        addedTraits[0] = AddedTrait(
          "Vested Until",
          ValueType.date,
          vestingEndDateForToken[tokenId_],
          "",
          address(0)
        );

        addedTraits[1] = AddedTrait(
          "Vested",
          ValueType.characterString,
          0,
          "true",
          address(0)
        );

        string[] memory addedImages = new string[](1);

        addedImages[0] = "vested";

        return
          epsComposeThis.composeURIFromBaseURI(
            _baseTokenURI(tokenId_),
            addedTraits,
            1,
            addedImages
          );
      }

      // If on a satellite chain get the URI from the base chain:
      if (block.chainid != baseChain) {
        return
          epsComposeThis.composeURIFromLookup(
            baseChain,
            _baseContract(),
            tokenId_,
            new AddedTrait[](0),
            0,
            new string[](0)
          );
      }

      // Finally, if on the base chain, owned by the token contract and NOT staked
      // or vested we must be off-chain through LayerZero:
      if (ownerOf(tokenId_) == address(this)) {
        AddedTrait[] memory addedTraits = new AddedTrait[](1);

        addedTraits[0] = AddedTrait(
          "Off-chain",
          ValueType.characterString,
          0,
          "true",
          address(0)
        );

        string[] memory addedImages = new string[](1);

        addedImages[0] = "off-chain";

        return
          epsComposeThis.composeURIFromBaseURI(
            _baseTokenURI(tokenId_),
            addedTraits,
            1,
            addedImages
          );
      }

      return (_baseTokenURI(tokenId_));
    } else {
      return (_baseTokenURI(tokenId_));
    }
  }

  /**
   *
   *
   * @dev _baseTokenURI.
   *
   *
   */
  function _baseTokenURI(uint256 tokenId_)
    internal
    view
    returns (string memory)
  {
    if (preReveal) {
      return
        bytes(preRevealURI).length > 0
          ? string(abi.encodePacked(preRevealURI, tokenId_.toString(), ".json"))
          : "";
    } else {
      if (useArweave) {
        return
          bytes(arweaveURI).length > 0
            ? string(abi.encodePacked(arweaveURI, tokenId_.toString(), ".json"))
            : "";
      } else {
        return
          bytes(ipfsURI).length > 0
            ? string(abi.encodePacked(ipfsURI, tokenId_.toString(), ".json"))
            : "";
      }
    }
  }

  // =======================================
  // LAYER ZERO
  // =======================================

  /**
   *
   *
   * @dev supportsInterface. Include Layer Zero support.
   *
   *
   */
  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ONFT721Core, ERC721M, IERC165)
    returns (bool)
  {
    return
      interfaceId == type(IONFT721).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   *
   *
   * @dev _baseContract. Return the base contract address
   *
   *
   */
  function _baseContract() internal view returns (address) {
    if (block.chainid == baseChain) {
      return (address(this));
    }

    if (baseContract == address(0)) {
      return (address(this));
    } else {
      return baseContract;
    }
  }

  /**
   *
   *
   * @dev _isBaseChain. Return if this is the base chain
   *
   *
   */
  function _isBaseChain() internal view returns (bool) {
    return (block.chainid == baseChain);
  }

  /**
   *
   *
   * @dev _getLzEndPoint. Internal function to get the LZ endpoint
   * for this chain. This means we don't need to pass this in, allowing
   * for identical bytecode between chains, which enables the creation
   * of identical contract addresses using CREATE2
   *
   * Need a chain not listed? No problem, but you will need to alter the contract
   * to receive the LZ endpoint prior to deploy (this will change the bytecode
   * and mean you won't be able to deploy using the same contract ID without
   * using a create3 factory, and we haven't finished building that yet).
   *
   *
   */
  function _getLzEndPoint() internal view returns (address) {
    uint256 chainId = block.chainid;

    if (chainId == 1) return 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675; // Ethereum mainnet
    if (chainId == 5) return 0xbfD2135BFfbb0B5378b56643c2Df8a87552Bfa23; // Goerli testnet
    if (chainId == 80001) return 0xf69186dfBa60DdB133E91E9A4B5673624293d8F8; // Mumbai (polygon testnet)
    if (chainId == 137) return 0x3c2269811836af69497E5F486A85D7316753cf62; // Polygon mainnet
    if (chainId == 56) return 0x3c2269811836af69497E5F486A85D7316753cf62; // BSC mainnet
    if (chainId == 43114) return 0x3c2269811836af69497E5F486A85D7316753cf62; // Avalanche mainnet
    if (chainId == 42161) return 0x3c2269811836af69497E5F486A85D7316753cf62; // Arbitrum
    if (chainId == 10) return 0x3c2269811836af69497E5F486A85D7316753cf62; // Optimism
    if (chainId == 250) return 0xb6319cC6c8c27A8F5dAF0dD3DF91EA35C4720dd7; // Fantom
    if (chainId == 73772) return 0x9740FF91F1985D8d2B71494aE1A2f723bb3Ed9E4; // Swimmer
    if (chainId == 53935) return 0x9740FF91F1985D8d2B71494aE1A2f723bb3Ed9E4; // DFK
    if (chainId == 1666600000)
      return 0x9740FF91F1985D8d2B71494aE1A2f723bb3Ed9E4; // Harmony
    if (chainId == 1284) return 0x9740FF91F1985D8d2B71494aE1A2f723bb3Ed9E4; // Moonbeam
    if (chainId == 42220) return 0x3A73033C0b1407574C76BdBAc67f126f6b4a9AA9; // Celo
    if (chainId == 432204) return 0x9740FF91F1985D8d2B71494aE1A2f723bb3Ed9E4; // Dexalot
    if (chainId == 122) return 0x9740FF91F1985D8d2B71494aE1A2f723bb3Ed9E4; // Fuse
    if (chainId == 100) return 0x9740FF91F1985D8d2B71494aE1A2f723bb3Ed9E4; // Gnosis
    if (chainId == 8217) return 0x9740FF91F1985D8d2B71494aE1A2f723bb3Ed9E4; // Kaytn
    if (chainId == 1088) return 0x9740FF91F1985D8d2B71494aE1A2f723bb3Ed9E4; // Metis

    return (address(0));
  }

  /**
   *
   *
   * @dev _debitFrom. Internal function called on a layer zero
   * transfer FROM this chain.
   *
   *
   */
  function _debitFrom(
    address _from,
    uint16,
    bytes memory,
    uint256 _tokenId
  ) internal virtual override {
    require(
      _isApprovedOrOwner(_msgSender(), _tokenId),
      "Not owner nor approved"
    );
    require(ERC721M.ownerOf(_tokenId) == _from, "Not owner");
    offChainOwner[_tokenId] = _from;
    _transfer(_from, address(this), _tokenId);
  }

  /**
   *
   *
   * @dev _creditTo. Internal function called on a layer zero
   * transfer TO this chain.
   *
   *
   */
  function _creditTo(
    uint16,
    address _toAddress,
    uint256 _tokenId
  ) internal virtual override {
    // Different behaviour depending on whether this has been deployed on
    // the base chain or a satellite chain:
    if (block.chainid == baseChain) {
      // Base chain. For us to be crediting the owner this token MUST be
      // owned by the contract, as they can only be minted on the base chain
      require(
        (_exists(_tokenId) && ERC721M.ownerOf(_tokenId) == address(this))
      );

      _transfer(address(this), _toAddress, _tokenId);
    } else {
      // Satellite chain. We can be crediting the user as a result of this reaching
      // this chain for the first time (mint) OR from a token that has been minted
      // here previously and is currently custodied by the contract.
      require(
        !_exists(_tokenId) ||
          (_exists(_tokenId) && ERC721M.ownerOf(_tokenId) == address(this))
      );
      if (!_exists(_tokenId)) {
        _safeMint(_toAddress, _tokenId);
      } else {
        _transfer(address(this), _toAddress, _tokenId);
      }
    }

    delete offChainOwner[_tokenId];
  }
}

File 2 of 32 : INFTByMetadrop.sol
// SPDX-License-Identifier: MIT
// Metadrop Contracts (v0.0.1)

pragma solidity 0.8.17;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

interface INFTByMetadrop {
  // The current status of the mint:
  //   - notEnabled: This type of mint is not part of this drop
  //   - notYetOpen: This type of mint is part of the drop, but it hasn't started yet
  //   - open: it's ready for ya, get in there.
  //   - finished: been and gone.
  //   - unknown: theoretically impossible.
  enum MintStatus {
    notEnabled,
    notYetOpen,
    open,
    finished,
    unknown
  }

  enum AllocationCheck {
    invalidListType,
    hasAllocation,
    invalidProof,
    allocationExhausted
  }

  enum BeneficiaryType {
    owner,
    epsDelegate,
    stakedOwner,
    vestedOwner,
    offChainOwner
  }

  // ============================
  // EVENTS
  // ============================
  event EPSComposeThisUpdated(address epsComposeThisAddress);
  event EPSDelegateRegisterUpdated(address epsDelegateRegisterAddress);
  event EPS_CTTurnedOn();
  event EPS_CTTurnedOff();
  event Revealed();
  event BaseContractSet(address baseContract);
  event VestingAddressSet(address vestingAddress);
  event MaxStakingDurationSet(uint16 maxStakingDurationInDays);
  event MerkleRootSet(bytes32 merkleRoot);

  // ============================
  // ERRORS
  // ============================
  error ThisIsTheBaseContract();
  error MintingIsClosedForever();
  error ThisMintIsClosed();
  error IncorrectETHPayment();
  error TransferFailed();
  error VestingAddressIsLocked();
  error MetadataIsLocked();
  error StakingDurationExceedsMaximum(
    uint256 requestedStakingDuration,
    uint256 maxStakingDuration
  );
  error MaxPublicMintAllowanceExceeded(
    uint256 requested,
    uint256 alreadyMinted,
    uint256 maxAllowance
  );
  error ProofInvalid();
  error RequestingMoreThanRemainingAllocation(
    uint256 requested,
    uint256 remainingAllocation
  );
  error baseChainOnly();
  error InvalidAddress();

  // ============================
  // FUNCTIONS
  // ============================

  function setURIs(
    string memory placeholderURI_,
    string memory arweaveURI_,
    string memory ipfsURI_
  ) external;

  function lockURIs() external;

  function switchImageSource(bool useArweave_) external;

  function setDefaultRoyalty(address recipient, uint96 fraction) external;

  function deleteDefaultRoyalty() external;

  function mint(
    uint256 quantityToMint_,
    address to_,
    uint256 vestingInDays_
  ) external;
}

File 3 of 32 : ERC721M.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
// EPS implementation
import "../EPS/IEPS_DR.sol";
import "../EPS/IEPS_CT.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 ERC721M is Context, ERC165, IERC721, IERC721Metadata, ERC2981 {
  using Address for address;
  using Strings for uint256;

  // EPS Compose This
  IEPS_CT public epsComposeThis;
  // EPS Delegation Register
  IEPS_DR public epsDeligateRegister;

  // Use of a burn address other than address(0) to allow easy enumeration
  // of burned tokens
  address constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD;

  uint256 public immutable maxSupply;

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

  // Vesting mapping
  mapping(uint256 => uint256) public vestingEndDateForToken;

  // Staking mapping
  mapping(uint256 => uint256) public stakingEndDateForToken;

  uint256 public remainingSupply;

  error CallerNotTokenOwnerOrApproved();
  error CannotStakeForZeroDays();
  error InvalidToken();
  error QuantityExceedsRemainingSupply();

  /**
   * @dev Emitted when `owner` stakes a token
   */
  event TokenStaked(
    address indexed staker,
    uint256 indexed tokenId,
    uint256 indexed stakingEndDate
  );

  /**
   * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxSupply_,
    address epsDeligateRegister_,
    address epsComposeThis_
  ) {
    _name = name_;
    _symbol = symbol_;
    maxSupply = maxSupply_;
    remainingSupply = maxSupply_;
    epsDeligateRegister = IEPS_DR(epsDeligateRegister_);
    epsComposeThis = IEPS_CT(epsComposeThis_);
  }

  /**
   * ================================
   * @dev ERC721M new functions begins
   * ================================
   */

  /**
   *
   *
   * @dev Returns total supply (minted - burned)
   *
   *
   */
  function totalSupply() external view returns (uint256) {
    return totalMinted() - totalBurned();
  }

  /**
   * @dev Returns the remaining supply
   */
  function totalUnminted() public view returns (uint256) {
    return remainingSupply;
  }

  /**
   * @dev Returns the total number of tokens ever minted
   */
  function totalMinted() public view returns (uint256) {
    return (maxSupply - remainingSupply);
  }

  /**
   * @dev Returns the count of tokens sent to the burn address
   */
  function totalBurned() public view returns (uint256) {
    return ERC721M.balanceOf(BURN_ADDRESS);
  }

  /**
   * @dev _setTokenVestingDate
   */
  function _setTokenVestingDate(uint256 tokenId_, uint256 vestingDuration_)
    internal
    virtual
  {
    if (vestingDuration_ != 0) {
      uint256 vestingEndDate = block.timestamp + (vestingDuration_ * 1 days);
      vestingEndDateForToken[tokenId_] = vestingEndDate;
      epsComposeThis.triggerMetadataUpdate(
        block.chainid,
        address(this),
        tokenId_,
        vestingEndDate
      );
    }
  }

  /**
   * @dev _setTokenStakingDate
   */
  function _setTokenStakingDate(uint256 tokenId_, uint256 stakingDuration_)
    internal
    virtual
  {
    if (!(_isApprovedOrOwner(_msgSender(), tokenId_))) {
      revert CallerNotTokenOwnerOrApproved();
    }

    // Clear token level approval if it exists. ApprovalForAll will not be
    // valid while staked as this contract will be the owner, but token level
    // approvals would persist, so must be removed
    if (_tokenApprovals[tokenId_] != address(0)) {
      _approve(address(0), tokenId_);
    }

    if (stakingDuration_ == 0) {
      revert CannotStakeForZeroDays();
    }

    uint256 stakingEndDate = block.timestamp + (stakingDuration_ * 1 days);
    stakingEndDateForToken[tokenId_] = stakingEndDate;
    epsComposeThis.triggerMetadataUpdate(
      block.chainid,
      address(this),
      tokenId_,
      stakingEndDate
    );
    emit TokenStaked(_msgSender(), tokenId_, stakingEndDate);
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function stakedOwnerOf(uint256 tokenId)
    public
    view
    virtual
    returns (address)
  {
    if (stakingEndDateForToken[tokenId] > block.timestamp) {
      address tokenOwner = _owners[tokenId];
      if (tokenOwner == address(0)) {
        revert InvalidToken();
      }
      return tokenOwner;
    } else {
      return address(0);
    }
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function vestedOwnerOf(uint256 tokenId)
    public
    view
    virtual
    returns (address)
  {
    if (vestingEndDateForToken[tokenId] > block.timestamp) {
      address tokenOwner = _owners[tokenId];
      if (tokenOwner == address(0)) {
        revert InvalidToken();
      }
      return tokenOwner;
    } else {
      return address(0);
    }
  }

  /**
   * @dev _mintIdWithoutBalanceUpdate
   */
  function _mintIdWithoutBalanceUpdate(address to, uint256 tokenId) private {
    _beforeTokenTransfer(address(0), to, tokenId);

    _owners[tokenId] = to;

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

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

  /**
   * @dev _mintSequential
   */
  function _mintSequential(
    address to_,
    uint256 quantity_,
    uint256 vestingDuration_
  ) internal virtual {
    if (quantity_ > remainingSupply) {
      revert QuantityExceedsRemainingSupply();
    }

    require(_checkOnERC721Received(address(0), to_, 1, ""), "Not receiver");

    uint256 tokenId = maxSupply - remainingSupply;

    for (uint256 i = 0; i < quantity_; ) {
      _mintIdWithoutBalanceUpdate(to_, tokenId + i);

      _setTokenVestingDate(tokenId + i, vestingDuration_);

      unchecked {
        i++;
      }
    }

    remainingSupply = remainingSupply - quantity_;
    _balances[to_] += quantity_;
  }

  /**
   * ================================
   * @dev ERC721M new functions end
   * ================================
   */

  /**
   * @dev See {IERC165-supportsInterface}.
   */
  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC165, IERC165, ERC2981)
    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), "Address 0");
    return _balances[owner];
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId)
    public
    view
    virtual
    override
    returns (address)
  {
    // Check for staking or vesting:
    if (
      stakingEndDateForToken[tokenId] > block.timestamp ||
      vestingEndDateForToken[tokenId] > block.timestamp
    ) {
      return (address(this));
    } else {
      address tokenOwner = _owners[tokenId];
      if (tokenOwner == address(0)) {
        revert InvalidToken();
      }
      return tokenOwner;
    }
  }

  /**
   * @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)
  {
    _requireMinted(tokenId);

    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 overridden 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 = ERC721M.ownerOf(tokenId);
    require(to != owner, "Approval to owner");

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      "Not owner or approved"
    );

    _approve(to, tokenId);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId)
    public
    view
    virtual
    override
    returns (address)
  {
    _requireMinted(tokenId);

    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), "Not owner or 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), "Not owner or 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), "Not receiver");
  }

  /**
   * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
   */
  function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
    return _owners[tokenId];
  }

  /**
   * @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 _ownerOf(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)
  {
    address owner = ERC721M.ownerOf(tokenId);
    return (spender == owner ||
      isApprovedForAll(owner, spender) ||
      getApproved(tokenId) == 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),
      "Not receiver"
    );
  }

  /**
   * @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), "Mint to 0 address");
    require(!_exists(tokenId), "Exists");

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

    // Check that tokenId was not minted by `_beforeTokenTransfer` hook
    require(!_exists(tokenId), "Exists");

    unchecked {
      // Will not overflow unless all 2**256 token ids are minted to the same owner.
      // Given that tokens are minted one by one, it is impossible in practice that
      // this ever happens. Might change if we allow batch minting.
      // The ERC fails to describe this case.
      _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.
   * This is an internal function that does not check if the sender is authorized to operate on the token.
   *
   * Requirements:
   *
   * - `tokenId` must exist.
   *
   * Emits a {Transfer} event.
   */
  function _burn(uint256 tokenId) internal virtual {
    address tokenOwner = ERC721M.ownerOf(tokenId);

    _beforeTokenTransfer(tokenOwner, BURN_ADDRESS, tokenId);

    // Clear approvals
    delete _tokenApprovals[tokenId];

    _balances[tokenOwner] -= 1;
    _owners[tokenId] = BURN_ADDRESS;
    _balances[BURN_ADDRESS] += 1;

    emit Transfer(tokenOwner, BURN_ADDRESS, tokenId);

    _afterTokenTransfer(tokenOwner, BURN_ADDRESS, 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(ERC721M.ownerOf(tokenId) == from, "Not owner");
    require(to != address(0), "Tfr to 0 address");

    _beforeTokenTransfer(from, to, tokenId);

    // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
    require(ERC721M.ownerOf(tokenId) == from, "Not owner");

    // Clear approvals from the previous owner
    delete _tokenApprovals[tokenId];

    unchecked {
      // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
      // `from`'s balance is the number of token held, which is at least one before the current
      // transfer.
      // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
      // all 2**256 token ids to be minted, which in practice is impossible.
      _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 an {Approval} event.
   */
  function _approve(address to, uint256 tokenId) internal virtual {
    _tokenApprovals[tokenId] = to;
    emit Approval(ERC721M.ownerOf(tokenId), to, tokenId);
  }

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

  /**
   * @dev Reverts if the `tokenId` has not been minted yet.
   */
  function _requireMinted(uint256 tokenId) internal view virtual {
    require(_exists(tokenId), "Invalid Token");
  }

  /**
   * @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 {
          /// @solidity memory-safe-assembly
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
   * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
   * - When `from` is zero, the tokens will be minted for `to`.
   * - When `to` is zero, ``from``'s tokens will be burned.
   * - `from` and `to` are never both zero.
   * - `batchSize` is non-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 token transfer. This includes minting and burning. If {ERC721Consecutive} is
   * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
   * - When `from` is zero, the tokens were minted for `to`.
   * - When `to` is zero, ``from``'s tokens were burned.
   * - `from` and `to` are never both zero.
   * - `batchSize` is non-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 4 of 32 : IONFT721.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

import "./IONFT721Core.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

/**
 * @dev Interface of the ONFT standard
 */
interface IONFT721 is IONFT721Core, IERC721 {

}

File 5 of 32 : ONFT721Core.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IONFT721Core.sol";
import "../../lzApp/NonblockingLzApp.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

abstract contract ONFT721Core is NonblockingLzApp, ERC165, IONFT721Core {
  uint256 public constant NO_EXTRA_GAS = 0;
  uint16 public constant FUNCTION_TYPE_SEND = 1;
  bool public useCustomAdapterParams;

  event SetUseCustomAdapterParams(bool _useCustomAdapterParams);

  error AdapterParamsMustBeEmpty();

  constructor(address _lzEndpoint) NonblockingLzApp(_lzEndpoint) {}

  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC165, IERC165)
    returns (bool)
  {
    return
      interfaceId == type(IONFT721Core).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  function estimateSendFee(
    uint16 _dstChainId,
    bytes memory _toAddress,
    uint256 _tokenId,
    bool _useZro,
    bytes memory _adapterParams
  ) public view virtual override returns (uint256 nativeFee, uint256 zroFee) {
    // mock the payload for send()
    bytes memory payload = abi.encode(_toAddress, _tokenId);
    return
      lzEndpoint.estimateFees(
        _dstChainId,
        address(this),
        payload,
        _useZro,
        _adapterParams
      );
  }

  function sendFrom(
    address _from,
    uint16 _dstChainId,
    bytes memory _toAddress,
    uint256 _tokenId,
    address payable _refundAddress,
    address _zroPaymentAddress,
    bytes memory _adapterParams
  ) public payable virtual override {
    _send(
      _from,
      _dstChainId,
      _toAddress,
      _tokenId,
      _refundAddress,
      _zroPaymentAddress,
      _adapterParams
    );
  }

  function _send(
    address _from,
    uint16 _dstChainId,
    bytes memory _toAddress,
    uint256 _tokenId,
    address payable _refundAddress,
    address _zroPaymentAddress,
    bytes memory _adapterParams
  ) internal virtual {
    _debitFrom(_from, _dstChainId, _toAddress, _tokenId);

    bytes memory payload = abi.encode(_toAddress, _tokenId);

    if (useCustomAdapterParams) {
      _checkGasLimit(
        _dstChainId,
        FUNCTION_TYPE_SEND,
        _adapterParams,
        NO_EXTRA_GAS
      );
    } else {
      if (_adapterParams.length != 0) {
        revert AdapterParamsMustBeEmpty();
      }
      // require(
      //   _adapterParams.length == 0,
      //   "LzApp: _adapterParams must be empty."
      // );
    }
    _lzSend(
      _dstChainId,
      payload,
      _refundAddress,
      _zroPaymentAddress,
      _adapterParams,
      msg.value
    );

    emit SendToChain(_dstChainId, _from, _toAddress, _tokenId);
  }

  function _nonblockingLzReceive(
    uint16 _srcChainId,
    bytes memory _srcAddress,
    uint64, /*_nonce*/
    bytes memory _payload
  ) internal virtual override {
    (bytes memory toAddressBytes, uint256 tokenId) = abi.decode(
      _payload,
      (bytes, uint256)
    );
    address toAddress;
    assembly {
      toAddress := mload(add(toAddressBytes, 20))
    }

    _creditTo(_srcChainId, toAddress, tokenId);

    emit ReceiveFromChain(_srcChainId, _srcAddress, toAddress, tokenId);
  }

  function setUseCustomAdapterParams(bool _useCustomAdapterParams)
    external
    onlyOwner
  {
    useCustomAdapterParams = _useCustomAdapterParams;
    emit SetUseCustomAdapterParams(_useCustomAdapterParams);
  }

  function _debitFrom(
    address _from,
    uint16 _dstChainId,
    bytes memory _toAddress,
    uint256 _tokenId
  ) internal virtual;

  function _creditTo(
    uint16 _srcChainId,
    address _toAddress,
    uint256 _tokenId
  ) internal virtual;
}

File 6 of 32 : VRFCoordinatorV2Interface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface VRFCoordinatorV2Interface {
  /**
   * @notice Get configuration relevant for making requests
   * @return minimumRequestConfirmations global min for request confirmations
   * @return maxGasLimit global max for request gas limit
   * @return s_provingKeyHashes list of registered key hashes
   */
  function getRequestConfig()
    external
    view
    returns (
      uint16,
      uint32,
      bytes32[] memory
    );

  /**
   * @notice Request a set of random words.
   * @param keyHash - Corresponds to a particular oracle job which uses
   * that key for generating the VRF proof. Different keyHash's have different gas price
   * ceilings, so you can select a specific one to bound your maximum per request cost.
   * @param subId  - The ID of the VRF subscription. Must be funded
   * with the minimum subscription balance required for the selected keyHash.
   * @param minimumRequestConfirmations - How many blocks you'd like the
   * oracle to wait before responding to the request. See SECURITY CONSIDERATIONS
   * for why you may want to request more. The acceptable range is
   * [minimumRequestBlockConfirmations, 200].
   * @param callbackGasLimit - How much gas you'd like to receive in your
   * fulfillRandomWords callback. Note that gasleft() inside fulfillRandomWords
   * may be slightly less than this amount because of gas used calling the function
   * (argument decoding etc.), so you may need to request slightly more than you expect
   * to have inside fulfillRandomWords. The acceptable range is
   * [0, maxGasLimit]
   * @param numWords - The number of uint256 random values you'd like to receive
   * in your fulfillRandomWords callback. Note these numbers are expanded in a
   * secure way by the VRFCoordinator from a single random value supplied by the oracle.
   * @return requestId - A unique identifier of the request. Can be used to match
   * a request to a response in fulfillRandomWords.
   */
  function requestRandomWords(
    bytes32 keyHash,
    uint64 subId,
    uint16 minimumRequestConfirmations,
    uint32 callbackGasLimit,
    uint32 numWords
  ) external returns (uint256 requestId);

  /**
   * @notice Create a VRF subscription.
   * @return subId - A unique subscription id.
   * @dev You can manage the consumer set dynamically with addConsumer/removeConsumer.
   * @dev Note to fund the subscription, use transferAndCall. For example
   * @dev  LINKTOKEN.transferAndCall(
   * @dev    address(COORDINATOR),
   * @dev    amount,
   * @dev    abi.encode(subId));
   */
  function createSubscription() external returns (uint64 subId);

  /**
   * @notice Get a VRF subscription.
   * @param subId - ID of the subscription
   * @return balance - LINK balance of the subscription in juels.
   * @return reqCount - number of requests for this subscription, determines fee tier.
   * @return owner - owner of the subscription.
   * @return consumers - list of consumer address which are able to use this subscription.
   */
  function getSubscription(uint64 subId)
    external
    view
    returns (
      uint96 balance,
      uint64 reqCount,
      address owner,
      address[] memory consumers
    );

  /**
   * @notice Request subscription owner transfer.
   * @param subId - ID of the subscription
   * @param newOwner - proposed new owner of the subscription
   */
  function requestSubscriptionOwnerTransfer(uint64 subId, address newOwner) external;

  /**
   * @notice Request subscription owner transfer.
   * @param subId - ID of the subscription
   * @dev will revert if original owner of subId has
   * not requested that msg.sender become the new owner.
   */
  function acceptSubscriptionOwnerTransfer(uint64 subId) external;

  /**
   * @notice Add a consumer to a VRF subscription.
   * @param subId - ID of the subscription
   * @param consumer - New consumer which can use the subscription
   */
  function addConsumer(uint64 subId, address consumer) external;

  /**
   * @notice Remove a consumer from a VRF subscription.
   * @param subId - ID of the subscription
   * @param consumer - Consumer to remove from the subscription
   */
  function removeConsumer(uint64 subId, address consumer) external;

  /**
   * @notice Cancel a subscription
   * @param subId - ID of the subscription
   * @param to - Where to send the remaining LINK to
   */
  function cancelSubscription(uint64 subId, address to) external;

  /*
   * @notice Check to see if there exists a request commitment consumers
   * for all consumers and keyhashes for a given sub.
   * @param subId - ID of the subscription
   * @return true if there exists at least one unfulfilled request for the subscription, false
   * otherwise.
   */
  function pendingRequestExists(uint64 subId) external view returns (bool);
}

File 7 of 32 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 8 of 32 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

File 9 of 32 : VRFConsumerBaseV2.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/** ****************************************************************************
 * @notice Interface for contracts using VRF randomness
 * *****************************************************************************
 * @dev PURPOSE
 *
 * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
 * @dev to Vera the verifier in such a way that Vera can be sure he's not
 * @dev making his output up to suit himself. Reggie provides Vera a public key
 * @dev to which he knows the secret key. Each time Vera provides a seed to
 * @dev Reggie, he gives back a value which is computed completely
 * @dev deterministically from the seed and the secret key.
 *
 * @dev Reggie provides a proof by which Vera can verify that the output was
 * @dev correctly computed once Reggie tells it to her, but without that proof,
 * @dev the output is indistinguishable to her from a uniform random sample
 * @dev from the output space.
 *
 * @dev The purpose of this contract is to make it easy for unrelated contracts
 * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
 * @dev simple access to a verifiable source of randomness. It ensures 2 things:
 * @dev 1. The fulfillment came from the VRFCoordinator
 * @dev 2. The consumer contract implements fulfillRandomWords.
 * *****************************************************************************
 * @dev USAGE
 *
 * @dev Calling contracts must inherit from VRFConsumerBase, and can
 * @dev initialize VRFConsumerBase's attributes in their constructor as
 * @dev shown:
 *
 * @dev   contract VRFConsumer {
 * @dev     constructor(<other arguments>, address _vrfCoordinator, address _link)
 * @dev       VRFConsumerBase(_vrfCoordinator) public {
 * @dev         <initialization with other arguments goes here>
 * @dev       }
 * @dev   }
 *
 * @dev The oracle will have given you an ID for the VRF keypair they have
 * @dev committed to (let's call it keyHash). Create subscription, fund it
 * @dev and your consumer contract as a consumer of it (see VRFCoordinatorInterface
 * @dev subscription management functions).
 * @dev Call requestRandomWords(keyHash, subId, minimumRequestConfirmations,
 * @dev callbackGasLimit, numWords),
 * @dev see (VRFCoordinatorInterface for a description of the arguments).
 *
 * @dev Once the VRFCoordinator has received and validated the oracle's response
 * @dev to your request, it will call your contract's fulfillRandomWords method.
 *
 * @dev The randomness argument to fulfillRandomWords is a set of random words
 * @dev generated from your requestId and the blockHash of the request.
 *
 * @dev If your contract could have concurrent requests open, you can use the
 * @dev requestId returned from requestRandomWords to track which response is associated
 * @dev with which randomness request.
 * @dev See "SECURITY CONSIDERATIONS" for principles to keep in mind,
 * @dev if your contract could have multiple requests in flight simultaneously.
 *
 * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
 * @dev differ.
 *
 * *****************************************************************************
 * @dev SECURITY CONSIDERATIONS
 *
 * @dev A method with the ability to call your fulfillRandomness method directly
 * @dev could spoof a VRF response with any random value, so it's critical that
 * @dev it cannot be directly called by anything other than this base contract
 * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
 *
 * @dev For your users to trust that your contract's random behavior is free
 * @dev from malicious interference, it's best if you can write it so that all
 * @dev behaviors implied by a VRF response are executed *during* your
 * @dev fulfillRandomness method. If your contract must store the response (or
 * @dev anything derived from it) and use it later, you must ensure that any
 * @dev user-significant behavior which depends on that stored value cannot be
 * @dev manipulated by a subsequent VRF request.
 *
 * @dev Similarly, both miners and the VRF oracle itself have some influence
 * @dev over the order in which VRF responses appear on the blockchain, so if
 * @dev your contract could have multiple VRF requests in flight simultaneously,
 * @dev you must ensure that the order in which the VRF responses arrive cannot
 * @dev be used to manipulate your contract's user-significant behavior.
 *
 * @dev Since the block hash of the block which contains the requestRandomness
 * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
 * @dev miner could, in principle, fork the blockchain to evict the block
 * @dev containing the request, forcing the request to be included in a
 * @dev different block with a different hash, and therefore a different input
 * @dev to the VRF. However, such an attack would incur a substantial economic
 * @dev cost. This cost scales with the number of blocks the VRF oracle waits
 * @dev until it calls responds to a request. It is for this reason that
 * @dev that you can signal to an oracle you'd like them to wait longer before
 * @dev responding to the request (however this is not enforced in the contract
 * @dev and so remains effective only in the case of unmodified oracle software).
 */
abstract contract VRFConsumerBaseV2 {
  error OnlyCoordinatorCanFulfill(address have, address want);
  address private immutable vrfCoordinator;

  /**
   * @param _vrfCoordinator address of VRFCoordinator contract
   */
  constructor(address _vrfCoordinator) {
    vrfCoordinator = _vrfCoordinator;
  }

  /**
   * @notice fulfillRandomness handles the VRF response. Your contract must
   * @notice implement it. See "SECURITY CONSIDERATIONS" above for important
   * @notice principles to keep in mind when implementing your fulfillRandomness
   * @notice method.
   *
   * @dev VRFConsumerBaseV2 expects its subcontracts to have a method with this
   * @dev signature, and will call it once it has verified the proof
   * @dev associated with the randomness. (It is triggered via a call to
   * @dev rawFulfillRandomness, below.)
   *
   * @param requestId The Id initially returned by requestRandomness
   * @param randomWords the VRF output expanded to the requested number of words
   */
  function fulfillRandomWords(uint256 requestId, uint256[] memory randomWords) internal virtual;

  // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
  // proof. rawFulfillRandomness then calls fulfillRandomness, after validating
  // the origin of the call
  function rawFulfillRandomWords(uint256 requestId, uint256[] memory randomWords) external {
    if (msg.sender != vrfCoordinator) {
      revert OnlyCoordinatorCanFulfill(msg.sender, vrfCoordinator);
    }
    fulfillRandomWords(requestId, randomWords);
  }
}

File 10 of 32 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

File 11 of 32 : IEPS_CT.sol
// SPDX-License-Identifier: MIT
//* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//* IEPS_CT: EPS ComposeThis Interface
//* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// EPS Contracts v2.0.0

pragma solidity 0.8.17;

enum ValueType {
  none,
  characterString,
  number,
  date,
  chainAddress
}

struct AddedTrait {
  string trait;
  ValueType valueType;
  uint256 valueInteger;
  string valueString;
  address valueAddress;
}

interface IEPS_CT {
  event MetadataUpdate(
    uint256 chain,
    address tokenContract,
    uint256 tokenId,
    uint256 futureExecutionDate
  );

  event ENSReverseRegistrarSet(address ensReverseRegistrarAddress);

  function composeURIFromBaseURI(
    string memory baseString_,
    AddedTrait[] memory addedTraits_,
    uint256 startImageTag_,
    string[] memory imageTags_
  ) external view returns (string memory composedString_);

  function composeURIFromLookup(
    uint256 baseURIChain_,
    address baseURIContract_,
    uint256 baseURITokenId_,
    AddedTrait[] memory addedTraits_,
    uint256 startImageTag_,
    string[] memory imageTags_
  ) external view returns (string memory composedString_);

  function composeTraitsFromArray(AddedTrait[] memory addedTraits_)
    external
    view
    returns (string memory composedImageURL_);

  function composeImageFromBase(
    string memory baseImage_,
    uint256 startImageTag_,
    string[] memory imageTags_,
    address contractAddress,
    uint256 id
  ) external view returns (string memory composedImageURL_);

  function composeTraitsAndImage(
    string memory baseImage_,
    uint256 startImageTag_,
    string[] memory imageTags_,
    address contractAddress_,
    uint256 id_,
    AddedTrait[] memory addedTraits_
  )
    external
    view
    returns (string memory composedImageURL_, string memory composedTraits_);

  function triggerMetadataUpdate(
    uint256 chain,
    address tokenContract,
    uint256 tokenId,
    uint256 futureExecutionDate
  ) external;
}

File 12 of 32 : IEPS_DR.sol
// SPDX-License-Identifier: MIT
//* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//* IEPS_DR: EPS Delegate Regsiter Interface
//* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// EPS Contracts v2.0.0

pragma solidity ^0.8.17;

/**
 *
 * @dev Interface for the EPS portal
 *
 */

/**
 * @dev Returns the beneficiary of the `tokenId` token.
 */
interface IEPS_DR {
  function beneficiaryOf(
    address tokenContract_,
    uint256 tokenId_,
    uint256 rightsIndex_
  ) external view returns (address beneficiary_);

  /**
   * @dev Returns the beneficiary balance for a contract.
   */
  function beneficiaryBalanceOf(
    address queryAddress_,
    address tokenContract_,
    uint256 rightsIndex_
  ) external view returns (uint256 balance_);

  /**
   * @dev beneficiaryBalance: Returns the beneficiary balance of ETH.
   */
  function beneficiaryBalance(address queryAddress_)
    external
    view
    returns (uint256 balance_);

  /**
   * @dev beneficiaryBalanceOf1155: Returns the beneficiary balance for an ERC1155.
   */
  function beneficiaryBalanceOf1155(
    address queryAddress_,
    address tokenContract_,
    uint256 id_
  ) external view returns (uint256 balance_);

  function getAddresses(address receivedAddress_, uint256 rightsIndex_)
    external
    view
    returns (address[] memory proxyAddresses_, address delivery_);

  function getAddresses1155(address receivedAddress_, uint256 rightsIndex_)
    external
    view
    returns (address[] memory proxyAddresses_, address delivery_);

  function getAddresses20(address receivedAddress_, uint256 rightsIndex_)
    external
    view
    returns (address[] memory proxyAddresses_, address delivery_);

  function getAllAddresses(address receivedAddress_, uint256 rightsIndex_)
    external
    view
    returns (address[] memory proxyAddresses_, address delivery_);

  /**
   * @dev coldIsLive: Return if a cold wallet is live
   */
  function coldIsLive(address cold_) external view returns (bool);

  /**
   * @dev hotIsLive: Return if a hot wallet is live
   */
  function hotIsLive(address hot_) external view returns (bool);
}

File 13 of 32 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 14 of 32 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 15 of 32 : 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 16 of 32 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 17 of 32 : 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 18 of 32 : 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 19 of 32 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 20 of 32 : 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 21 of 32 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 22 of 32 : IONFT721Core.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

/**
 * @dev Interface of the ONFT Core standard
 */
interface IONFT721Core is IERC165 {
  /**
   * @dev estimate send token `_tokenId` to (`_dstChainId`, `_toAddress`)
   * _dstChainId - L0 defined chain id to send tokens too
   * _toAddress - dynamic bytes array which contains the address to whom you are sending tokens to on the dstChain
   * _tokenId - token Id to transfer
   * _useZro - indicates to use zro to pay L0 fees
   * _adapterParams - flexible bytes array to indicate messaging adapter services in L0
   */
  function estimateSendFee(
    uint16 _dstChainId,
    bytes calldata _toAddress,
    uint256 _tokenId,
    bool _useZro,
    bytes calldata _adapterParams
  ) external view returns (uint256 nativeFee, uint256 zroFee);

  /**
   * @dev send token `_tokenId` to (`_dstChainId`, `_toAddress`) from `_from`
   * `_toAddress` can be any size depending on the `dstChainId`.
   * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (LayerZero Token)
   * `_adapterParams` is a flexible bytes array to indicate messaging adapter services
   */
  function sendFrom(
    address _from,
    uint16 _dstChainId,
    bytes calldata _toAddress,
    uint256 _tokenId,
    address payable _refundAddress,
    address _zroPaymentAddress,
    bytes calldata _adapterParams
  ) external payable;

  /**
   * @dev Emitted when `_tokenId` are moved from the `_sender` to (`_dstChainId`, `_toAddress`)
   * `_nonce` is the outbound nonce from
   */
  event SendToChain(
    uint16 indexed _dstChainId,
    address indexed _from,
    bytes indexed _toAddress,
    uint256 _tokenId
  );

  /**
   * @dev Emitted when `_tokenId` are sent from `_srcChainId` to the `_toAddress` at this chain. `_nonce` is the inbound nonce.
   */
  event ReceiveFromChain(
    uint16 indexed _srcChainId,
    bytes indexed _srcAddress,
    address indexed _toAddress,
    uint256 _tokenId
  );
}

File 23 of 32 : NonblockingLzApp.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./LzApp.sol";
import "../util/ExcessivelySafeCall.sol";

/*
 * the default LayerZero messaging behaviour is blocking, i.e. any failed message will block the channel
 * this abstract class try-catch all fail messages and store locally for future retry. hence, non-blocking
 * NOTE: if the srcAddress is not configured properly, it will still block the message pathway from (srcChainId, srcAddress)
 */
abstract contract NonblockingLzApp is LzApp {
    using ExcessivelySafeCall for address;

    constructor(address _endpoint) LzApp(_endpoint) {}

    mapping(uint16 => mapping(bytes => mapping(uint64 => bytes32))) public failedMessages;

    event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload, bytes _reason);
    event RetryMessageSuccess(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _payloadHash);

    // overriding the virtual function in LzReceiver
    function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override {
        (bool success, bytes memory reason) = address(this).excessivelySafeCall(gasleft(), 150, abi.encodeWithSelector(this.nonblockingLzReceive.selector, _srcChainId, _srcAddress, _nonce, _payload));
        // try-catch all errors/exceptions
        if (!success) {
            failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload);
            emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload, reason);
        }
    }

    function nonblockingLzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual {
        // only internal transaction
        require(_msgSender() == address(this), "NonblockingLzApp: caller must be LzApp");
        _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    //@notice override this function
    function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual;

    function retryMessage(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public payable virtual {
        // assert there is message to retry
        bytes32 payloadHash = failedMessages[_srcChainId][_srcAddress][_nonce];
        require(payloadHash != bytes32(0), "NonblockingLzApp: no stored message");
        require(keccak256(_payload) == payloadHash, "NonblockingLzApp: invalid payload");
        // clear the stored message
        failedMessages[_srcChainId][_srcAddress][_nonce] = bytes32(0);
        // execute the message. revert if it fails again
        _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
        emit RetryMessageSuccess(_srcChainId, _srcAddress, _nonce, payloadHash);
    }
}

File 24 of 32 : ExcessivelySafeCall.sol
// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.7.6;

library ExcessivelySafeCall {
    uint256 constant LOW_28_MASK =
    0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff;

    /// @notice Use when you _really_ really _really_ don't trust the called
    /// contract. This prevents the called contract from causing reversion of
    /// the caller in as many ways as we can.
    /// @dev The main difference between this and a solidity low-level call is
    /// that we limit the number of bytes that the callee can cause to be
    /// copied to caller memory. This prevents stupid things like malicious
    /// contracts returning 10,000,000 bytes causing a local OOG when copying
    /// to memory.
    /// @param _target The address to call
    /// @param _gas The amount of gas to forward to the remote contract
    /// @param _maxCopy The maximum number of bytes of returndata to copy
    /// to memory.
    /// @param _calldata The data to send to the remote contract
    /// @return success and returndata, as `.call()`. Returndata is capped to
    /// `_maxCopy` bytes.
    function excessivelySafeCall(
        address _target,
        uint256 _gas,
        uint16 _maxCopy,
        bytes memory _calldata
    ) internal returns (bool, bytes memory) {
        // set up for assembly call
        uint256 _toCopy;
        bool _success;
        bytes memory _returnData = new bytes(_maxCopy);
        // dispatch message to recipient
        // by assembly calling "handle" function
        // we call via assembly to avoid memcopying a very large returndata
        // returned by a malicious contract
        assembly {
            _success := call(
            _gas, // gas
            _target, // recipient
            0, // ether value
            add(_calldata, 0x20), // inloc
            mload(_calldata), // inlen
            0, // outloc
            0 // outlen
            )
        // limit our copy to 256 bytes
            _toCopy := returndatasize()
            if gt(_toCopy, _maxCopy) {
                _toCopy := _maxCopy
            }
        // Store the length of the copied bytes
            mstore(_returnData, _toCopy)
        // copy the bytes from returndata[0:_toCopy]
            returndatacopy(add(_returnData, 0x20), 0, _toCopy)
        }
        return (_success, _returnData);
    }

    /// @notice Use when you _really_ really _really_ don't trust the called
    /// contract. This prevents the called contract from causing reversion of
    /// the caller in as many ways as we can.
    /// @dev The main difference between this and a solidity low-level call is
    /// that we limit the number of bytes that the callee can cause to be
    /// copied to caller memory. This prevents stupid things like malicious
    /// contracts returning 10,000,000 bytes causing a local OOG when copying
    /// to memory.
    /// @param _target The address to call
    /// @param _gas The amount of gas to forward to the remote contract
    /// @param _maxCopy The maximum number of bytes of returndata to copy
    /// to memory.
    /// @param _calldata The data to send to the remote contract
    /// @return success and returndata, as `.call()`. Returndata is capped to
    /// `_maxCopy` bytes.
    function excessivelySafeStaticCall(
        address _target,
        uint256 _gas,
        uint16 _maxCopy,
        bytes memory _calldata
    ) internal view returns (bool, bytes memory) {
        // set up for assembly call
        uint256 _toCopy;
        bool _success;
        bytes memory _returnData = new bytes(_maxCopy);
        // dispatch message to recipient
        // by assembly calling "handle" function
        // we call via assembly to avoid memcopying a very large returndata
        // returned by a malicious contract
        assembly {
            _success := staticcall(
            _gas, // gas
            _target, // recipient
            add(_calldata, 0x20), // inloc
            mload(_calldata), // inlen
            0, // outloc
            0 // outlen
            )
        // limit our copy to 256 bytes
            _toCopy := returndatasize()
            if gt(_toCopy, _maxCopy) {
                _toCopy := _maxCopy
            }
        // Store the length of the copied bytes
            mstore(_returnData, _toCopy)
        // copy the bytes from returndata[0:_toCopy]
            returndatacopy(add(_returnData, 0x20), 0, _toCopy)
        }
        return (_success, _returnData);
    }

    /**
     * @notice Swaps function selectors in encoded contract calls
     * @dev Allows reuse of encoded calldata for functions with identical
     * argument types but different names. It simply swaps out the first 4 bytes
     * for the new selector. This function modifies memory in place, and should
     * only be used with caution.
     * @param _newSelector The new 4-byte selector
     * @param _buf The encoded contract args
     */
    function swapSelector(bytes4 _newSelector, bytes memory _buf)
    internal
    pure
    {
        require(_buf.length >= 4);
        uint256 _mask = LOW_28_MASK;
        assembly {
        // load the first word of
            let _word := mload(add(_buf, 0x20))
        // mask out the top 4 bytes
        // /x
            _word := and(_word, _mask)
            _word := or(_newSelector, _word)
            mstore(add(_buf, 0x20), _word)
        }
    }
}

File 25 of 32 : LzApp.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "../interfaces/ILayerZeroReceiver.sol";
import "../interfaces/ILayerZeroUserApplicationConfig.sol";
import "../interfaces/ILayerZeroEndpoint.sol";
import "../util/BytesLib.sol";

/*
 * a generic LzReceiver implementation
 */
abstract contract LzApp is
  Ownable,
  ILayerZeroReceiver,
  ILayerZeroUserApplicationConfig
{
  using BytesLib for bytes;

  ILayerZeroEndpoint public immutable lzEndpoint;
  mapping(uint16 => bytes) public trustedRemoteLookup;
  mapping(uint16 => mapping(uint16 => uint256)) public minDstGasLookup;
  address public precrime;

  event SetPrecrime(address precrime);
  event SetTrustedRemote(uint16 _remoteChainId, bytes _path);
  event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress);
  event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint256 _minDstGas);

  error InvalidEndpointCaller();
  error InvalidSourceSendingContract();
  error DestinationIsNotTrustedSource();
  error MinGasLimitNotSet();
  error GasLimitIsTooLow();
  error InvalidAdapterParams();
  error NoTrustedPathRecord();
  error InvalidMinGas();

  constructor(address _endpoint) {
    lzEndpoint = ILayerZeroEndpoint(_endpoint);
  }

  function lzReceive(
    uint16 _srcChainId,
    bytes calldata _srcAddress,
    uint64 _nonce,
    bytes calldata _payload
  ) public virtual override {
    // lzReceive must be called by the endpoint for security
    if (_msgSender() != address(lzEndpoint)) {
      revert InvalidEndpointCaller();
    }
    // require(
    //   _msgSender() == address(lzEndpoint),
    //   "LzApp: invalid endpoint caller"
    // );

    bytes memory trustedRemote = trustedRemoteLookup[_srcChainId];
    // if will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote.
    if (
      !(_srcAddress.length == trustedRemote.length &&
        trustedRemote.length > 0 &&
        keccak256(_srcAddress) == keccak256(trustedRemote))
    ) {
      revert InvalidSourceSendingContract();
    }
    // require(
    //   _srcAddress.length == trustedRemote.length &&
    //     trustedRemote.length > 0 &&
    //     keccak256(_srcAddress) == keccak256(trustedRemote),
    //   "LzApp: invalid source sending contract"
    // );

    _blockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
  }

  // abstract function - the default behaviour of LayerZero is blocking. See: NonblockingLzApp if you dont need to enforce ordered messaging
  function _blockingLzReceive(
    uint16 _srcChainId,
    bytes memory _srcAddress,
    uint64 _nonce,
    bytes memory _payload
  ) internal virtual;

  function _lzSend(
    uint16 _dstChainId,
    bytes memory _payload,
    address payable _refundAddress,
    address _zroPaymentAddress,
    bytes memory _adapterParams,
    uint256 _nativeFee
  ) internal virtual {
    bytes memory trustedRemote = trustedRemoteLookup[_dstChainId];

    if (trustedRemote.length == 0) {
      revert DestinationIsNotTrustedSource();
    }
    // require(
    //   trustedRemote.length != 0,
    //   "LzApp: destination chain is not a trusted source"
    // );

    lzEndpoint.send{value: _nativeFee}(
      _dstChainId,
      trustedRemote,
      _payload,
      _refundAddress,
      _zroPaymentAddress,
      _adapterParams
    );
  }

  function _checkGasLimit(
    uint16 _dstChainId,
    uint16 _type,
    bytes memory _adapterParams,
    uint256 _extraGas
  ) internal view virtual {
    uint256 providedGasLimit = _getGasLimit(_adapterParams);
    uint256 minGasLimit = minDstGasLookup[_dstChainId][_type] + _extraGas;

    if (minGasLimit == 0) {
      revert MinGasLimitNotSet();
    }
    //require(minGasLimit > 0, "LzApp: minGasLimit not set");

    if (providedGasLimit < minGasLimit) {
      revert GasLimitIsTooLow();
    }
    //require(providedGasLimit >= minGasLimit, "LzApp: gas limit is too low");
  }

  function _getGasLimit(bytes memory _adapterParams)
    internal
    pure
    virtual
    returns (uint256 gasLimit)
  {
    if (_adapterParams.length < 34) {
      revert InvalidAdapterParams();
    }
    //require(_adapterParams.length >= 34, "LzApp: invalid adapterParams");

    assembly {
      gasLimit := mload(add(_adapterParams, 34))
    }
  }

  //---------------------------UserApplication config----------------------------------------
  function getConfig(
    uint16 _version,
    uint16 _chainId,
    address,
    uint256 _configType
  ) external view returns (bytes memory) {
    return lzEndpoint.getConfig(_version, _chainId, address(this), _configType);
  }

  // generic config for LayerZero user Application
  function setConfig(
    uint16 _version,
    uint16 _chainId,
    uint256 _configType,
    bytes calldata _config
  ) external override onlyOwner {
    lzEndpoint.setConfig(_version, _chainId, _configType, _config);
  }

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

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

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

  // _path = abi.encodePacked(remoteAddress, localAddress)
  // this function set the trusted path for the cross-chain communication
  function setTrustedRemote(uint16 _srcChainId, bytes calldata _path)
    external
    onlyOwner
  {
    trustedRemoteLookup[_srcChainId] = _path;
    emit SetTrustedRemote(_srcChainId, _path);
  }

  function setTrustedRemoteAddress(
    uint16 _remoteChainId,
    bytes calldata _remoteAddress
  ) external onlyOwner {
    trustedRemoteLookup[_remoteChainId] = abi.encodePacked(
      _remoteAddress,
      address(this)
    );
    emit SetTrustedRemoteAddress(_remoteChainId, _remoteAddress);
  }

  function getTrustedRemoteAddress(uint16 _remoteChainId)
    external
    view
    returns (bytes memory)
  {
    bytes memory path = trustedRemoteLookup[_remoteChainId];
    if (path.length == 0) {
      revert NoTrustedPathRecord();
    }
    //require(path.length != 0, "LzApp: no trusted path record");

    return path.slice(0, path.length - 20); // the last 20 bytes should be address(this)
  }

  function setPrecrime(address _precrime) external onlyOwner {
    precrime = _precrime;
    emit SetPrecrime(_precrime);
  }

  function setMinDstGas(
    uint16 _dstChainId,
    uint16 _packetType,
    uint256 _minGas
  ) external onlyOwner {
    if (_minGas == 0) {
      revert InvalidMinGas();
    }
    //require(_minGas > 0, "LzApp: invalid minGas");

    minDstGasLookup[_dstChainId][_packetType] = _minGas;
    emit SetMinDstGas(_dstChainId, _packetType, _minGas);
  }

  //--------------------------- VIEW FUNCTION ----------------------------------------
  function isTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress)
    external
    view
    returns (bool)
  {
    bytes memory trustedSource = trustedRemoteLookup[_srcChainId];
    return keccak256(trustedSource) == keccak256(_srcAddress);
  }
}

File 26 of 32 : ILayerZeroReceiver.sol
// SPDX-License-Identifier: MIT

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 27 of 32 : ILayerZeroUserApplicationConfig.sol
// SPDX-License-Identifier: MIT

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

File 28 of 32 : BytesLib.sol
// SPDX-License-Identifier: Unlicense
/*
 * @title Solidity Bytes Arrays Utils
 * @author Gonçalo Sá <[email protected]>
 *
 * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity.
 *      The library lets you concatenate, slice and type cast bytes arrays both in memory and storage.
 */
pragma solidity >=0.8.0 <0.9.0;


library BytesLib {
    function concat(
        bytes memory _preBytes,
        bytes memory _postBytes
    )
    internal
    pure
    returns (bytes memory)
    {
        bytes memory tempBytes;

        assembly {
        // Get a location of some free memory and store it in tempBytes as
        // Solidity does for memory variables.
            tempBytes := mload(0x40)

        // Store the length of the first bytes array at the beginning of
        // the memory for tempBytes.
            let length := mload(_preBytes)
            mstore(tempBytes, length)

        // Maintain a memory counter for the current write location in the
        // temp bytes array by adding the 32 bytes for the array length to
        // the starting location.
            let mc := add(tempBytes, 0x20)
        // Stop copying when the memory counter reaches the length of the
        // first bytes array.
            let end := add(mc, length)

            for {
            // Initialize a copy counter to the start of the _preBytes data,
            // 32 bytes into its memory.
                let cc := add(_preBytes, 0x20)
            } lt(mc, end) {
            // Increase both counters by 32 bytes each iteration.
                mc := add(mc, 0x20)
                cc := add(cc, 0x20)
            } {
            // Write the _preBytes data into the tempBytes memory 32 bytes
            // at a time.
                mstore(mc, mload(cc))
            }

        // Add the length of _postBytes to the current length of tempBytes
        // and store it as the new length in the first 32 bytes of the
        // tempBytes memory.
            length := mload(_postBytes)
            mstore(tempBytes, add(length, mload(tempBytes)))

        // Move the memory counter back from a multiple of 0x20 to the
        // actual end of the _preBytes data.
            mc := end
        // Stop copying when the memory counter reaches the new combined
        // length of the arrays.
            end := add(mc, length)

            for {
                let cc := add(_postBytes, 0x20)
            } lt(mc, end) {
                mc := add(mc, 0x20)
                cc := add(cc, 0x20)
            } {
                mstore(mc, mload(cc))
            }

        // Update the free-memory pointer by padding our last write location
        // to 32 bytes: add 31 bytes to the end of tempBytes to move to the
        // next 32 byte block, then round down to the nearest multiple of
        // 32. If the sum of the length of the two arrays is zero then add
        // one before rounding down to leave a blank 32 bytes (the length block with 0).
            mstore(0x40, and(
            add(add(end, iszero(add(length, mload(_preBytes)))), 31),
            not(31) // Round down to the nearest 32 bytes.
            ))
        }

        return tempBytes;
    }

    function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal {
        assembly {
        // Read the first 32 bytes of _preBytes storage, which is the length
        // of the array. (We don't need to use the offset into the slot
        // because arrays use the entire slot.)
            let fslot := sload(_preBytes.slot)
        // Arrays of 31 bytes or less have an even value in their slot,
        // while longer arrays have an odd value. The actual length is
        // the slot divided by two for odd values, and the lowest order
        // byte divided by two for even values.
        // If the slot is even, bitwise and the slot with 255 and divide by
        // two to get the length. If the slot is odd, bitwise and the slot
        // with -1 and divide by two.
            let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2)
            let mlength := mload(_postBytes)
            let newlength := add(slength, mlength)
        // slength can contain both the length and contents of the array
        // if length < 32 bytes so let's prepare for that
        // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage
            switch add(lt(slength, 32), lt(newlength, 32))
            case 2 {
            // Since the new array still fits in the slot, we just need to
            // update the contents of the slot.
            // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length
                sstore(
                _preBytes.slot,
                // all the modifications to the slot are inside this
                // next block
                add(
                // we can just add to the slot contents because the
                // bytes we want to change are the LSBs
                fslot,
                add(
                mul(
                div(
                // load the bytes from memory
                mload(add(_postBytes, 0x20)),
                // zero all bytes to the right
                exp(0x100, sub(32, mlength))
                ),
                // and now shift left the number of bytes to
                // leave space for the length in the slot
                exp(0x100, sub(32, newlength))
                ),
                // increase length by the double of the memory
                // bytes length
                mul(mlength, 2)
                )
                )
                )
            }
            case 1 {
            // The stored value fits in the slot, but the combined value
            // will exceed it.
            // get the keccak hash to get the contents of the array
                mstore(0x0, _preBytes.slot)
                let sc := add(keccak256(0x0, 0x20), div(slength, 32))

            // save new length
                sstore(_preBytes.slot, add(mul(newlength, 2), 1))

            // The contents of the _postBytes array start 32 bytes into
            // the structure. Our first read should obtain the `submod`
            // bytes that can fit into the unused space in the last word
            // of the stored array. To get this, we read 32 bytes starting
            // from `submod`, so the data we read overlaps with the array
            // contents by `submod` bytes. Masking the lowest-order
            // `submod` bytes allows us to add that value directly to the
            // stored value.

                let submod := sub(32, slength)
                let mc := add(_postBytes, submod)
                let end := add(_postBytes, mlength)
                let mask := sub(exp(0x100, submod), 1)

                sstore(
                sc,
                add(
                and(
                fslot,
                0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00
                ),
                and(mload(mc), mask)
                )
                )

                for {
                    mc := add(mc, 0x20)
                    sc := add(sc, 1)
                } lt(mc, end) {
                    sc := add(sc, 1)
                    mc := add(mc, 0x20)
                } {
                    sstore(sc, mload(mc))
                }

                mask := exp(0x100, sub(mc, end))

                sstore(sc, mul(div(mload(mc), mask), mask))
            }
            default {
            // get the keccak hash to get the contents of the array
                mstore(0x0, _preBytes.slot)
            // Start copying to the last used word of the stored array.
                let sc := add(keccak256(0x0, 0x20), div(slength, 32))

            // save new length
                sstore(_preBytes.slot, add(mul(newlength, 2), 1))

            // Copy over the first `submod` bytes of the new data as in
            // case 1 above.
                let slengthmod := mod(slength, 32)
                let mlengthmod := mod(mlength, 32)
                let submod := sub(32, slengthmod)
                let mc := add(_postBytes, submod)
                let end := add(_postBytes, mlength)
                let mask := sub(exp(0x100, submod), 1)

                sstore(sc, add(sload(sc), and(mload(mc), mask)))

                for {
                    sc := add(sc, 1)
                    mc := add(mc, 0x20)
                } lt(mc, end) {
                    sc := add(sc, 1)
                    mc := add(mc, 0x20)
                } {
                    sstore(sc, mload(mc))
                }

                mask := exp(0x100, sub(mc, end))

                sstore(sc, mul(div(mload(mc), mask), mask))
            }
        }
    }

    function slice(
        bytes memory _bytes,
        uint256 _start,
        uint256 _length
    )
    internal
    pure
    returns (bytes memory)
    {
        require(_length + 31 >= _length, "slice_overflow");
        require(_bytes.length >= _start + _length, "slice_outOfBounds");

        bytes memory tempBytes;

        assembly {
            switch iszero(_length)
            case 0 {
            // Get a location of some free memory and store it in tempBytes as
            // Solidity does for memory variables.
                tempBytes := mload(0x40)

            // The first word of the slice result is potentially a partial
            // word read from the original array. To read it, we calculate
            // the length of that partial word and start copying that many
            // bytes into the array. The first word we copy will start with
            // data we don't care about, but the last `lengthmod` bytes will
            // land at the beginning of the contents of the new array. When
            // we're done copying, we overwrite the full first word with
            // the actual length of the slice.
                let lengthmod := and(_length, 31)

            // The multiplication in the next line is necessary
            // because when slicing multiples of 32 bytes (lengthmod == 0)
            // the following copy loop was copying the origin's length
            // and then ending prematurely not copying everything it should.
                let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod)))
                let end := add(mc, _length)

                for {
                // The multiplication in the next line has the same exact purpose
                // as the one above.
                    let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start)
                } lt(mc, end) {
                    mc := add(mc, 0x20)
                    cc := add(cc, 0x20)
                } {
                    mstore(mc, mload(cc))
                }

                mstore(tempBytes, _length)

            //update free-memory pointer
            //allocating the array padded to 32 bytes like the compiler does now
                mstore(0x40, and(add(mc, 31), not(31)))
            }
            //if we want a zero-length slice let's just return a zero-length array
            default {
                tempBytes := mload(0x40)
            //zero out the 32 bytes slice we are about to return
            //we need to do it because Solidity does not garbage collect
                mstore(tempBytes, 0)

                mstore(0x40, add(tempBytes, 0x20))
            }
        }

        return tempBytes;
    }

    function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) {
        require(_bytes.length >= _start + 20, "toAddress_outOfBounds");
        address tempAddress;

        assembly {
            tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000)
        }

        return tempAddress;
    }

    function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) {
        require(_bytes.length >= _start + 1 , "toUint8_outOfBounds");
        uint8 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x1), _start))
        }

        return tempUint;
    }

    function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) {
        require(_bytes.length >= _start + 2, "toUint16_outOfBounds");
        uint16 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x2), _start))
        }

        return tempUint;
    }

    function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) {
        require(_bytes.length >= _start + 4, "toUint32_outOfBounds");
        uint32 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x4), _start))
        }

        return tempUint;
    }

    function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) {
        require(_bytes.length >= _start + 8, "toUint64_outOfBounds");
        uint64 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x8), _start))
        }

        return tempUint;
    }

    function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) {
        require(_bytes.length >= _start + 12, "toUint96_outOfBounds");
        uint96 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0xc), _start))
        }

        return tempUint;
    }

    function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) {
        require(_bytes.length >= _start + 16, "toUint128_outOfBounds");
        uint128 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x10), _start))
        }

        return tempUint;
    }

    function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) {
        require(_bytes.length >= _start + 32, "toUint256_outOfBounds");
        uint256 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x20), _start))
        }

        return tempUint;
    }

    function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) {
        require(_bytes.length >= _start + 32, "toBytes32_outOfBounds");
        bytes32 tempBytes32;

        assembly {
            tempBytes32 := mload(add(add(_bytes, 0x20), _start))
        }

        return tempBytes32;
    }

    function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) {
        bool success = true;

        assembly {
            let length := mload(_preBytes)

        // if lengths don't match the arrays are not equal
            switch eq(length, mload(_postBytes))
            case 1 {
            // cb is a circuit breaker in the for loop since there's
            //  no said feature for inline assembly loops
            // cb = 1 - don't breaker
            // cb = 0 - break
                let cb := 1

                let mc := add(_preBytes, 0x20)
                let end := add(mc, length)

                for {
                    let cc := add(_postBytes, 0x20)
                // the next line is the loop condition:
                // while(uint256(mc < end) + cb == 2)
                } eq(add(lt(mc, end), cb), 2) {
                    mc := add(mc, 0x20)
                    cc := add(cc, 0x20)
                } {
                // if any of these checks fails then arrays are not equal
                    if iszero(eq(mload(mc), mload(cc))) {
                    // unsuccess:
                        success := 0
                        cb := 0
                    }
                }
            }
            default {
            // unsuccess:
                success := 0
            }
        }

        return success;
    }

    function equalStorage(
        bytes storage _preBytes,
        bytes memory _postBytes
    )
    internal
    view
    returns (bool)
    {
        bool success = true;

        assembly {
        // we know _preBytes_offset is 0
            let fslot := sload(_preBytes.slot)
        // Decode the length of the stored array like in concatStorage().
            let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2)
            let mlength := mload(_postBytes)

        // if lengths don't match the arrays are not equal
            switch eq(slength, mlength)
            case 1 {
            // slength can contain both the length and contents of the array
            // if length < 32 bytes so let's prepare for that
            // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage
                if iszero(iszero(slength)) {
                    switch lt(slength, 32)
                    case 1 {
                    // blank the last byte which is the length
                        fslot := mul(div(fslot, 0x100), 0x100)

                        if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) {
                        // unsuccess:
                            success := 0
                        }
                    }
                    default {
                    // cb is a circuit breaker in the for loop since there's
                    //  no said feature for inline assembly loops
                    // cb = 1 - don't breaker
                    // cb = 0 - break
                        let cb := 1

                    // get the keccak hash to get the contents of the array
                        mstore(0x0, _preBytes.slot)
                        let sc := keccak256(0x0, 0x20)

                        let mc := add(_postBytes, 0x20)
                        let end := add(mc, mlength)

                    // the next line is the loop condition:
                    // while(uint256(mc < end) + cb == 2)
                        for {} eq(add(lt(mc, end), cb), 2) {
                            sc := add(sc, 1)
                            mc := add(mc, 0x20)
                        } {
                            if iszero(eq(sload(sc), mload(mc))) {
                            // unsuccess:
                                success := 0
                                cb := 0
                            }
                        }
                    }
                }
            }
            default {
            // unsuccess:
                success := 0
            }
        }

        return success;
    }
}

File 29 of 32 : ILayerZeroEndpoint.sol
// SPDX-License-Identifier: MIT

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 lzApp 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 30 of 32 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 31 of 32 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

File 32 of 32 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"primarySaleContract_","type":"address"},{"internalType":"uint256","name":"supply_","type":"uint256"},{"internalType":"uint256","name":"baseChain_","type":"uint256"},{"internalType":"address","name":"epsDelegateRegister_","type":"address"},{"internalType":"address","name":"epsComposeThis_","type":"address"},{"internalType":"address","name":"vrfCoordinator_","type":"address"},{"internalType":"bytes32","name":"vrfKeyHash_","type":"bytes32"},{"internalType":"uint64","name":"vrfSubscriptionId_","type":"uint64"},{"internalType":"address","name":"royaltyReceipientAddress_","type":"address"},{"internalType":"uint96","name":"royaltyPercentageBasisPoints_","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AdapterParamsMustBeEmpty","type":"error"},{"inputs":[],"name":"CallerNotTokenOwnerOrApproved","type":"error"},{"inputs":[],"name":"CannotStakeForZeroDays","type":"error"},{"inputs":[],"name":"DestinationIsNotTrustedSource","type":"error"},{"inputs":[],"name":"GasLimitIsTooLow","type":"error"},{"inputs":[],"name":"IncorrectConfirmationValue","type":"error"},{"inputs":[],"name":"IncorrectETHPayment","type":"error"},{"inputs":[],"name":"InvalidAdapterParams","type":"error"},{"inputs":[],"name":"InvalidAddress","type":"error"},{"inputs":[],"name":"InvalidEndpointCaller","type":"error"},{"inputs":[],"name":"InvalidMinGas","type":"error"},{"inputs":[],"name":"InvalidSourceSendingContract","type":"error"},{"inputs":[],"name":"InvalidToken","type":"error"},{"inputs":[{"internalType":"uint256","name":"requested","type":"uint256"},{"internalType":"uint256","name":"alreadyMinted","type":"uint256"},{"internalType":"uint256","name":"maxAllowance","type":"uint256"}],"name":"MaxPublicMintAllowanceExceeded","type":"error"},{"inputs":[],"name":"MetadataIsLocked","type":"error"},{"inputs":[],"name":"MinGasLimitNotSet","type":"error"},{"inputs":[],"name":"MintingIsClosedForever","type":"error"},{"inputs":[],"name":"NoTrustedPathRecord","type":"error"},{"inputs":[{"internalType":"address","name":"have","type":"address"},{"internalType":"address","name":"want","type":"address"}],"name":"OnlyCoordinatorCanFulfill","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"PositionProofAlreadySet","type":"error"},{"inputs":[],"name":"ProofInvalid","type":"error"},{"inputs":[],"name":"QuantityExceedsRemainingSupply","type":"error"},{"inputs":[{"internalType":"uint256","name":"requested","type":"uint256"},{"internalType":"uint256","name":"remainingAllocation","type":"uint256"}],"name":"RequestingMoreThanRemainingAllocation","type":"error"},{"inputs":[{"internalType":"uint256","name":"requestedStakingDuration","type":"uint256"},{"internalType":"uint256","name":"maxStakingDuration","type":"uint256"}],"name":"StakingDurationExceedsMaximum","type":"error"},{"inputs":[],"name":"ThisIsTheBaseContract","type":"error"},{"inputs":[],"name":"ThisMintIsClosed","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"inputs":[],"name":"VRFAlreadySet","type":"error"},{"inputs":[],"name":"VestingAddressIsLocked","type":"error"},{"inputs":[],"name":"baseChainOnly","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"baseContract","type":"address"}],"name":"BaseContractSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"epsComposeThisAddress","type":"address"}],"name":"EPSComposeThisUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"epsDelegateRegisterAddress","type":"address"}],"name":"EPSDelegateRegisterUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"EPS_CTTurnedOff","type":"event"},{"anonymous":false,"inputs":[],"name":"EPS_CTTurnedOn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"maxStakingDurationInDays","type":"uint16"}],"name":"MaxStakingDurationSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"MerkleRootSet","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"},{"indexed":false,"internalType":"bytes","name":"_reason","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":"uint256","name":"requestId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"randomNumber","type":"uint256"}],"name":"RandomNumberReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":true,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":true,"internalType":"address","name":"_toAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"ReceiveFromChain","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":"bytes32","name":"_payloadHash","type":"bytes32"}],"name":"RetryMessageSuccess","type":"event"},{"anonymous":false,"inputs":[],"name":"Revealed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"bytes","name":"_toAddress","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"SendToChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"_type","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_minDstGas","type":"uint256"}],"name":"SetMinDstGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"SetUseCustomAdapterParams","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"staker","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"stakingEndDate","type":"uint256"}],"name":"TokenStaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"VRFPosition","type":"uint256"}],"name":"VRFPositionSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"vestingAddress","type":"address"}],"name":"VestingAddressSet","type":"event"},{"inputs":[],"name":"FUNCTION_TYPE_SEND","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NO_EXTRA_GAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"arweaveURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"beneficiaryOf","outputs":[{"internalType":"address","name":"beneficiary_","type":"address"},{"internalType":"enum INFTByMetadrop.BeneficiaryType","name":"beneficiaryType_","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"epsComposeThis","outputs":[{"internalType":"contract IEPS_CT","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epsDeligateRegister","outputs":[{"internalType":"contract IEPS_DR","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"failedMessages","outputs":[{"internalType":"bytes32","name":"","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_configType","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStartPosition","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"}],"name":"getTrustedRemoteAddress","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"inStakedPeriod","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"inVestingPeriod","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ipfsURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}],"name":"isTrustedRemote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lzEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"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":"maxStakingDurationInDays","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantityToMint_","type":"uint256"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"vestingInDays_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingComplete","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"offChainOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"positionProof","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preReveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preRevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"primarySaleContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"requestId","type":"uint256"},{"internalType":"uint256[]","name":"randomWords","type":"uint256[]"}],"name":"rawFulfillRandomWords","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"recordedRandomWord","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainingSupply","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":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address payable","name":"_refundAddress","type":"address"},{"internalType":"address","name":"_zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"sendFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"baseContract_","type":"address"}],"name":"setBaseContract","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":"address","name":"recipient","type":"address"},{"internalType":"uint96","name":"fraction","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"epsComposeThis_","type":"address"}],"name":"setEPSComposeThisAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"epsDelegateRegister_","type":"address"}],"name":"setEPSDelegateRegisterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setEPS_CTOff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setEPS_CTOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"maxStakingDurationInDays_","type":"uint16"}],"name":"setMaxStakingPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint16","name":"_packetType","type":"uint16"},{"internalType":"uint256","name":"_minGas","type":"uint256"}],"name":"setMinDstGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"confirmation_","type":"string"}],"name":"setMintingCompleteForeverCannotBeUndone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"positionProof_","type":"bytes32"}],"name":"setPositionProof","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","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":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"preRevealURI_","type":"string"},{"internalType":"string","name":"arweaveURI_","type":"string"},{"internalType":"string","name":"ipfsURI_","type":"string"}],"name":"setURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"setUseCustomAdapterParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"vrfCallbackGasLimit_","type":"uint32"}],"name":"setVRFCallbackGasLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"vrfKeyHash_","type":"bytes32"}],"name":"setVRFKeyHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"vrfRequestConfirmations_","type":"uint16"}],"name":"setVRFRequestConfirmations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"vrfSubscriptionId_","type":"uint64"}],"name":"setVRFSubscriptionId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds_","type":"uint256[]"},{"internalType":"uint256","name":"stakingInDays_","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"stakedOwnerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakingEndDateForToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"useArweave_","type":"bool"}],"name":"switchImageSource","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalUnminted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useArweave","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useCustomAdapterParams","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useEPS_CT","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"vestedOwnerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"vestingEndDateForToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vrfStartPosition","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6101206040526013805463ffffffff19166301000101179055601d80546001600160501b03191666010003000249f01790553480156200003e57600080fd5b5060405162006a9a38038062006a9a833981016040819052620000619162000786565b84733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600a815260200169536d617368766572736560b01b815250604051806040016040528060058152602001640a69a82a6960db1b8152508d8c8c620000cd620002e460201b60201c565b8080620000da3362000566565b6001600160a01b031660805250600a9050620000f78682620008fd565b50600b620001068582620008fd565b5060a0839052601292909255600980546001600160a01b039283166001600160a01b0319918216179091556008805492909316911617905550506daaeb6d7670e522a718067333cd4e3b1562000285578015620001d357604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620001b457600080fd5b505af1158015620001c9573d6000803e3d6000fd5b5050505062000285565b6001600160a01b03821615620002245760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000199565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200026b57600080fd5b505af115801562000280573d6000803e3d6000fd5b505050505b50506001600160a01b0390811660c0528a81166101005260e0899052601b80546001600160a01b031916918716919091179055601c849055620002c883620005b6565b620002d48282620005ec565b50505050505050505050620009c9565b60004660018190036200030c577366a71dcef29a0ffbdbe3c6a460a3b5bc225cd67591505090565b80600503620003305773bfd2135bffbb0b5378b56643c2df8a87552bfa2391505090565b806201388103620003565773f69186dfba60ddb133e91e9a4b5673624293d8f891505090565b80608903620003755760008051602062006a7a83398151915291505090565b80603803620003945760008051602062006a7a83398151915291505090565b8061a86a03620003b45760008051602062006a7a83398151915291505090565b8061a4b103620003d45760008051602062006a7a83398151915291505090565b80600a03620003f35760008051602062006a7a83398151915291505090565b8060fa03620004175773b6319cc6c8c27a8f5daf0dd3df91ea35c4720dd791505090565b806201202c03620004385760008051602062006a5a83398151915291505090565b8061d2af03620004585760008051602062006a5a83398151915291505090565b806363564c40036200047a5760008051602062006a5a83398151915291505090565b80610504036200049a5760008051602062006a5a83398151915291505090565b8061a4ec03620004bf57733a73033c0b1407574c76bdbac67f126f6b4a9aa991505090565b806206984c03620004e05760008051602062006a5a83398151915291505090565b80607a03620004ff5760008051602062006a5a83398151915291505090565b806064036200051e5760008051602062006a5a83398151915291505090565b80612019036200053e5760008051602062006a5a83398151915291505090565b80610440036200055e5760008051602062006a5a83398151915291505090565b600091505090565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620005c062000606565b601b80546001600160401b03909216600160a01b02600160a01b600160e01b0319909216919091179055565b620005f662000606565b62000602828262000668565b5050565b6000546001600160a01b03163314620006665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b565b6127106001600160601b0382161115620006d85760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016200065d565b6001600160a01b038216620007305760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016200065d565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600655565b80516001600160a01b03811681146200078157600080fd5b919050565b6000806000806000806000806000806101408b8d031215620007a757600080fd5b620007b28b62000769565b995060208b0151985060408b01519750620007d060608c0162000769565b9650620007e060808c0162000769565b9550620007f060a08c0162000769565b60c08c015160e08d015191965094506001600160401b03811681146200081557600080fd5b9250620008266101008c0162000769565b6101208c01519092506001600160601b03811681146200084557600080fd5b809150509295989b9194979a5092959850565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200088357607f821691505b602082108103620008a457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620008f857600081815260208120601f850160051c81016020861015620008d35750805b601f850160051c820191505b81811015620008f457828155600101620008df565b5050505b505050565b81516001600160401b0381111562000919576200091962000858565b62000931816200092a84546200086e565b84620008aa565b602080601f831160018114620009695760008415620009505750858301515b600019600386901b1c1916600185901b178555620008f4565b600085815260208120601f198616915b828110156200099a5788860151825594840194600190910190840162000979565b5085821015620009b95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c05160e05161010051615fce62000a8c60003960008181610b6201526120eb01526000818161212b0152818161223501528181612a0901528181612a4101528181613f9801526144e80152600081816117fa015261183c015260008181610fac015281816123bb015281816136c90152613b6b015260008181610ec501528181611180015281816114280152818161154e0152818161192401528181611d1701528181612c8d015281816131e3015261446a0152615fce6000f3fe6080604052600436106105225760003560e01c806379b6ed36116102a2578063af3fb21c11610165578063e0549211116100cc578063ee279efe11610085578063ee279efe146110d3578063eedcf574146110e8578063f2fde38b14611108578063f4e5ce4d14611128578063f5ecbdbc14611148578063f804677d1461116857600080fd5b8063e054921114611019578063e5f73d3a14611039578063e985e9c514611059578063eab45d9c14611079578063eb8d72b714611099578063ed629c5c146110b957600080fd5b8063d1deba1f1161011e578063d1deba1f14610f67578063d218d95d14610f7a578063d5abeb0114610f9a578063d89135cd14610fce578063da0239a614610fe3578063df2a5b3b14610ff957600080fd5b8063af3fb21c14610e8b578063b353aaa714610eb3578063b88d4fde14610ee7578063baf3292d14610f07578063c87b56dd14610f27578063cbed8b9c14610f4757600080fd5b80639f38369a11610209578063a8035301116101c2578063a803530114610dd7578063aa1b103f14610df7578063aa34fbb514610e0c578063aa4e891a14610e2c578063ab96734314610e4b578063abd9df1414610e6b57600080fd5b80639f38369a14610d2c578063a22cb46514610d4c578063a2309ff814610d6c578063a475b5dd14610d81578063a6c3d16514610d96578063a7a2d30214610db657600080fd5b80638cfd8f5c1161025b5780638cfd8f5c14610c6c5780638da5cb5b14610ca457806391afe9e514610cc2578063950c8a7414610cd757806395d89b4114610cf75780639a8cbfb114610d0c57600080fd5b806379b6ed3614610ba45780637d3414c014610bb95780637f66c81814610be6578063836a104014610c16578063843eadab14610c36578063857b767b14610c4c57600080fd5b80633d8b38f6116103ea5780635b8c41e6116103515780636d18c9701161030a5780636d18c97014610ae457806370a0823114610af9578063715018a614610b1957806374689fdf14610b2e5780637471c4b214610b505780637533d78814610b8457600080fd5b80635b8c41e6146109ea5780635de3099914610a395780636352211e14610a6f57806366ad5c8a14610a8f57806369d2ceb114610aaf5780636a5f2a5e14610acf57600080fd5b806342d65a8d116103a357806342d65a8d1461095757806343a0cd0814610977578063447705151461098d5780634bad5cb0146109a257806351905636146109b75780635b32619c146109ca57600080fd5b80633d8b38f6146108855780633ffab939146108a557806340a4dddd146108d557806341f43434146108f557806342842e0e1461091757806342966c681461093757600080fd5b806318160ddd1161048e57806326e5a3621161044757806326e5a362146107a55780632a205e3d146107bb5780632a55205a146107f0578063317b48291461082f578063334fa47e1461084f57806336b7abd41461086f57600080fd5b806318160ddd146106d557806318383fb5146106f85780631dcac94d146107255780631fe543e31461074557806321b1654d1461076557806323b872dd1461078557600080fd5b806308a116a5116104e057806308a116a514610618578063095ea7b314610632578063100788121461065257806310ddb13714610672578063124cfc8c14610692578063125ffd80146106c057600080fd5b80621d35671461052757806301ffc9a71461054957806304634d8d1461057e57806306fdde031461059e57806307e0db17146105c0578063081812fc146105e0575b600080fd5b34801561053357600080fd5b50610547610542366004614c34565b61117d565b005b34801561055557600080fd5b50610569610564366004614cdd565b61133c565b60405190151581526020015b60405180910390f35b34801561058a57600080fd5b50610547610599366004614d0f565b61135f565b3480156105aa57600080fd5b506105b3611375565b6040516105759190614da4565b3480156105cc57600080fd5b506105476105db366004614db7565b611407565b3480156105ec57600080fd5b506106006105fb366004614dd2565b611490565b6040516001600160a01b039091168152602001610575565b34801561062457600080fd5b506013546105699060ff1681565b34801561063e57600080fd5b5061054761064d366004614deb565b6114b7565b34801561065e57600080fd5b5061054761066d366004614e17565b6114d0565b34801561067e57600080fd5b5061054761068d366004614db7565b61152d565b34801561069e57600080fd5b506106b26106ad366004614dd2565b611585565b604051610575929190614e52565b3480156106cc57600080fd5b506105b36116e7565b3480156106e157600080fd5b506106ea611775565b604051908152602001610575565b34801561070457600080fd5b506106ea610713366004614dd2565b60106020526000908152604090205481565b34801561073157600080fd5b50610600610740366004614dd2565b611796565b34801561075157600080fd5b50610547610760366004614f3d565b6117ef565b34801561077157600080fd5b50610547610780366004614db7565b611878565b34801561079157600080fd5b506105476107a0366004614f83565b6118ba565b3480156107b157600080fd5b506106ea60165481565b3480156107c757600080fd5b506107db6107d636600461504f565b6118e5565b60408051928352602083019190915201610575565b3480156107fc57600080fd5b5061081061080b3660046150e1565b6119b0565b604080516001600160a01b039093168352602083019190915201610575565b34801561083b57600080fd5b5061054761084a366004615103565b611a5e565b34801561085b57600080fd5b5061054761086a366004614e17565b611b25565b34801561087b57600080fd5b506106ea601e5481565b34801561089157600080fd5b506105696108a0366004615137565b611b7b565b3480156108b157600080fd5b506105696108c0366004614dd2565b60009081526011602052604090205442111590565b3480156108e157600080fd5b506105476108f0366004615189565b611c48565b34801561090157600080fd5b506106006daaeb6d7670e522a718067333cd4e81565b34801561092357600080fd5b50610547610932366004614f83565b611ca0565b34801561094357600080fd5b50610547610952366004614dd2565b611cc5565b34801561096357600080fd5b50610547610972366004615137565b611cf8565b34801561098357600080fd5b506106ea60155481565b34801561099957600080fd5b506106ea600081565b3480156109ae57600080fd5b50610547611d7e565b6105476109c5366004615210565b611dc4565b3480156109d657600080fd5b50601754610600906001600160a01b031681565b3480156109f657600080fd5b506106ea610a053660046152c9565b6004602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b348015610a4557600080fd5b50610600610a54366004614dd2565b601f602052600090815260409020546001600160a01b031681565b348015610a7b57600080fd5b50610600610a8a366004614dd2565b611dd3565b348015610a9b57600080fd5b50610547610aaa366004614c34565b611e3e565b348015610abb57600080fd5b506013546105699062010000900460ff1681565b348015610adb57600080fd5b50610547611f1a565b348015610af057600080fd5b506106ea611f35565b348015610b0557600080fd5b506106ea610b14366004614e17565b61201a565b348015610b2557600080fd5b5061054761207a565b348015610b3a57600080fd5b5060135461056990640100000000900460ff1681565b348015610b5c57600080fd5b506106007f000000000000000000000000000000000000000000000000000000000000000081565b348015610b9057600080fd5b506105b3610b9f366004614db7565b61208e565b348015610bb057600080fd5b506105b36120a7565b348015610bc557600080fd5b506106ea610bd4366004614dd2565b60116020526000908152604090205481565b348015610bf257600080fd5b50610569610c01366004614dd2565b60009081526010602052604090205442111590565b348015610c2257600080fd5b50610547610c31366004615326565b6120b4565b348015610c4257600080fd5b506106ea60145481565b348015610c5857600080fd5b50610547610c6736600461534d565b612174565b348015610c7857600080fd5b506106ea610c87366004615391565b600260209081526000928352604080842090915290825290205481565b348015610cb057600080fd5b506000546001600160a01b0316610600565b348015610cce57600080fd5b506105476121dc565b348015610ce357600080fd5b50600354610600906001600160a01b031681565b348015610d0357600080fd5b506105b361221c565b348015610d1857600080fd5b50610547610d27366004614e17565b61222b565b348015610d3857600080fd5b506105b3610d47366004614db7565b6122c0565b348015610d5857600080fd5b50610547610d673660046153c4565b6123a0565b348015610d7857600080fd5b506106ea6123b4565b348015610d8d57600080fd5b506105476123e4565b348015610da257600080fd5b50610547610db1366004615137565b612422565b348015610dc257600080fd5b50601354610569906301000000900460ff1681565b348015610de357600080fd5b50600854610600906001600160a01b031681565b348015610e0357600080fd5b506105476124ab565b348015610e1857600080fd5b50610600610e27366004614dd2565b6124bd565b348015610e3857600080fd5b5060135461056990610100900460ff1681565b348015610e5757600080fd5b50600954610600906001600160a01b031681565b348015610e7757600080fd5b50610547610e86366004614dd2565b612509565b348015610e9757600080fd5b50610ea0600181565b60405161ffff9091168152602001610575565b348015610ebf57600080fd5b506106007f000000000000000000000000000000000000000000000000000000000000000081565b348015610ef357600080fd5b50610547610f023660046153f2565b612567565b348015610f1357600080fd5b50610547610f22366004614e17565b61258d565b348015610f3357600080fd5b506105b3610f42366004614dd2565b6125e3565b348015610f5357600080fd5b50610547610f6236600461545d565b612c6e565b610547610f75366004614c34565b612d03565b348015610f8657600080fd5b50610547610f953660046154cb565b612f19565b348015610fa657600080fd5b506106ea7f000000000000000000000000000000000000000000000000000000000000000081565b348015610fda57600080fd5b506106ea612f4e565b348015610fef57600080fd5b506106ea60125481565b34801561100557600080fd5b506105476110143660046154e6565b612f5b565b34801561102557600080fd5b50610547611034366004614dd2565b612fe6565b34801561104557600080fd5b50610547611054366004614db7565b612ff3565b34801561106557600080fd5b50610569611074366004615522565b61301f565b34801561108557600080fd5b50610547611094366004615550565b61304d565b3480156110a557600080fd5b506105476110b4366004615137565b613096565b3480156110c557600080fd5b506005546105699060ff1681565b3480156110df57600080fd5b506105b36130f0565b3480156110f457600080fd5b5061054761110336600461556d565b6130fd565b34801561111457600080fd5b50610547611123366004614e17565b613121565b34801561113457600080fd5b50610547611143366004615550565b613197565b34801561115457600080fd5b506105b3611163366004615593565b6131b2565b34801561117457600080fd5b506012546106ea565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316146111c657604051630d1ad4cd60e01b815260040160405180910390fd5b61ffff8616600090815260016020526040812080546111e4906155e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611210906155e0565b801561125d5780601f106112325761010080835404028352916020019161125d565b820191906000526020600020905b81548152906001019060200180831161124057829003601f168201915b50505050509050805186869050148015611278575060008151115b80156112a0575080516020820120604051611296908890889061561a565b6040518091039020145b6112bd57604051631935e28160e11b815260040160405180910390fd5b6113338787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a93509150889088908190840183828082843760009201919091525061326392505050565b50505050505050565b60006001600160e01b03198216158061135957506113598261336d565b92915050565b6113676133ad565b6113718282613407565b5050565b6060600a8054611384906155e0565b80601f01602080910402602001604051908101604052809291908181526020018280546113b0906155e0565b80156113fd5780601f106113d2576101008083540402835291602001916113fd565b820191906000526020600020905b8154815290600101906020018083116113e057829003601f168201915b5050505050905090565b61140f6133ad565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906307e0db17906024015b600060405180830381600087803b15801561147557600080fd5b505af1158015611489573d6000803e3d6000fd5b5050505050565b600061149b82613504565b506000908152600e60205260409020546001600160a01b031690565b816114c181613549565b6114cb8383613602565b505050565b6114d86133ad565b600880546001600160a01b0319166001600160a01b0383169081179091556040519081527f3784e9ce312a5c6283f4e11bd93a1320e6fa0bdfa7eac11cc10b0b894e4c9302906020015b60405180910390a150565b6115356133ad565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906310ddb1379060240161145b565b6009546040516342de525560e01b8152306004820152602481018390526001604482015260009182916001600160a01b03909116906342de525590606401602060405180830381865afa1580156115e0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611604919061562a565b9150306001600160a01b0383160361169657600061162184611796565b90506001600160a01b0381161561163e5780925060029150611690565b6000611649856124bd565b90506001600160a01b03811615611666578093506003925061168e565b6000858152601f60205260409020546001600160a01b0316801561168c57809450600493505b505b505b506116bb565b61169f83611dd3565b6001600160a01b0316826001600160a01b0316146116bb575060015b6001600160a01b0382166116e25760405163c1ab6dc160e01b815260040160405180910390fd5b915091565b601980546116f4906155e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611720906155e0565b801561176d5780601f106117425761010080835404028352916020019161176d565b820191906000526020600020905b81548152906001019060200180831161175057829003601f168201915b505050505081565b600061177f612f4e565b6117876123b4565b611791919061565d565b905090565b6000818152601160205260408120544210156117e2576000828152600c60205260409020546001600160a01b0316806113595760405163c1ab6dc160e01b815260040160405180910390fd5b506000919050565b919050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461186e5760405163073e64fd60e21b81523360048201526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001660248201526044015b60405180910390fd5b61137182826136a6565b6118806133ad565b61ffff811660148190556040519081527ff1e3171722249628a82c56ba85c5c8e951a7584275dc78424d1c1eb1e3488a2090602001611522565b826001600160a01b03811633146118d4576118d433613549565b6118df8484846137b1565b50505050565b600080600086866040516020016118fd929190615670565b60408051601f198184030181529082905263040a7bb160e41b825291506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb1090611961908b90309086908b908b90600401615692565b6040805180830381865afa15801561197d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a191906156e6565b92509250509550959350505050565b60008281526007602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291611a255750604080518082019091526006546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090611a44906001600160601b03168761570a565b611a4e9190615737565b91519350909150505b9250929050565b611a666133ad565b60006040518060400160405280601981526020017f536d61736876657273654d696e74696e67436f6d706c65746500000000000000815250905080604051602001611ab1919061574b565b6040516020818303038152906040528051906020012082604051602001611ad8919061574b565b6040516020818303038152906040528051906020012003611b0c576013805464ff0000000019166401000000001790555050565b60405163353f4c1760e21b815260040160405180910390fd5b611b2d6133ad565b600980546001600160a01b0319166001600160a01b0383169081179091556040519081527f965ccc841c73347febe94233ffa09c19890576155df1f4b3d0e88a025d96ca6890602001611522565b61ffff831660009081526001602052604081208054829190611b9c906155e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc8906155e0565b8015611c155780601f10611bea57610100808354040283529160200191611c15565b820191906000526020600020905b815481529060010190602001808311611bf857829003601f168201915b505050505090508383604051611c2c92919061561a565b60405180910390208180519060200120149150505b9392505050565b611c506133ad565b60135462010000900460ff1615611c7a57604051630c9e6a8760e41b815260040160405180910390fd5b6018611c8684826157ad565b506019611c9383826157ad565b50601a6118df82826157ad565b826001600160a01b0381163314611cba57611cba33613549565b6118df8484846137e1565b611cd0335b826137fc565b611cec5760405162461bcd60e51b81526004016118659061586c565b611cf58161385a565b50565b611d006133ad565b6040516342d65a8d60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342d65a8d90611d50908690869086906004016158c4565b600060405180830381600087803b158015611d6a57600080fd5b505af1158015611333573d6000803e3d6000fd5b611d866133ad565b6013805463ff000000191663010000001790556040517f6ec445ebd226367c760da3e22a7b51c29dae77260d25aaded229fc4e5315dedb90600090a1565b6113338787878787878761393d565b600081815260116020526040812054421080611dfc575060008281526010602052604090205442105b15611e08575030919050565b6000828152600c60205260409020546001600160a01b0316806113595760405163c1ab6dc160e01b815260040160405180910390fd5b333014611e9c5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401611865565b611f128686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f890181900481028201810190925287815289935091508790879081908401838280828437600092019190915250613a2592505050565b505050505050565b611f226133ad565b6013805462ff0000191662010000179055565b6000611f3f6133ad565b60155415611f60576040516338df8b6b60e21b815260040160405180910390fd5b601b54601c54601d546040516305d3b1d360e41b81526004810192909252600160a01b83046001600160401b03166024830152640100000000810461ffff16604483015263ffffffff808216606484015266010000000000009091041660848201526001600160a01b0390911690635d3b1d309060a4016020604051808303816000875af1158015611ff6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061179191906158e2565b60006001600160a01b03821661205e5760405162461bcd60e51b815260206004820152600960248201526804164647265737320360bc1b6044820152606401611865565b506001600160a01b03166000908152600d602052604090205490565b6120826133ad565b61208c6000613ab8565b565b600160205260009081526040902080546116f4906155e0565b601880546116f4906155e0565b601354640100000000900460ff16156120e05760405163f2f76b4560e01b815260040160405180910390fd5b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146121295760405163e6c4247b60e01b815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000461461216957604051639c69ea9360e01b815260040160405180910390fd5b6114cb828483613b08565b6014548111156121a557601454604051630965f10d60e31b8152611865918391600401918252602082015260400190565b60005b82518110156114cb576121d48382815181106121c6576121c66158fb565b602002602001015183613c14565b6001016121a8565b6121e46133ad565b6013805463ff000000191690556040517f1c6da54a203e852ae860fd53de95ded32d86c66fd127ddf8f0a8224b994d447990600090a1565b6060600b8054611384906155e0565b6122336133ad565b7f000000000000000000000000000000000000000000000000000000000000000046036122725760405162385fc360e61b815260040160405180910390fd5b601780546001600160a01b0319166001600160a01b0383169081179091556040519081527f162775a991e9e7a4e4b1b85ccf72bedbe77f35378bb985817c5441dec13af9af90602001611522565b61ffff81166000908152600160205260408120805460609291906122e3906155e0565b80601f016020809104026020016040519081016040528092919081815260200182805461230f906155e0565b801561235c5780601f106123315761010080835404028352916020019161235c565b820191906000526020600020905b81548152906001019060200180831161233f57829003601f168201915b5050505050905080516000036123855760405163039aee5360e01b815260040160405180910390fd5b611c41600060148351612398919061565d565b839190613d65565b816123aa81613549565b6114cb8383613e72565b60006012547f0000000000000000000000000000000000000000000000000000000000000000611791919061565d565b6123ec6133ad565b6013805461ff00191690556040517fe2a7169cedebe39671840370ae19ca4fc41be6191d4c77f174f189a4d8cd08c890600090a1565b61242a6133ad565b81813060405160200161243f93929190615911565b60408051601f1981840301815291815261ffff851660009081526001602052209061246a90826157ad565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161249e939291906158c4565b60405180910390a1505050565b6124b36133ad565b61208c6000600655565b6000818152601060205260408120544210156117e2576000828152600c60205260409020546001600160a01b0316806113595760405163c1ab6dc160e01b815260040160405180910390fd5b6125116133ad565b601e5415612532576040516342c2089760e01b815260040160405180910390fd5b601e8190556040518181527f42cbc405e4dbf1b691e85b9a34b08ecfcf7a9ad9078bf4d645ccfa1fac11c10b90602001611522565b836001600160a01b03811633146125815761258133613549565b61148985858585613e7d565b6125956133ad565b600380546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b90602001611522565b60606125ee82613504565b6013546301000000900460ff16801561261157506008546001600160a01b031615155b15612c65576000828152601160205260409020544210156128595760408051600280825260608201909252600091816020015b61264c614b91565b815260200190600190039081612644579050506040805160e08101909152600c60a082019081526b14dd185ad95908155b9d1a5b60a21b60c0830152815290915060208101600381526000858152601160209081526040808320548285015280519182018152828252830152606090910181905282518391906126d1576126d16158fb565b6020908102919091018101919091526040805160e08101909152600660a082019081526514dd185ad95960d21b60c083015281529081016001815260200160008152602001604051806040016040528060048152602001637472756560e01b815250815260200160006001600160a01b031681525081600181518110612759576127596158fb565b6020908102919091010152604080516001808252818301909252600091816020015b606081526020019060019003908161277b579050509050604051806040016040528060068152602001651cdd185ad95960d21b815250816000815181106127c4576127c46158fb565b60209081029190910101526008546001600160a01b031663679049fe6127e986613eae565b846001856040518563ffffffff1660e01b815260040161280c9493929190615a2c565b600060405180830381865afa158015612829573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526128519190810190615a9b565b949350505050565b600082815260106020526040902054421015612a075760408051600280825260608201909252600091816020015b61288f614b91565b815260200190600190039081612887579050506040805160e08101909152600c60a082019081526b15995cdd195908155b9d1a5b60a21b60c083015281529091506020810160038152600085815260106020908152604080832054828501528051918201815282825283015260609091018190528251839190612914576129146158fb565b6020908102919091018101919091526040805160e08101909152600660a082019081526515995cdd195960d21b60c083015281529081016001815260200160008152602001604051806040016040528060048152602001637472756560e01b815250815260200160006001600160a01b03168152508160018151811061299c5761299c6158fb565b6020908102919091010152604080516001808252818301909252600091816020015b60608152602001906001900390816129be579050509050604051806040016040528060068152602001651d995cdd195960d21b815250816000815181106127c4576127c46158fb565b7f00000000000000000000000000000000000000000000000000000000000000004614612b2d576008546001600160a01b03166315dac91d7f0000000000000000000000000000000000000000000000000000000000000000612a68613f94565b604080516000808252602082019092528791612a9a565b612a87614b91565b815260200190600190039081612a7f5790505b506040805160008082526020820190925281612ac6565b6060815260200190600190039081612ab15790505b506040518763ffffffff1660e01b8152600401612ae896959493929190615ae3565b600060405180830381865afa158015612b05573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113599190810190615a9b565b30612b3783611dd3565b6001600160a01b031603612c6557604080516001808252818301909252600091816020015b612b64614b91565b815260200190600190039081612b5c579050506040805160e08101909152600960a082019081526827b33316b1b430b4b760b91b60c08301528152909150602081016001815260200160008152602001604051806040016040528060048152602001637472756560e01b815250815260200160006001600160a01b031681525081600081518110612bf757612bf76158fb565b6020908102919091010152604080516001808252818301909252600091816020015b6060815260200190600190039081612c195790505090506040518060400160405280600981526020016837b33316b1b430b4b760b91b815250816000815181106127c4576127c46158fb565b61135982613eae565b612c766133ad565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063cbed8b9c90612cca9088908890889088908890600401615b35565b600060405180830381600087803b158015612ce457600080fd5b505af1158015612cf8573d6000803e3d6000fd5b505050505050505050565b61ffff86166000908152600460205260408082209051612d26908890889061561a565b90815260408051602092819003830190206001600160401b03871660009081529252902054905080612da65760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401611865565b808383604051612db792919061561a565b604051809103902014612e165760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401611865565b61ffff87166000908152600460205260408082209051612e39908990899061561a565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f88018290048202830182019052868252612ed1918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a935091508890889081908401838280828437600092019190915250613a2592505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051612f08959493929190615b63565b60405180910390a150505050505050565b612f216133ad565b601b80546001600160401b03909216600160a01b0267ffffffffffffffff60a01b19909216919091179055565b600061179161dead61201a565b612f636133ad565b80600003612f845760405163e4ac3b3f60e01b815260040160405180910390fd5b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac09060600161249e565b612fee6133ad565b601c55565b612ffb6133ad565b601d805461ffff9092166401000000000265ffff0000000019909216919091179055565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205460ff1690565b6130556133ad565b6005805460ff19168215159081179091556040519081527f1584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a490602001611522565b61309e6133ad565b61ffff831660009081526001602052604090206130bc828483615b9e565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161249e939291906158c4565b601a80546116f4906155e0565b6131056133ad565b601d805463ffffffff191663ffffffff92909216919091179055565b6131296133ad565b6001600160a01b03811661318e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611865565b611cf581613ab8565b61319f6133ad565b6013805460ff1916911515919091179055565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f5ecbdbc90608401600060405180830381865afa158015613232573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261325a9190810190615c7d565b95945050505050565b6000806132c65a60966366ad5c8a60e01b8989898960405160240161328b9493929190615cb1565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915230929190613fe7565b9150915081611f12578280519060200120600460008861ffff1661ffff16815260200190815260200160002086604051613300919061574b565b9081526040805191829003602090810183206001600160401b0389166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c9061335d9088908890889088908790615cef565b60405180910390a1505050505050565b60006001600160e01b031982166380ac58cd60e01b148061339e57506001600160e01b03198216635b5e139f60e01b145b80611359575061135982614071565b6000546001600160a01b0316331461208c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611865565b6127106001600160601b03821611156134755760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401611865565b6001600160a01b0382166134cb5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401611865565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600655565b61350d81614096565b611cf55760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2102a37b5b2b760991b6044820152606401611865565b6daaeb6d7670e522a718067333cd4e3b15611cf557604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156135b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135da9190615d41565b611cf557604051633b79c77360e21b81526001600160a01b0382166004820152602401611865565b600061360d82611dd3565b9050806001600160a01b0316836001600160a01b0316036136645760405162461bcd60e51b815260206004820152601160248201527020b8383937bb30b6103a379037bbb732b960791b6044820152606401611865565b336001600160a01b03821614806136805750613680813361301f565b61369c5760405162461bcd60e51b81526004016118659061586c565b6114cb83836140b3565b806000815181106136b9576136b96158fb565b60200260200101516015819055507f0000000000000000000000000000000000000000000000000000000000000000816000815181106136fb576136fb6158fb565b602002602001015161370d9190615d5e565b613718906001615d72565b601681905550817f9f3dfe0efa24b207b42aad32b527da86eb44e0c0e09e3c22e3a342f444d257e182600081518110613753576137536158fb565b602002602001015160405161376a91815260200190565b60405180910390a27f0ddd09f4c3f776cb47fcfde04c8b3edaeaac6d3887a88978091f2d7dcd8649f96016546040516137a591815260200190565b60405180910390a15050565b6137ba33611cca565b6137d65760405162461bcd60e51b81526004016118659061586c565b6114cb838383614121565b6114cb83838360405180602001604052806000815250612567565b60008061380883611dd3565b9050806001600160a01b0316846001600160a01b0316148061382f575061382f818561301f565b806128515750836001600160a01b031661384884611490565b6001600160a01b031614949350505050565b600061386582611dd3565b90506000828152600e6020908152604080832080546001600160a01b03191690556001600160a01b0384168352600d90915281208054600192906138aa90849061565d565b90915550506000828152600c60209081526040822080546001600160a01b03191661dead9081179091558252600d90527fdc7fafdc41998a74ecacb8f8bd877011aba1f1d03a3a0d37a2e7879a393b1d6a80546001929061390c908490615d72565b9091555050604051829061dead906001600160a01b03841690600080516020615f7983398151915290600090a45050565b6139498787878761425a565b6000858560405160200161395e929190615670565b60408051601f1981840301815291905260055490915060ff161561398f5761398a876001846000614313565b6139af565b8151156139af57604051638fadcadb60e01b815260040160405180910390fd5b6139bd878286868634614394565b856040516139cb919061574b565b6040518091039020886001600160a01b03168861ffff167f39a4c66499bcf4b56d79f0dde8ed7a9d4925a0df55825206b2b8531e202be0d088604051613a1391815260200190565b60405180910390a45050505050505050565b60008082806020019051810190613a3c9190615d85565b60148201519193509150613a518782846144e6565b806001600160a01b031686604051613a69919061574b565b60405180910390208861ffff167f776434b505c7beb3db155c58df6c88985bf7c31730767e43ec773005059fed7a85604051613aa791815260200190565b60405180910390a450505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601254821115613b2b57604051637cd4b50160e01b815260040160405180910390fd5b613b486000846001604051806020016040528060008152506145cb565b613b645760405162461bcd60e51b815260040161186590615dcb565b60006012547f0000000000000000000000000000000000000000000000000000000000000000613b94919061565d565b905060005b83811015613bcf57613bb485613baf8385615d72565b614714565b613bc7613bc18284615d72565b8461475b565b600101613b99565b5082601254613bde919061565d565b6012556001600160a01b0384166000908152600d602052604081208054859290613c09908490615d72565b909155505050505050565b613c1f335b836137fc565b613c3c576040516329572f6760e01b815260040160405180910390fd5b6000828152600e60205260409020546001600160a01b031615613c6457613c646000836140b3565b80600003613c85576040516304f1387560e01b815260040160405180910390fd5b6000613c94826201518061570a565b613c9e9042615d72565b60008481526011602052604090819020829055600854905163940707d560e01b815246600482015230602482015260448101869052606481018390529192506001600160a01b03169063940707d590608401600060405180830381600087803b158015613d0a57600080fd5b505af1158015613d1e573d6000803e3d6000fd5b505050508083613d2b3390565b6001600160a01b03167f6173e4d2d9dd52aae0ed37afed3adcf924a490639b759ca93d32dc43366c17d260405160405180910390a4505050565b606081613d7381601f615d72565b1015613db25760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401611865565b613dbc8284615d72565b84511015613e005760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401611865565b606082158015613e1f5760405191506000825260208201604052613e69565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015613e58578051835260209283019201613e40565b5050858452601f01601f1916604052505b50949350505050565b6113713383836147d1565b613e8633613c19565b613ea25760405162461bcd60e51b81526004016118659061586c565b6118df84848484614893565b601354606090610100900460ff1615613f1d57600060188054613ed0906155e0565b905011613eec5760405180602001604052806000815250611359565b6018613ef7836148c6565b604051602001613f08929190615df1565b60405160208183030381529060405292915050565b60135460ff1615613f5e57600060198054613f37906155e0565b905011613f535760405180602001604052806000815250611359565b6019613ef7836148c6565b6000601a8054613f6d906155e0565b905011613f895760405180602001604052806000815250611359565b601a613ef7836148c6565b60007f00000000000000000000000000000000000000000000000000000000000000004603613fc257503090565b6017546001600160a01b0316613fd757503090565b506017546001600160a01b031690565b6000606060008060008661ffff166001600160401b0381111561400c5761400c614e78565b6040519080825280601f01601f191660200182016040528015614036576020820181803683370190505b50905060008087516020890160008d8df191503d925086831115614058578692505b828152826000602083013e909890975095505050505050565b60006001600160e01b0319821663152a902d60e11b14806113595750611359826149c6565b6000908152600c60205260409020546001600160a01b0316151590565b6000818152600e6020526040902080546001600160a01b0319166001600160a01b03841690811790915581906140e882611dd3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b826001600160a01b031661413482611dd3565b6001600160a01b03161461415a5760405162461bcd60e51b815260040161186590615e88565b6001600160a01b0382166141a35760405162461bcd60e51b815260206004820152601060248201526f54667220746f2030206164647265737360801b6044820152606401611865565b826001600160a01b03166141b682611dd3565b6001600160a01b0316146141dc5760405162461bcd60e51b815260040161186590615e88565b6000818152600e6020908152604080832080546001600160a01b03199081169091556001600160a01b03878116808652600d8552838620805460001901905590871680865283862080546001019055868652600c9094528285208054909216841790915590518493600080516020615f7983398151915291a4505050565b61426333611cca565b6142a85760405162461bcd60e51b8152602060048201526016602482015275139bdd081bdddb995c881b9bdc88185c1c1c9bdd995960521b6044820152606401611865565b836001600160a01b03166142bb82611dd3565b6001600160a01b0316146142e15760405162461bcd60e51b815260040161186590615e88565b6000818152601f6020526040902080546001600160a01b0319166001600160a01b0386161790556118df843083614121565b600061431e836149fb565b61ffff808716600090815260026020908152604080832093891683529290529081205491925090614350908490615d72565b90508060000361437357604051631f3ec9d560e11b815260040160405180910390fd5b80821015611f125760405163785fb05760e11b815260040160405180910390fd5b61ffff8616600090815260016020526040812080546143b2906155e0565b80601f01602080910402602001604051908101604052809291908181526020018280546143de906155e0565b801561442b5780601f106144005761010080835404028352916020019161442b565b820191906000526020600020905b81548152906001019060200180831161440e57829003601f168201915b50505050509050805160000361445457604051630b86d4eb60e31b815260040160405180910390fd5b60405162c5803160e81b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c58031009084906144ab908b9086908c908c908c908c90600401615eab565b6000604051808303818588803b1580156144c457600080fd5b505af11580156144d8573d6000803e3d6000fd5b505050505050505050505050565b7f0000000000000000000000000000000000000000000000000000000000000000460361454b5761451681614096565b801561453257503061452782611dd3565b6001600160a01b0316145b61453b57600080fd5b614546308383614121565b6145ab565b61455481614096565b1580614580575061456481614096565b801561458057503061457582611dd3565b6001600160a01b0316145b61458957600080fd5b61459281614096565b6145a0576145468282614a28565b6145ab308383614121565b6000908152601f6020526040902080546001600160a01b03191690555050565b60006001600160a01b0384163b1561470c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061460f903390899088908890600401615f05565b6020604051808303816000875af192505050801561464a575060408051601f3d908101601f1916820190925261464791810190615f42565b60015b6146f2573d808015614678576040519150601f19603f3d011682016040523d82523d6000602084013e61467d565b606091505b5080516000036146ea5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401611865565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612851565b506001612851565b6000818152600c602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020615f79833981519152908290a45050565b8015611371576000614770826201518061570a565b61477a9042615d72565b60008481526010602052604090819020829055600854905163940707d560e01b815246600482015230602482015260448101869052606481018390529192506001600160a01b03169063940707d590608401611d50565b816001600160a01b0316836001600160a01b0316036148265760405162461bcd60e51b815260206004820152601160248201527020b8383937bb32903a379031b0b63632b960791b6044820152606401611865565b6001600160a01b038381166000818152600f6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61489e848484614121565b6148aa848484846145cb565b6118df5760405162461bcd60e51b815260040161186590615dcb565b6060816000036148ed5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115614917578061490181615f5f565b91506149109050600a83615737565b91506148f1565b6000816001600160401b0381111561493157614931614e78565b6040519080825280601f01601f19166020018201604052801561495b576020820181803683370190505b5090505b84156128515761497060018361565d565b915061497d600a86615d5e565b614988906030615d72565b60f81b81838151811061499d5761499d6158fb565b60200101906001600160f81b031916908160001a9053506149bf600a86615737565b945061495f565b60006001600160e01b03198216637bb0080b60e01b148061135957506301ffc9a760e01b6001600160e01b0319831614611359565b6000602282511015614a205760405163cef80ea360e01b815260040160405180910390fd5b506022015190565b611371828260405180602001604052806000815250614a478383614a70565b614a5460008484846145cb565b6114cb5760405162461bcd60e51b815260040161186590615dcb565b6001600160a01b038216614aba5760405162461bcd60e51b81526020600482015260116024820152704d696e7420746f2030206164647265737360781b6044820152606401611865565b614ac381614096565b15614af95760405162461bcd60e51b815260206004820152600660248201526545786973747360d01b6044820152606401611865565b614b0281614096565b15614b385760405162461bcd60e51b815260206004820152600660248201526545786973747360d01b6044820152606401611865565b6001600160a01b0382166000818152600d6020908152604080832080546001019055848352600c90915280822080546001600160a01b031916841790555183929190600080516020615f79833981519152908290a45050565b6040805160a08101909152606081526020810160008152602001600081526020016060815260200160006001600160a01b031681525090565b803561ffff811681146117ea57600080fd5b60008083601f840112614bee57600080fd5b5081356001600160401b03811115614c0557600080fd5b602083019150836020828501011115611a5757600080fd5b80356001600160401b03811681146117ea57600080fd5b60008060008060008060808789031215614c4d57600080fd5b614c5687614bca565b955060208701356001600160401b0380821115614c7257600080fd5b614c7e8a838b01614bdc565b9097509550859150614c9260408a01614c1d565b94506060890135915080821115614ca857600080fd5b50614cb589828a01614bdc565b979a9699509497509295939492505050565b6001600160e01b031981168114611cf557600080fd5b600060208284031215614cef57600080fd5b8135611c4181614cc7565b6001600160a01b0381168114611cf557600080fd5b60008060408385031215614d2257600080fd5b8235614d2d81614cfa565b915060208301356001600160601b0381168114614d4957600080fd5b809150509250929050565b60005b83811015614d6f578181015183820152602001614d57565b50506000910152565b60008151808452614d90816020860160208601614d54565b601f01601f19169290920160200192915050565b602081526000611c416020830184614d78565b600060208284031215614dc957600080fd5b611c4182614bca565b600060208284031215614de457600080fd5b5035919050565b60008060408385031215614dfe57600080fd5b8235614e0981614cfa565b946020939093013593505050565b600060208284031215614e2957600080fd5b8135611c4181614cfa565b60058110611cf557634e487b7160e01b600052602160045260246000fd5b6001600160a01b038316815260408101614e6b83614e34565b8260208301529392505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715614eb657614eb6614e78565b604052919050565b600082601f830112614ecf57600080fd5b813560206001600160401b03821115614eea57614eea614e78565b8160051b614ef9828201614e8e565b9283528481018201928281019087851115614f1357600080fd5b83870192505b84831015614f3257823582529183019190830190614f19565b979650505050505050565b60008060408385031215614f5057600080fd5b8235915060208301356001600160401b03811115614f6d57600080fd5b614f7985828601614ebe565b9150509250929050565b600080600060608486031215614f9857600080fd5b8335614fa381614cfa565b92506020840135614fb381614cfa565b929592945050506040919091013590565b60006001600160401b03821115614fdd57614fdd614e78565b50601f01601f191660200190565b600082601f830112614ffc57600080fd5b813561500f61500a82614fc4565b614e8e565b81815284602083860101111561502457600080fd5b816020850160208301376000918101602001919091529392505050565b8015158114611cf557600080fd5b600080600080600060a0868803121561506757600080fd5b61507086614bca565b945060208601356001600160401b038082111561508c57600080fd5b61509889838a01614feb565b955060408801359450606088013591506150b182615041565b909250608087013590808211156150c757600080fd5b506150d488828901614feb565b9150509295509295909350565b600080604083850312156150f457600080fd5b50508035926020909101359150565b60006020828403121561511557600080fd5b81356001600160401b0381111561512b57600080fd5b61285184828501614feb565b60008060006040848603121561514c57600080fd5b61515584614bca565b925060208401356001600160401b0381111561517057600080fd5b61517c86828701614bdc565b9497909650939450505050565b60008060006060848603121561519e57600080fd5b83356001600160401b03808211156151b557600080fd5b6151c187838801614feb565b945060208601359150808211156151d757600080fd5b6151e387838801614feb565b935060408601359150808211156151f957600080fd5b5061520686828701614feb565b9150509250925092565b600080600080600080600060e0888a03121561522b57600080fd5b873561523681614cfa565b965061524460208901614bca565b955060408801356001600160401b038082111561526057600080fd5b61526c8b838c01614feb565b965060608a0135955060808a0135915061528582614cfa565b90935060a08901359061529782614cfa565b90925060c089013590808211156152ad57600080fd5b506152ba8a828b01614feb565b91505092959891949750929550565b6000806000606084860312156152de57600080fd5b6152e784614bca565b925060208401356001600160401b0381111561530257600080fd5b61530e86828701614feb565b92505061531d60408501614c1d565b90509250925092565b60008060006060848603121561533b57600080fd5b833592506020840135614fb381614cfa565b6000806040838503121561536057600080fd5b82356001600160401b0381111561537657600080fd5b61538285828601614ebe565b95602094909401359450505050565b600080604083850312156153a457600080fd5b6153ad83614bca565b91506153bb60208401614bca565b90509250929050565b600080604083850312156153d757600080fd5b82356153e281614cfa565b91506020830135614d4981615041565b6000806000806080858703121561540857600080fd5b843561541381614cfa565b9350602085013561542381614cfa565b92506040850135915060608501356001600160401b0381111561544557600080fd5b61545187828801614feb565b91505092959194509250565b60008060008060006080868803121561547557600080fd5b61547e86614bca565b945061548c60208701614bca565b93506040860135925060608601356001600160401b038111156154ae57600080fd5b6154ba88828901614bdc565b969995985093965092949392505050565b6000602082840312156154dd57600080fd5b611c4182614c1d565b6000806000606084860312156154fb57600080fd5b61550484614bca565b925061551260208501614bca565b9150604084013590509250925092565b6000806040838503121561553557600080fd5b823561554081614cfa565b91506020830135614d4981614cfa565b60006020828403121561556257600080fd5b8135611c4181615041565b60006020828403121561557f57600080fd5b813563ffffffff81168114611c4157600080fd5b600080600080608085870312156155a957600080fd5b6155b285614bca565b93506155c060208601614bca565b925060408501356155d081614cfa565b9396929550929360600135925050565b600181811c908216806155f457607f821691505b60208210810361561457634e487b7160e01b600052602260045260246000fd5b50919050565b8183823760009101908152919050565b60006020828403121561563c57600080fd5b8151611c4181614cfa565b634e487b7160e01b600052601160045260246000fd5b8181038181111561135957611359615647565b6040815260006156836040830185614d78565b90508260208301529392505050565b61ffff861681526001600160a01b038516602082015260a0604082018190526000906156c090830186614d78565b841515606084015282810360808401526156da8185614d78565b98975050505050505050565b600080604083850312156156f957600080fd5b505080516020909101519092909150565b808202811582820484141761135957611359615647565b634e487b7160e01b600052601260045260246000fd5b60008261574657615746615721565b500490565b6000825161575d818460208701614d54565b9190910192915050565b601f8211156114cb57600081815260208120601f850160051c8101602086101561578e5750805b601f850160051c820191505b81811015611f125782815560010161579a565b81516001600160401b038111156157c6576157c6614e78565b6157da816157d484546155e0565b84615767565b602080601f83116001811461580f57600084156157f75750858301515b600019600386901b1c1916600185901b178555611f12565b600085815260208120601f198616915b8281101561583e5788860151825594840194600190910190840161581f565b508582101561585c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b602080825260159082015274139bdd081bdddb995c881bdc88185c1c1c9bdd9959605a1b604082015260600190565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff8416815260406020820152600061325a60408301848661589b565b6000602082840312156158f457600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b600081518084526020808501808196508360051b8101915082860160005b858110156159d7578284038952815160a0815181875261597782880182614d78565b9150508682015161598781614e34565b8688015260408281015190870152606080830151878303828901526159ac8382614d78565b6080948501516001600160a01b03169890940197909752505098850198935090840190600101615955565b5091979650505050505050565b600081518084526020808501808196508360051b8101915082860160005b858110156159d7578284038952615a1a848351614d78565b98850198935090840190600101615a02565b608081526000615a3f6080830187614d78565b8281036020840152615a518187615937565b90508460408401528281036060840152614f3281856159e4565b6000615a7961500a84614fc4565b9050828152838383011115615a8d57600080fd5b611c41836020830184614d54565b600060208284031215615aad57600080fd5b81516001600160401b03811115615ac357600080fd5b8201601f81018413615ad457600080fd5b61285184825160208401615a6b565b86815260018060a01b038616602082015284604082015260c060608201526000615b1060c0830186615937565b84608084015282810360a0840152615b2881856159e4565b9998505050505050505050565b600061ffff808816835280871660208401525084604083015260806060830152614f3260808301848661589b565b61ffff86168152608060208201526000615b8160808301868861589b565b6001600160401b0394909416604083015250606001529392505050565b6001600160401b03831115615bb557615bb5614e78565b615bc983615bc383546155e0565b83615767565b6000601f841160018114615bfd5760008515615be55750838201355b600019600387901b1c1916600186901b178355611489565b600083815260209020601f19861690835b82811015615c2e5786850135825560209485019460019092019101615c0e565b5086821015615c4b5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600082601f830112615c6e57600080fd5b611c4183835160208501615a6b565b600060208284031215615c8f57600080fd5b81516001600160401b03811115615ca557600080fd5b61285184828501615c5d565b61ffff85168152608060208201526000615cce6080830186614d78565b6001600160401b03851660408401528281036060840152614f328185614d78565b61ffff8616815260a060208201526000615d0c60a0830187614d78565b6001600160401b03861660408401528281036060840152615d2d8186614d78565b905082810360808401526156da8185614d78565b600060208284031215615d5357600080fd5b8151611c4181615041565b600082615d6d57615d6d615721565b500690565b8082018082111561135957611359615647565b60008060408385031215615d9857600080fd5b82516001600160401b03811115615dae57600080fd5b615dba85828601615c5d565b925050602083015190509250929050565b6020808252600c908201526b2737ba103932b1b2b4bb32b960a11b604082015260600190565b6000808454615dff816155e0565b60018281168015615e175760018114615e2c57615e5b565b60ff1984168752821515830287019450615e5b565b8860005260208060002060005b85811015615e525781548a820152908401908201615e39565b50505082870194505b505050508351615e6f818360208801614d54565b64173539b7b760d91b9101908152600501949350505050565b6020808252600990820152682737ba1037bbb732b960b91b604082015260600190565b61ffff8716815260c060208201526000615ec860c0830188614d78565b8281036040840152615eda8188614d78565b6001600160a01b0387811660608601528616608085015283810360a08501529050615b288185614d78565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615f3890830184614d78565b9695505050505050565b600060208284031215615f5457600080fd5b8151611c4181614cc7565b600060018201615f7157615f71615647565b506001019056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220cec58943b82b005f1a5414fd3e6a7e2ca95eb2dc0cf550401926b4765dd44bd764736f6c634300081100330000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e40000000000000000000000003c2269811836af69497e5f486a85d7316753cf620000000000000000000000007233811ede01bbee955f64065f8262994de8a1ea0000000000000000000000000000000000000000000000000000000000001d4c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000af8fe6e4de40f4804c90fa8ea8f0000000000000000000000008888888888885e891f3722cc111107e4ce36eaa4000000000000000000000000271682deb8c4e0901d1a1550ad2e64d568e699098af398995b04c28e9951adb9721ef74c74f93e6a478f39e7e0777be13527e7ef0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000244a3c22a0270e4339f98b156e3dcb400f03990700000000000000000000000000000000000000000000000000000000000001f4

Deployed Bytecode

0x6080604052600436106105225760003560e01c806379b6ed36116102a2578063af3fb21c11610165578063e0549211116100cc578063ee279efe11610085578063ee279efe146110d3578063eedcf574146110e8578063f2fde38b14611108578063f4e5ce4d14611128578063f5ecbdbc14611148578063f804677d1461116857600080fd5b8063e054921114611019578063e5f73d3a14611039578063e985e9c514611059578063eab45d9c14611079578063eb8d72b714611099578063ed629c5c146110b957600080fd5b8063d1deba1f1161011e578063d1deba1f14610f67578063d218d95d14610f7a578063d5abeb0114610f9a578063d89135cd14610fce578063da0239a614610fe3578063df2a5b3b14610ff957600080fd5b8063af3fb21c14610e8b578063b353aaa714610eb3578063b88d4fde14610ee7578063baf3292d14610f07578063c87b56dd14610f27578063cbed8b9c14610f4757600080fd5b80639f38369a11610209578063a8035301116101c2578063a803530114610dd7578063aa1b103f14610df7578063aa34fbb514610e0c578063aa4e891a14610e2c578063ab96734314610e4b578063abd9df1414610e6b57600080fd5b80639f38369a14610d2c578063a22cb46514610d4c578063a2309ff814610d6c578063a475b5dd14610d81578063a6c3d16514610d96578063a7a2d30214610db657600080fd5b80638cfd8f5c1161025b5780638cfd8f5c14610c6c5780638da5cb5b14610ca457806391afe9e514610cc2578063950c8a7414610cd757806395d89b4114610cf75780639a8cbfb114610d0c57600080fd5b806379b6ed3614610ba45780637d3414c014610bb95780637f66c81814610be6578063836a104014610c16578063843eadab14610c36578063857b767b14610c4c57600080fd5b80633d8b38f6116103ea5780635b8c41e6116103515780636d18c9701161030a5780636d18c97014610ae457806370a0823114610af9578063715018a614610b1957806374689fdf14610b2e5780637471c4b214610b505780637533d78814610b8457600080fd5b80635b8c41e6146109ea5780635de3099914610a395780636352211e14610a6f57806366ad5c8a14610a8f57806369d2ceb114610aaf5780636a5f2a5e14610acf57600080fd5b806342d65a8d116103a357806342d65a8d1461095757806343a0cd0814610977578063447705151461098d5780634bad5cb0146109a257806351905636146109b75780635b32619c146109ca57600080fd5b80633d8b38f6146108855780633ffab939146108a557806340a4dddd146108d557806341f43434146108f557806342842e0e1461091757806342966c681461093757600080fd5b806318160ddd1161048e57806326e5a3621161044757806326e5a362146107a55780632a205e3d146107bb5780632a55205a146107f0578063317b48291461082f578063334fa47e1461084f57806336b7abd41461086f57600080fd5b806318160ddd146106d557806318383fb5146106f85780631dcac94d146107255780631fe543e31461074557806321b1654d1461076557806323b872dd1461078557600080fd5b806308a116a5116104e057806308a116a514610618578063095ea7b314610632578063100788121461065257806310ddb13714610672578063124cfc8c14610692578063125ffd80146106c057600080fd5b80621d35671461052757806301ffc9a71461054957806304634d8d1461057e57806306fdde031461059e57806307e0db17146105c0578063081812fc146105e0575b600080fd5b34801561053357600080fd5b50610547610542366004614c34565b61117d565b005b34801561055557600080fd5b50610569610564366004614cdd565b61133c565b60405190151581526020015b60405180910390f35b34801561058a57600080fd5b50610547610599366004614d0f565b61135f565b3480156105aa57600080fd5b506105b3611375565b6040516105759190614da4565b3480156105cc57600080fd5b506105476105db366004614db7565b611407565b3480156105ec57600080fd5b506106006105fb366004614dd2565b611490565b6040516001600160a01b039091168152602001610575565b34801561062457600080fd5b506013546105699060ff1681565b34801561063e57600080fd5b5061054761064d366004614deb565b6114b7565b34801561065e57600080fd5b5061054761066d366004614e17565b6114d0565b34801561067e57600080fd5b5061054761068d366004614db7565b61152d565b34801561069e57600080fd5b506106b26106ad366004614dd2565b611585565b604051610575929190614e52565b3480156106cc57600080fd5b506105b36116e7565b3480156106e157600080fd5b506106ea611775565b604051908152602001610575565b34801561070457600080fd5b506106ea610713366004614dd2565b60106020526000908152604090205481565b34801561073157600080fd5b50610600610740366004614dd2565b611796565b34801561075157600080fd5b50610547610760366004614f3d565b6117ef565b34801561077157600080fd5b50610547610780366004614db7565b611878565b34801561079157600080fd5b506105476107a0366004614f83565b6118ba565b3480156107b157600080fd5b506106ea60165481565b3480156107c757600080fd5b506107db6107d636600461504f565b6118e5565b60408051928352602083019190915201610575565b3480156107fc57600080fd5b5061081061080b3660046150e1565b6119b0565b604080516001600160a01b039093168352602083019190915201610575565b34801561083b57600080fd5b5061054761084a366004615103565b611a5e565b34801561085b57600080fd5b5061054761086a366004614e17565b611b25565b34801561087b57600080fd5b506106ea601e5481565b34801561089157600080fd5b506105696108a0366004615137565b611b7b565b3480156108b157600080fd5b506105696108c0366004614dd2565b60009081526011602052604090205442111590565b3480156108e157600080fd5b506105476108f0366004615189565b611c48565b34801561090157600080fd5b506106006daaeb6d7670e522a718067333cd4e81565b34801561092357600080fd5b50610547610932366004614f83565b611ca0565b34801561094357600080fd5b50610547610952366004614dd2565b611cc5565b34801561096357600080fd5b50610547610972366004615137565b611cf8565b34801561098357600080fd5b506106ea60155481565b34801561099957600080fd5b506106ea600081565b3480156109ae57600080fd5b50610547611d7e565b6105476109c5366004615210565b611dc4565b3480156109d657600080fd5b50601754610600906001600160a01b031681565b3480156109f657600080fd5b506106ea610a053660046152c9565b6004602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b348015610a4557600080fd5b50610600610a54366004614dd2565b601f602052600090815260409020546001600160a01b031681565b348015610a7b57600080fd5b50610600610a8a366004614dd2565b611dd3565b348015610a9b57600080fd5b50610547610aaa366004614c34565b611e3e565b348015610abb57600080fd5b506013546105699062010000900460ff1681565b348015610adb57600080fd5b50610547611f1a565b348015610af057600080fd5b506106ea611f35565b348015610b0557600080fd5b506106ea610b14366004614e17565b61201a565b348015610b2557600080fd5b5061054761207a565b348015610b3a57600080fd5b5060135461056990640100000000900460ff1681565b348015610b5c57600080fd5b506106007f0000000000000000000000007233811ede01bbee955f64065f8262994de8a1ea81565b348015610b9057600080fd5b506105b3610b9f366004614db7565b61208e565b348015610bb057600080fd5b506105b36120a7565b348015610bc557600080fd5b506106ea610bd4366004614dd2565b60116020526000908152604090205481565b348015610bf257600080fd5b50610569610c01366004614dd2565b60009081526010602052604090205442111590565b348015610c2257600080fd5b50610547610c31366004615326565b6120b4565b348015610c4257600080fd5b506106ea60145481565b348015610c5857600080fd5b50610547610c6736600461534d565b612174565b348015610c7857600080fd5b506106ea610c87366004615391565b600260209081526000928352604080842090915290825290205481565b348015610cb057600080fd5b506000546001600160a01b0316610600565b348015610cce57600080fd5b506105476121dc565b348015610ce357600080fd5b50600354610600906001600160a01b031681565b348015610d0357600080fd5b506105b361221c565b348015610d1857600080fd5b50610547610d27366004614e17565b61222b565b348015610d3857600080fd5b506105b3610d47366004614db7565b6122c0565b348015610d5857600080fd5b50610547610d673660046153c4565b6123a0565b348015610d7857600080fd5b506106ea6123b4565b348015610d8d57600080fd5b506105476123e4565b348015610da257600080fd5b50610547610db1366004615137565b612422565b348015610dc257600080fd5b50601354610569906301000000900460ff1681565b348015610de357600080fd5b50600854610600906001600160a01b031681565b348015610e0357600080fd5b506105476124ab565b348015610e1857600080fd5b50610600610e27366004614dd2565b6124bd565b348015610e3857600080fd5b5060135461056990610100900460ff1681565b348015610e5757600080fd5b50600954610600906001600160a01b031681565b348015610e7757600080fd5b50610547610e86366004614dd2565b612509565b348015610e9757600080fd5b50610ea0600181565b60405161ffff9091168152602001610575565b348015610ebf57600080fd5b506106007f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67581565b348015610ef357600080fd5b50610547610f023660046153f2565b612567565b348015610f1357600080fd5b50610547610f22366004614e17565b61258d565b348015610f3357600080fd5b506105b3610f42366004614dd2565b6125e3565b348015610f5357600080fd5b50610547610f6236600461545d565b612c6e565b610547610f75366004614c34565b612d03565b348015610f8657600080fd5b50610547610f953660046154cb565b612f19565b348015610fa657600080fd5b506106ea7f0000000000000000000000000000000000000000000000000000000000001d4c81565b348015610fda57600080fd5b506106ea612f4e565b348015610fef57600080fd5b506106ea60125481565b34801561100557600080fd5b506105476110143660046154e6565b612f5b565b34801561102557600080fd5b50610547611034366004614dd2565b612fe6565b34801561104557600080fd5b50610547611054366004614db7565b612ff3565b34801561106557600080fd5b50610569611074366004615522565b61301f565b34801561108557600080fd5b50610547611094366004615550565b61304d565b3480156110a557600080fd5b506105476110b4366004615137565b613096565b3480156110c557600080fd5b506005546105699060ff1681565b3480156110df57600080fd5b506105b36130f0565b3480156110f457600080fd5b5061054761110336600461556d565b6130fd565b34801561111457600080fd5b50610547611123366004614e17565b613121565b34801561113457600080fd5b50610547611143366004615550565b613197565b34801561115457600080fd5b506105b3611163366004615593565b6131b2565b34801561117457600080fd5b506012546106ea565b337f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b0316146111c657604051630d1ad4cd60e01b815260040160405180910390fd5b61ffff8616600090815260016020526040812080546111e4906155e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611210906155e0565b801561125d5780601f106112325761010080835404028352916020019161125d565b820191906000526020600020905b81548152906001019060200180831161124057829003601f168201915b50505050509050805186869050148015611278575060008151115b80156112a0575080516020820120604051611296908890889061561a565b6040518091039020145b6112bd57604051631935e28160e11b815260040160405180910390fd5b6113338787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a93509150889088908190840183828082843760009201919091525061326392505050565b50505050505050565b60006001600160e01b03198216158061135957506113598261336d565b92915050565b6113676133ad565b6113718282613407565b5050565b6060600a8054611384906155e0565b80601f01602080910402602001604051908101604052809291908181526020018280546113b0906155e0565b80156113fd5780601f106113d2576101008083540402835291602001916113fd565b820191906000526020600020905b8154815290600101906020018083116113e057829003601f168201915b5050505050905090565b61140f6133ad565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b0316906307e0db17906024015b600060405180830381600087803b15801561147557600080fd5b505af1158015611489573d6000803e3d6000fd5b5050505050565b600061149b82613504565b506000908152600e60205260409020546001600160a01b031690565b816114c181613549565b6114cb8383613602565b505050565b6114d86133ad565b600880546001600160a01b0319166001600160a01b0383169081179091556040519081527f3784e9ce312a5c6283f4e11bd93a1320e6fa0bdfa7eac11cc10b0b894e4c9302906020015b60405180910390a150565b6115356133ad565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b0316906310ddb1379060240161145b565b6009546040516342de525560e01b8152306004820152602481018390526001604482015260009182916001600160a01b03909116906342de525590606401602060405180830381865afa1580156115e0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611604919061562a565b9150306001600160a01b0383160361169657600061162184611796565b90506001600160a01b0381161561163e5780925060029150611690565b6000611649856124bd565b90506001600160a01b03811615611666578093506003925061168e565b6000858152601f60205260409020546001600160a01b0316801561168c57809450600493505b505b505b506116bb565b61169f83611dd3565b6001600160a01b0316826001600160a01b0316146116bb575060015b6001600160a01b0382166116e25760405163c1ab6dc160e01b815260040160405180910390fd5b915091565b601980546116f4906155e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611720906155e0565b801561176d5780601f106117425761010080835404028352916020019161176d565b820191906000526020600020905b81548152906001019060200180831161175057829003601f168201915b505050505081565b600061177f612f4e565b6117876123b4565b611791919061565d565b905090565b6000818152601160205260408120544210156117e2576000828152600c60205260409020546001600160a01b0316806113595760405163c1ab6dc160e01b815260040160405180910390fd5b506000919050565b919050565b336001600160a01b037f000000000000000000000000271682deb8c4e0901d1a1550ad2e64d568e69909161461186e5760405163073e64fd60e21b81523360048201526001600160a01b037f000000000000000000000000271682deb8c4e0901d1a1550ad2e64d568e699091660248201526044015b60405180910390fd5b61137182826136a6565b6118806133ad565b61ffff811660148190556040519081527ff1e3171722249628a82c56ba85c5c8e951a7584275dc78424d1c1eb1e3488a2090602001611522565b826001600160a01b03811633146118d4576118d433613549565b6118df8484846137b1565b50505050565b600080600086866040516020016118fd929190615670565b60408051601f198184030181529082905263040a7bb160e41b825291506001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67516906340a7bb1090611961908b90309086908b908b90600401615692565b6040805180830381865afa15801561197d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a191906156e6565b92509250509550959350505050565b60008281526007602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291611a255750604080518082019091526006546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090611a44906001600160601b03168761570a565b611a4e9190615737565b91519350909150505b9250929050565b611a666133ad565b60006040518060400160405280601981526020017f536d61736876657273654d696e74696e67436f6d706c65746500000000000000815250905080604051602001611ab1919061574b565b6040516020818303038152906040528051906020012082604051602001611ad8919061574b565b6040516020818303038152906040528051906020012003611b0c576013805464ff0000000019166401000000001790555050565b60405163353f4c1760e21b815260040160405180910390fd5b611b2d6133ad565b600980546001600160a01b0319166001600160a01b0383169081179091556040519081527f965ccc841c73347febe94233ffa09c19890576155df1f4b3d0e88a025d96ca6890602001611522565b61ffff831660009081526001602052604081208054829190611b9c906155e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc8906155e0565b8015611c155780601f10611bea57610100808354040283529160200191611c15565b820191906000526020600020905b815481529060010190602001808311611bf857829003601f168201915b505050505090508383604051611c2c92919061561a565b60405180910390208180519060200120149150505b9392505050565b611c506133ad565b60135462010000900460ff1615611c7a57604051630c9e6a8760e41b815260040160405180910390fd5b6018611c8684826157ad565b506019611c9383826157ad565b50601a6118df82826157ad565b826001600160a01b0381163314611cba57611cba33613549565b6118df8484846137e1565b611cd0335b826137fc565b611cec5760405162461bcd60e51b81526004016118659061586c565b611cf58161385a565b50565b611d006133ad565b6040516342d65a8d60e01b81526001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67516906342d65a8d90611d50908690869086906004016158c4565b600060405180830381600087803b158015611d6a57600080fd5b505af1158015611333573d6000803e3d6000fd5b611d866133ad565b6013805463ff000000191663010000001790556040517f6ec445ebd226367c760da3e22a7b51c29dae77260d25aaded229fc4e5315dedb90600090a1565b6113338787878787878761393d565b600081815260116020526040812054421080611dfc575060008281526010602052604090205442105b15611e08575030919050565b6000828152600c60205260409020546001600160a01b0316806113595760405163c1ab6dc160e01b815260040160405180910390fd5b333014611e9c5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401611865565b611f128686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f890181900481028201810190925287815289935091508790879081908401838280828437600092019190915250613a2592505050565b505050505050565b611f226133ad565b6013805462ff0000191662010000179055565b6000611f3f6133ad565b60155415611f60576040516338df8b6b60e21b815260040160405180910390fd5b601b54601c54601d546040516305d3b1d360e41b81526004810192909252600160a01b83046001600160401b03166024830152640100000000810461ffff16604483015263ffffffff808216606484015266010000000000009091041660848201526001600160a01b0390911690635d3b1d309060a4016020604051808303816000875af1158015611ff6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061179191906158e2565b60006001600160a01b03821661205e5760405162461bcd60e51b815260206004820152600960248201526804164647265737320360bc1b6044820152606401611865565b506001600160a01b03166000908152600d602052604090205490565b6120826133ad565b61208c6000613ab8565b565b600160205260009081526040902080546116f4906155e0565b601880546116f4906155e0565b601354640100000000900460ff16156120e05760405163f2f76b4560e01b815260040160405180910390fd5b336001600160a01b037f0000000000000000000000007233811ede01bbee955f64065f8262994de8a1ea16146121295760405163e6c4247b60e01b815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000001461461216957604051639c69ea9360e01b815260040160405180910390fd5b6114cb828483613b08565b6014548111156121a557601454604051630965f10d60e31b8152611865918391600401918252602082015260400190565b60005b82518110156114cb576121d48382815181106121c6576121c66158fb565b602002602001015183613c14565b6001016121a8565b6121e46133ad565b6013805463ff000000191690556040517f1c6da54a203e852ae860fd53de95ded32d86c66fd127ddf8f0a8224b994d447990600090a1565b6060600b8054611384906155e0565b6122336133ad565b7f000000000000000000000000000000000000000000000000000000000000000146036122725760405162385fc360e61b815260040160405180910390fd5b601780546001600160a01b0319166001600160a01b0383169081179091556040519081527f162775a991e9e7a4e4b1b85ccf72bedbe77f35378bb985817c5441dec13af9af90602001611522565b61ffff81166000908152600160205260408120805460609291906122e3906155e0565b80601f016020809104026020016040519081016040528092919081815260200182805461230f906155e0565b801561235c5780601f106123315761010080835404028352916020019161235c565b820191906000526020600020905b81548152906001019060200180831161233f57829003601f168201915b5050505050905080516000036123855760405163039aee5360e01b815260040160405180910390fd5b611c41600060148351612398919061565d565b839190613d65565b816123aa81613549565b6114cb8383613e72565b60006012547f0000000000000000000000000000000000000000000000000000000000001d4c611791919061565d565b6123ec6133ad565b6013805461ff00191690556040517fe2a7169cedebe39671840370ae19ca4fc41be6191d4c77f174f189a4d8cd08c890600090a1565b61242a6133ad565b81813060405160200161243f93929190615911565b60408051601f1981840301815291815261ffff851660009081526001602052209061246a90826157ad565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161249e939291906158c4565b60405180910390a1505050565b6124b36133ad565b61208c6000600655565b6000818152601060205260408120544210156117e2576000828152600c60205260409020546001600160a01b0316806113595760405163c1ab6dc160e01b815260040160405180910390fd5b6125116133ad565b601e5415612532576040516342c2089760e01b815260040160405180910390fd5b601e8190556040518181527f42cbc405e4dbf1b691e85b9a34b08ecfcf7a9ad9078bf4d645ccfa1fac11c10b90602001611522565b836001600160a01b03811633146125815761258133613549565b61148985858585613e7d565b6125956133ad565b600380546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b90602001611522565b60606125ee82613504565b6013546301000000900460ff16801561261157506008546001600160a01b031615155b15612c65576000828152601160205260409020544210156128595760408051600280825260608201909252600091816020015b61264c614b91565b815260200190600190039081612644579050506040805160e08101909152600c60a082019081526b14dd185ad95908155b9d1a5b60a21b60c0830152815290915060208101600381526000858152601160209081526040808320548285015280519182018152828252830152606090910181905282518391906126d1576126d16158fb565b6020908102919091018101919091526040805160e08101909152600660a082019081526514dd185ad95960d21b60c083015281529081016001815260200160008152602001604051806040016040528060048152602001637472756560e01b815250815260200160006001600160a01b031681525081600181518110612759576127596158fb565b6020908102919091010152604080516001808252818301909252600091816020015b606081526020019060019003908161277b579050509050604051806040016040528060068152602001651cdd185ad95960d21b815250816000815181106127c4576127c46158fb565b60209081029190910101526008546001600160a01b031663679049fe6127e986613eae565b846001856040518563ffffffff1660e01b815260040161280c9493929190615a2c565b600060405180830381865afa158015612829573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526128519190810190615a9b565b949350505050565b600082815260106020526040902054421015612a075760408051600280825260608201909252600091816020015b61288f614b91565b815260200190600190039081612887579050506040805160e08101909152600c60a082019081526b15995cdd195908155b9d1a5b60a21b60c083015281529091506020810160038152600085815260106020908152604080832054828501528051918201815282825283015260609091018190528251839190612914576129146158fb565b6020908102919091018101919091526040805160e08101909152600660a082019081526515995cdd195960d21b60c083015281529081016001815260200160008152602001604051806040016040528060048152602001637472756560e01b815250815260200160006001600160a01b03168152508160018151811061299c5761299c6158fb565b6020908102919091010152604080516001808252818301909252600091816020015b60608152602001906001900390816129be579050509050604051806040016040528060068152602001651d995cdd195960d21b815250816000815181106127c4576127c46158fb565b7f00000000000000000000000000000000000000000000000000000000000000014614612b2d576008546001600160a01b03166315dac91d7f0000000000000000000000000000000000000000000000000000000000000001612a68613f94565b604080516000808252602082019092528791612a9a565b612a87614b91565b815260200190600190039081612a7f5790505b506040805160008082526020820190925281612ac6565b6060815260200190600190039081612ab15790505b506040518763ffffffff1660e01b8152600401612ae896959493929190615ae3565b600060405180830381865afa158015612b05573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113599190810190615a9b565b30612b3783611dd3565b6001600160a01b031603612c6557604080516001808252818301909252600091816020015b612b64614b91565b815260200190600190039081612b5c579050506040805160e08101909152600960a082019081526827b33316b1b430b4b760b91b60c08301528152909150602081016001815260200160008152602001604051806040016040528060048152602001637472756560e01b815250815260200160006001600160a01b031681525081600081518110612bf757612bf76158fb565b6020908102919091010152604080516001808252818301909252600091816020015b6060815260200190600190039081612c195790505090506040518060400160405280600981526020016837b33316b1b430b4b760b91b815250816000815181106127c4576127c46158fb565b61135982613eae565b612c766133ad565b6040516332fb62e760e21b81526001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675169063cbed8b9c90612cca9088908890889088908890600401615b35565b600060405180830381600087803b158015612ce457600080fd5b505af1158015612cf8573d6000803e3d6000fd5b505050505050505050565b61ffff86166000908152600460205260408082209051612d26908890889061561a565b90815260408051602092819003830190206001600160401b03871660009081529252902054905080612da65760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401611865565b808383604051612db792919061561a565b604051809103902014612e165760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401611865565b61ffff87166000908152600460205260408082209051612e39908990899061561a565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f88018290048202830182019052868252612ed1918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a935091508890889081908401838280828437600092019190915250613a2592505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051612f08959493929190615b63565b60405180910390a150505050505050565b612f216133ad565b601b80546001600160401b03909216600160a01b0267ffffffffffffffff60a01b19909216919091179055565b600061179161dead61201a565b612f636133ad565b80600003612f845760405163e4ac3b3f60e01b815260040160405180910390fd5b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac09060600161249e565b612fee6133ad565b601c55565b612ffb6133ad565b601d805461ffff9092166401000000000265ffff0000000019909216919091179055565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205460ff1690565b6130556133ad565b6005805460ff19168215159081179091556040519081527f1584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a490602001611522565b61309e6133ad565b61ffff831660009081526001602052604090206130bc828483615b9e565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161249e939291906158c4565b601a80546116f4906155e0565b6131056133ad565b601d805463ffffffff191663ffffffff92909216919091179055565b6131296133ad565b6001600160a01b03811661318e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611865565b611cf581613ab8565b61319f6133ad565b6013805460ff1916911515919091179055565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b03169063f5ecbdbc90608401600060405180830381865afa158015613232573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261325a9190810190615c7d565b95945050505050565b6000806132c65a60966366ad5c8a60e01b8989898960405160240161328b9493929190615cb1565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915230929190613fe7565b9150915081611f12578280519060200120600460008861ffff1661ffff16815260200190815260200160002086604051613300919061574b565b9081526040805191829003602090810183206001600160401b0389166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c9061335d9088908890889088908790615cef565b60405180910390a1505050505050565b60006001600160e01b031982166380ac58cd60e01b148061339e57506001600160e01b03198216635b5e139f60e01b145b80611359575061135982614071565b6000546001600160a01b0316331461208c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611865565b6127106001600160601b03821611156134755760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401611865565b6001600160a01b0382166134cb5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401611865565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600655565b61350d81614096565b611cf55760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2102a37b5b2b760991b6044820152606401611865565b6daaeb6d7670e522a718067333cd4e3b15611cf557604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156135b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135da9190615d41565b611cf557604051633b79c77360e21b81526001600160a01b0382166004820152602401611865565b600061360d82611dd3565b9050806001600160a01b0316836001600160a01b0316036136645760405162461bcd60e51b815260206004820152601160248201527020b8383937bb30b6103a379037bbb732b960791b6044820152606401611865565b336001600160a01b03821614806136805750613680813361301f565b61369c5760405162461bcd60e51b81526004016118659061586c565b6114cb83836140b3565b806000815181106136b9576136b96158fb565b60200260200101516015819055507f0000000000000000000000000000000000000000000000000000000000001d4c816000815181106136fb576136fb6158fb565b602002602001015161370d9190615d5e565b613718906001615d72565b601681905550817f9f3dfe0efa24b207b42aad32b527da86eb44e0c0e09e3c22e3a342f444d257e182600081518110613753576137536158fb565b602002602001015160405161376a91815260200190565b60405180910390a27f0ddd09f4c3f776cb47fcfde04c8b3edaeaac6d3887a88978091f2d7dcd8649f96016546040516137a591815260200190565b60405180910390a15050565b6137ba33611cca565b6137d65760405162461bcd60e51b81526004016118659061586c565b6114cb838383614121565b6114cb83838360405180602001604052806000815250612567565b60008061380883611dd3565b9050806001600160a01b0316846001600160a01b0316148061382f575061382f818561301f565b806128515750836001600160a01b031661384884611490565b6001600160a01b031614949350505050565b600061386582611dd3565b90506000828152600e6020908152604080832080546001600160a01b03191690556001600160a01b0384168352600d90915281208054600192906138aa90849061565d565b90915550506000828152600c60209081526040822080546001600160a01b03191661dead9081179091558252600d90527fdc7fafdc41998a74ecacb8f8bd877011aba1f1d03a3a0d37a2e7879a393b1d6a80546001929061390c908490615d72565b9091555050604051829061dead906001600160a01b03841690600080516020615f7983398151915290600090a45050565b6139498787878761425a565b6000858560405160200161395e929190615670565b60408051601f1981840301815291905260055490915060ff161561398f5761398a876001846000614313565b6139af565b8151156139af57604051638fadcadb60e01b815260040160405180910390fd5b6139bd878286868634614394565b856040516139cb919061574b565b6040518091039020886001600160a01b03168861ffff167f39a4c66499bcf4b56d79f0dde8ed7a9d4925a0df55825206b2b8531e202be0d088604051613a1391815260200190565b60405180910390a45050505050505050565b60008082806020019051810190613a3c9190615d85565b60148201519193509150613a518782846144e6565b806001600160a01b031686604051613a69919061574b565b60405180910390208861ffff167f776434b505c7beb3db155c58df6c88985bf7c31730767e43ec773005059fed7a85604051613aa791815260200190565b60405180910390a450505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601254821115613b2b57604051637cd4b50160e01b815260040160405180910390fd5b613b486000846001604051806020016040528060008152506145cb565b613b645760405162461bcd60e51b815260040161186590615dcb565b60006012547f0000000000000000000000000000000000000000000000000000000000001d4c613b94919061565d565b905060005b83811015613bcf57613bb485613baf8385615d72565b614714565b613bc7613bc18284615d72565b8461475b565b600101613b99565b5082601254613bde919061565d565b6012556001600160a01b0384166000908152600d602052604081208054859290613c09908490615d72565b909155505050505050565b613c1f335b836137fc565b613c3c576040516329572f6760e01b815260040160405180910390fd5b6000828152600e60205260409020546001600160a01b031615613c6457613c646000836140b3565b80600003613c85576040516304f1387560e01b815260040160405180910390fd5b6000613c94826201518061570a565b613c9e9042615d72565b60008481526011602052604090819020829055600854905163940707d560e01b815246600482015230602482015260448101869052606481018390529192506001600160a01b03169063940707d590608401600060405180830381600087803b158015613d0a57600080fd5b505af1158015613d1e573d6000803e3d6000fd5b505050508083613d2b3390565b6001600160a01b03167f6173e4d2d9dd52aae0ed37afed3adcf924a490639b759ca93d32dc43366c17d260405160405180910390a4505050565b606081613d7381601f615d72565b1015613db25760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401611865565b613dbc8284615d72565b84511015613e005760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401611865565b606082158015613e1f5760405191506000825260208201604052613e69565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015613e58578051835260209283019201613e40565b5050858452601f01601f1916604052505b50949350505050565b6113713383836147d1565b613e8633613c19565b613ea25760405162461bcd60e51b81526004016118659061586c565b6118df84848484614893565b601354606090610100900460ff1615613f1d57600060188054613ed0906155e0565b905011613eec5760405180602001604052806000815250611359565b6018613ef7836148c6565b604051602001613f08929190615df1565b60405160208183030381529060405292915050565b60135460ff1615613f5e57600060198054613f37906155e0565b905011613f535760405180602001604052806000815250611359565b6019613ef7836148c6565b6000601a8054613f6d906155e0565b905011613f895760405180602001604052806000815250611359565b601a613ef7836148c6565b60007f00000000000000000000000000000000000000000000000000000000000000014603613fc257503090565b6017546001600160a01b0316613fd757503090565b506017546001600160a01b031690565b6000606060008060008661ffff166001600160401b0381111561400c5761400c614e78565b6040519080825280601f01601f191660200182016040528015614036576020820181803683370190505b50905060008087516020890160008d8df191503d925086831115614058578692505b828152826000602083013e909890975095505050505050565b60006001600160e01b0319821663152a902d60e11b14806113595750611359826149c6565b6000908152600c60205260409020546001600160a01b0316151590565b6000818152600e6020526040902080546001600160a01b0319166001600160a01b03841690811790915581906140e882611dd3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b826001600160a01b031661413482611dd3565b6001600160a01b03161461415a5760405162461bcd60e51b815260040161186590615e88565b6001600160a01b0382166141a35760405162461bcd60e51b815260206004820152601060248201526f54667220746f2030206164647265737360801b6044820152606401611865565b826001600160a01b03166141b682611dd3565b6001600160a01b0316146141dc5760405162461bcd60e51b815260040161186590615e88565b6000818152600e6020908152604080832080546001600160a01b03199081169091556001600160a01b03878116808652600d8552838620805460001901905590871680865283862080546001019055868652600c9094528285208054909216841790915590518493600080516020615f7983398151915291a4505050565b61426333611cca565b6142a85760405162461bcd60e51b8152602060048201526016602482015275139bdd081bdddb995c881b9bdc88185c1c1c9bdd995960521b6044820152606401611865565b836001600160a01b03166142bb82611dd3565b6001600160a01b0316146142e15760405162461bcd60e51b815260040161186590615e88565b6000818152601f6020526040902080546001600160a01b0319166001600160a01b0386161790556118df843083614121565b600061431e836149fb565b61ffff808716600090815260026020908152604080832093891683529290529081205491925090614350908490615d72565b90508060000361437357604051631f3ec9d560e11b815260040160405180910390fd5b80821015611f125760405163785fb05760e11b815260040160405180910390fd5b61ffff8616600090815260016020526040812080546143b2906155e0565b80601f01602080910402602001604051908101604052809291908181526020018280546143de906155e0565b801561442b5780601f106144005761010080835404028352916020019161442b565b820191906000526020600020905b81548152906001019060200180831161440e57829003601f168201915b50505050509050805160000361445457604051630b86d4eb60e31b815260040160405180910390fd5b60405162c5803160e81b81526001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675169063c58031009084906144ab908b9086908c908c908c908c90600401615eab565b6000604051808303818588803b1580156144c457600080fd5b505af11580156144d8573d6000803e3d6000fd5b505050505050505050505050565b7f0000000000000000000000000000000000000000000000000000000000000001460361454b5761451681614096565b801561453257503061452782611dd3565b6001600160a01b0316145b61453b57600080fd5b614546308383614121565b6145ab565b61455481614096565b1580614580575061456481614096565b801561458057503061457582611dd3565b6001600160a01b0316145b61458957600080fd5b61459281614096565b6145a0576145468282614a28565b6145ab308383614121565b6000908152601f6020526040902080546001600160a01b03191690555050565b60006001600160a01b0384163b1561470c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061460f903390899088908890600401615f05565b6020604051808303816000875af192505050801561464a575060408051601f3d908101601f1916820190925261464791810190615f42565b60015b6146f2573d808015614678576040519150601f19603f3d011682016040523d82523d6000602084013e61467d565b606091505b5080516000036146ea5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401611865565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612851565b506001612851565b6000818152600c602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020615f79833981519152908290a45050565b8015611371576000614770826201518061570a565b61477a9042615d72565b60008481526010602052604090819020829055600854905163940707d560e01b815246600482015230602482015260448101869052606481018390529192506001600160a01b03169063940707d590608401611d50565b816001600160a01b0316836001600160a01b0316036148265760405162461bcd60e51b815260206004820152601160248201527020b8383937bb32903a379031b0b63632b960791b6044820152606401611865565b6001600160a01b038381166000818152600f6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61489e848484614121565b6148aa848484846145cb565b6118df5760405162461bcd60e51b815260040161186590615dcb565b6060816000036148ed5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115614917578061490181615f5f565b91506149109050600a83615737565b91506148f1565b6000816001600160401b0381111561493157614931614e78565b6040519080825280601f01601f19166020018201604052801561495b576020820181803683370190505b5090505b84156128515761497060018361565d565b915061497d600a86615d5e565b614988906030615d72565b60f81b81838151811061499d5761499d6158fb565b60200101906001600160f81b031916908160001a9053506149bf600a86615737565b945061495f565b60006001600160e01b03198216637bb0080b60e01b148061135957506301ffc9a760e01b6001600160e01b0319831614611359565b6000602282511015614a205760405163cef80ea360e01b815260040160405180910390fd5b506022015190565b611371828260405180602001604052806000815250614a478383614a70565b614a5460008484846145cb565b6114cb5760405162461bcd60e51b815260040161186590615dcb565b6001600160a01b038216614aba5760405162461bcd60e51b81526020600482015260116024820152704d696e7420746f2030206164647265737360781b6044820152606401611865565b614ac381614096565b15614af95760405162461bcd60e51b815260206004820152600660248201526545786973747360d01b6044820152606401611865565b614b0281614096565b15614b385760405162461bcd60e51b815260206004820152600660248201526545786973747360d01b6044820152606401611865565b6001600160a01b0382166000818152600d6020908152604080832080546001019055848352600c90915280822080546001600160a01b031916841790555183929190600080516020615f79833981519152908290a45050565b6040805160a08101909152606081526020810160008152602001600081526020016060815260200160006001600160a01b031681525090565b803561ffff811681146117ea57600080fd5b60008083601f840112614bee57600080fd5b5081356001600160401b03811115614c0557600080fd5b602083019150836020828501011115611a5757600080fd5b80356001600160401b03811681146117ea57600080fd5b60008060008060008060808789031215614c4d57600080fd5b614c5687614bca565b955060208701356001600160401b0380821115614c7257600080fd5b614c7e8a838b01614bdc565b9097509550859150614c9260408a01614c1d565b94506060890135915080821115614ca857600080fd5b50614cb589828a01614bdc565b979a9699509497509295939492505050565b6001600160e01b031981168114611cf557600080fd5b600060208284031215614cef57600080fd5b8135611c4181614cc7565b6001600160a01b0381168114611cf557600080fd5b60008060408385031215614d2257600080fd5b8235614d2d81614cfa565b915060208301356001600160601b0381168114614d4957600080fd5b809150509250929050565b60005b83811015614d6f578181015183820152602001614d57565b50506000910152565b60008151808452614d90816020860160208601614d54565b601f01601f19169290920160200192915050565b602081526000611c416020830184614d78565b600060208284031215614dc957600080fd5b611c4182614bca565b600060208284031215614de457600080fd5b5035919050565b60008060408385031215614dfe57600080fd5b8235614e0981614cfa565b946020939093013593505050565b600060208284031215614e2957600080fd5b8135611c4181614cfa565b60058110611cf557634e487b7160e01b600052602160045260246000fd5b6001600160a01b038316815260408101614e6b83614e34565b8260208301529392505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715614eb657614eb6614e78565b604052919050565b600082601f830112614ecf57600080fd5b813560206001600160401b03821115614eea57614eea614e78565b8160051b614ef9828201614e8e565b9283528481018201928281019087851115614f1357600080fd5b83870192505b84831015614f3257823582529183019190830190614f19565b979650505050505050565b60008060408385031215614f5057600080fd5b8235915060208301356001600160401b03811115614f6d57600080fd5b614f7985828601614ebe565b9150509250929050565b600080600060608486031215614f9857600080fd5b8335614fa381614cfa565b92506020840135614fb381614cfa565b929592945050506040919091013590565b60006001600160401b03821115614fdd57614fdd614e78565b50601f01601f191660200190565b600082601f830112614ffc57600080fd5b813561500f61500a82614fc4565b614e8e565b81815284602083860101111561502457600080fd5b816020850160208301376000918101602001919091529392505050565b8015158114611cf557600080fd5b600080600080600060a0868803121561506757600080fd5b61507086614bca565b945060208601356001600160401b038082111561508c57600080fd5b61509889838a01614feb565b955060408801359450606088013591506150b182615041565b909250608087013590808211156150c757600080fd5b506150d488828901614feb565b9150509295509295909350565b600080604083850312156150f457600080fd5b50508035926020909101359150565b60006020828403121561511557600080fd5b81356001600160401b0381111561512b57600080fd5b61285184828501614feb565b60008060006040848603121561514c57600080fd5b61515584614bca565b925060208401356001600160401b0381111561517057600080fd5b61517c86828701614bdc565b9497909650939450505050565b60008060006060848603121561519e57600080fd5b83356001600160401b03808211156151b557600080fd5b6151c187838801614feb565b945060208601359150808211156151d757600080fd5b6151e387838801614feb565b935060408601359150808211156151f957600080fd5b5061520686828701614feb565b9150509250925092565b600080600080600080600060e0888a03121561522b57600080fd5b873561523681614cfa565b965061524460208901614bca565b955060408801356001600160401b038082111561526057600080fd5b61526c8b838c01614feb565b965060608a0135955060808a0135915061528582614cfa565b90935060a08901359061529782614cfa565b90925060c089013590808211156152ad57600080fd5b506152ba8a828b01614feb565b91505092959891949750929550565b6000806000606084860312156152de57600080fd5b6152e784614bca565b925060208401356001600160401b0381111561530257600080fd5b61530e86828701614feb565b92505061531d60408501614c1d565b90509250925092565b60008060006060848603121561533b57600080fd5b833592506020840135614fb381614cfa565b6000806040838503121561536057600080fd5b82356001600160401b0381111561537657600080fd5b61538285828601614ebe565b95602094909401359450505050565b600080604083850312156153a457600080fd5b6153ad83614bca565b91506153bb60208401614bca565b90509250929050565b600080604083850312156153d757600080fd5b82356153e281614cfa565b91506020830135614d4981615041565b6000806000806080858703121561540857600080fd5b843561541381614cfa565b9350602085013561542381614cfa565b92506040850135915060608501356001600160401b0381111561544557600080fd5b61545187828801614feb565b91505092959194509250565b60008060008060006080868803121561547557600080fd5b61547e86614bca565b945061548c60208701614bca565b93506040860135925060608601356001600160401b038111156154ae57600080fd5b6154ba88828901614bdc565b969995985093965092949392505050565b6000602082840312156154dd57600080fd5b611c4182614c1d565b6000806000606084860312156154fb57600080fd5b61550484614bca565b925061551260208501614bca565b9150604084013590509250925092565b6000806040838503121561553557600080fd5b823561554081614cfa565b91506020830135614d4981614cfa565b60006020828403121561556257600080fd5b8135611c4181615041565b60006020828403121561557f57600080fd5b813563ffffffff81168114611c4157600080fd5b600080600080608085870312156155a957600080fd5b6155b285614bca565b93506155c060208601614bca565b925060408501356155d081614cfa565b9396929550929360600135925050565b600181811c908216806155f457607f821691505b60208210810361561457634e487b7160e01b600052602260045260246000fd5b50919050565b8183823760009101908152919050565b60006020828403121561563c57600080fd5b8151611c4181614cfa565b634e487b7160e01b600052601160045260246000fd5b8181038181111561135957611359615647565b6040815260006156836040830185614d78565b90508260208301529392505050565b61ffff861681526001600160a01b038516602082015260a0604082018190526000906156c090830186614d78565b841515606084015282810360808401526156da8185614d78565b98975050505050505050565b600080604083850312156156f957600080fd5b505080516020909101519092909150565b808202811582820484141761135957611359615647565b634e487b7160e01b600052601260045260246000fd5b60008261574657615746615721565b500490565b6000825161575d818460208701614d54565b9190910192915050565b601f8211156114cb57600081815260208120601f850160051c8101602086101561578e5750805b601f850160051c820191505b81811015611f125782815560010161579a565b81516001600160401b038111156157c6576157c6614e78565b6157da816157d484546155e0565b84615767565b602080601f83116001811461580f57600084156157f75750858301515b600019600386901b1c1916600185901b178555611f12565b600085815260208120601f198616915b8281101561583e5788860151825594840194600190910190840161581f565b508582101561585c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b602080825260159082015274139bdd081bdddb995c881bdc88185c1c1c9bdd9959605a1b604082015260600190565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff8416815260406020820152600061325a60408301848661589b565b6000602082840312156158f457600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b600081518084526020808501808196508360051b8101915082860160005b858110156159d7578284038952815160a0815181875261597782880182614d78565b9150508682015161598781614e34565b8688015260408281015190870152606080830151878303828901526159ac8382614d78565b6080948501516001600160a01b03169890940197909752505098850198935090840190600101615955565b5091979650505050505050565b600081518084526020808501808196508360051b8101915082860160005b858110156159d7578284038952615a1a848351614d78565b98850198935090840190600101615a02565b608081526000615a3f6080830187614d78565b8281036020840152615a518187615937565b90508460408401528281036060840152614f3281856159e4565b6000615a7961500a84614fc4565b9050828152838383011115615a8d57600080fd5b611c41836020830184614d54565b600060208284031215615aad57600080fd5b81516001600160401b03811115615ac357600080fd5b8201601f81018413615ad457600080fd5b61285184825160208401615a6b565b86815260018060a01b038616602082015284604082015260c060608201526000615b1060c0830186615937565b84608084015282810360a0840152615b2881856159e4565b9998505050505050505050565b600061ffff808816835280871660208401525084604083015260806060830152614f3260808301848661589b565b61ffff86168152608060208201526000615b8160808301868861589b565b6001600160401b0394909416604083015250606001529392505050565b6001600160401b03831115615bb557615bb5614e78565b615bc983615bc383546155e0565b83615767565b6000601f841160018114615bfd5760008515615be55750838201355b600019600387901b1c1916600186901b178355611489565b600083815260209020601f19861690835b82811015615c2e5786850135825560209485019460019092019101615c0e565b5086821015615c4b5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600082601f830112615c6e57600080fd5b611c4183835160208501615a6b565b600060208284031215615c8f57600080fd5b81516001600160401b03811115615ca557600080fd5b61285184828501615c5d565b61ffff85168152608060208201526000615cce6080830186614d78565b6001600160401b03851660408401528281036060840152614f328185614d78565b61ffff8616815260a060208201526000615d0c60a0830187614d78565b6001600160401b03861660408401528281036060840152615d2d8186614d78565b905082810360808401526156da8185614d78565b600060208284031215615d5357600080fd5b8151611c4181615041565b600082615d6d57615d6d615721565b500690565b8082018082111561135957611359615647565b60008060408385031215615d9857600080fd5b82516001600160401b03811115615dae57600080fd5b615dba85828601615c5d565b925050602083015190509250929050565b6020808252600c908201526b2737ba103932b1b2b4bb32b960a11b604082015260600190565b6000808454615dff816155e0565b60018281168015615e175760018114615e2c57615e5b565b60ff1984168752821515830287019450615e5b565b8860005260208060002060005b85811015615e525781548a820152908401908201615e39565b50505082870194505b505050508351615e6f818360208801614d54565b64173539b7b760d91b9101908152600501949350505050565b6020808252600990820152682737ba1037bbb732b960b91b604082015260600190565b61ffff8716815260c060208201526000615ec860c0830188614d78565b8281036040840152615eda8188614d78565b6001600160a01b0387811660608601528616608085015283810360a08501529050615b288185614d78565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615f3890830184614d78565b9695505050505050565b600060208284031215615f5457600080fd5b8151611c4181614cc7565b600060018201615f7157615f71615647565b506001019056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220cec58943b82b005f1a5414fd3e6a7e2ca95eb2dc0cf550401926b4765dd44bd764736f6c63430008110033

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

0000000000000000000000007233811ede01bbee955f64065f8262994de8a1ea0000000000000000000000000000000000000000000000000000000000001d4c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000af8fe6e4de40f4804c90fa8ea8f0000000000000000000000008888888888885e891f3722cc111107e4ce36eaa4000000000000000000000000271682deb8c4e0901d1a1550ad2e64d568e699098af398995b04c28e9951adb9721ef74c74f93e6a478f39e7e0777be13527e7ef0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000244a3c22a0270e4339f98b156e3dcb400f03990700000000000000000000000000000000000000000000000000000000000001f4

-----Decoded View---------------
Arg [0] : primarySaleContract_ (address): 0x7233811EDe01Bbee955f64065f8262994de8A1eA
Arg [1] : supply_ (uint256): 7500
Arg [2] : baseChain_ (uint256): 1
Arg [3] : epsDelegateRegister_ (address): 0x0000000000000aF8FE6E4DE40F4804C90fA8Ea8F
Arg [4] : epsComposeThis_ (address): 0x8888888888885e891F3722CC111107e4Ce36eaA4
Arg [5] : vrfCoordinator_ (address): 0x271682DEB8C4E0901D1a1550aD2e64D568E69909
Arg [6] : vrfKeyHash_ (bytes32): 0x8af398995b04c28e9951adb9721ef74c74f93e6a478f39e7e0777be13527e7ef
Arg [7] : vrfSubscriptionId_ (uint64): 0
Arg [8] : royaltyReceipientAddress_ (address): 0x244a3c22a0270e4339f98b156E3dcB400f039907
Arg [9] : royaltyPercentageBasisPoints_ (uint96): 500

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000007233811ede01bbee955f64065f8262994de8a1ea
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001d4c
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 0000000000000000000000000000000000000af8fe6e4de40f4804c90fa8ea8f
Arg [4] : 0000000000000000000000008888888888885e891f3722cc111107e4ce36eaa4
Arg [5] : 000000000000000000000000271682deb8c4e0901d1a1550ad2e64d568e69909
Arg [6] : 8af398995b04c28e9951adb9721ef74c74f93e6a478f39e7e0777be13527e7ef
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000244a3c22a0270e4339f98b156e3dcb400f039907
Arg [9] : 00000000000000000000000000000000000000000000000000000000000001f4


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.