ETH Price: $3,403.66 (-1.61%)
Gas: 4 Gwei

Token

Wrapped RUNI (wRUNI)
 

Overview

Max Total Supply

21,000,000 wRUNI

Holders

457 ( -0.436%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Balance
93.28 wRUNI

Value
$0.00
0xe17d237ec06779e1425337136fce919f05bb8b0c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Runes Protocol Infrastructure Provider. Built specifically for the dawn of Bitcoin’s new era.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WrappedRUNILz

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion, None license
File 1 of 39 : WrappedRUNILz.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;

import {OFT} from "lz-oft/oapp/contracts/oft/OFT.sol";

import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";

contract WrappedRUNILz is Ownable, OFT {
    uint256 public chainId;
    uint256 public mainChain;

    constructor(
        address _lzEndpoint,
        address _delegate,
        address _supplyOwner,
        uint256 _mainChain
    ) OFT("Wrapped RUNI", "wRUNI", _lzEndpoint, _delegate) Ownable(_delegate) {
        chainId = block.chainid;
        mainChain = _mainChain;
        if (block.chainid == _mainChain) {
            _mint(_supplyOwner, 21_000_000_000_000);
        }
    }

    function decimals() public pure override returns (uint8) {
        return 6;
    }

    function transferDelegateAndOwnership(
        address _newDelegate,
        address _newOwner
    ) external onlyOwner {
        setDelegate(_newDelegate);
        transferOwnership(_newOwner);
    }

    // array of endpoint ids to the same contract address
    function initPeerOnEids(uint32[] calldata _eids) external onlyOwner {
        for (uint256 i = 0; i < _eids.length; i++) {
            setPeer(_eids[i], bytes32(uint256(uint160(address(this)))));
        }
    }
}

File 2 of 39 : OFT.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import { IOFT, OFTCore } from "./OFTCore.sol";

/**
 * @title OFT Contract
 * @dev OFT is an ERC-20 token that extends the functionality of the OFTCore contract.
 */
abstract contract OFT is OFTCore, ERC20 {
    /**
     * @dev Constructor for the OFT contract.
     * @param _name The name of the OFT.
     * @param _symbol The symbol of the OFT.
     * @param _lzEndpoint The LayerZero endpoint address.
     * @param _delegate The delegate capable of making OApp configurations inside of the endpoint.
     */
    constructor(
        string memory _name,
        string memory _symbol,
        address _lzEndpoint,
        address _delegate
    ) ERC20(_name, _symbol) OFTCore(decimals(), _lzEndpoint, _delegate) {}

    /**
     * @notice Retrieves interfaceID and the version of the OFT.
     * @return interfaceId The interface ID.
     * @return version The version.
     *
     * @dev interfaceId: This specific interface ID is '0x02e49c2c'.
     * @dev version: Indicates a cross-chain compatible msg encoding with other OFTs.
     * @dev If a new feature is added to the OFT cross-chain msg encoding, the version will be incremented.
     * ie. localOFT version(x,1) CAN send messages to remoteOFT version(x,1)
     */
    function oftVersion() external pure virtual returns (bytes4 interfaceId, uint64 version) {
        return (type(IOFT).interfaceId, 1);
    }

    /**
     * @dev Retrieves the address of the underlying ERC20 implementation.
     * @return The address of the OFT token.
     *
     * @dev In the case of OFT, address(this) and erc20 are the same contract.
     */
    function token() external view returns (address) {
        return address(this);
    }

    /**
     * @notice Indicates whether the OFT contract requires approval of the 'token()' to send.
     * @return requiresApproval Needs approval of the underlying token implementation.
     *
     * @dev In the case of OFT where the contract IS the token, approval is NOT required.
     */
    function approvalRequired() external pure virtual returns (bool) {
        return false;
    }

    /**
     * @dev Burns tokens from the sender's specified balance.
     * @param _amountLD The amount of tokens to send in local decimals.
     * @param _minAmountLD The minimum amount to send in local decimals.
     * @param _dstEid The destination chain ID.
     * @return amountSentLD The amount sent in local decimals.
     * @return amountReceivedLD The amount received in local decimals on the remote.
     */
    function _debit(
        uint256 _amountLD,
        uint256 _minAmountLD,
        uint32 _dstEid
    ) internal virtual override returns (uint256 amountSentLD, uint256 amountReceivedLD) {
        (amountSentLD, amountReceivedLD) = _debitView(_amountLD, _minAmountLD, _dstEid);

        // @dev In NON-default OFT, amountSentLD could be 100, with a 10% fee, the amountReceivedLD amount is 90,
        // therefore amountSentLD CAN differ from amountReceivedLD.

        // @dev Default OFT burns on src.
        _burn(msg.sender, amountSentLD);
    }

    /**
     * @dev Credits tokens to the specified address.
     * @param _to The address to credit the tokens to.
     * @param _amountLD The amount of tokens to credit in local decimals.
     * @dev _srcEid The source chain ID.
     * @return amountReceivedLD The amount of tokens ACTUALLY received in local decimals.
     */
    function _credit(
        address _to,
        uint256 _amountLD,
        uint32 /*_srcEid*/
    ) internal virtual override returns (uint256 amountReceivedLD) {
        // @dev Default OFT mints on dst.
        _mint(_to, _amountLD);
        // @dev In the case of NON-default OFT, the _amountLD MIGHT not be == amountReceivedLD.
        return _amountLD;
    }
}

File 3 of 39 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 4 of 39 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

File 5 of 39 : OFTCore.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

import { OApp, Origin } from "../oapp/OApp.sol";
import { OAppOptionsType3 } from "../oapp/libs/OAppOptionsType3.sol";
import { IOAppMsgInspector } from "../oapp/interfaces/IOAppMsgInspector.sol";

import { OAppPreCrimeSimulator } from "../precrime/OAppPreCrimeSimulator.sol";

import { IOFT, SendParam, OFTLimit, OFTReceipt, OFTFeeDetail, MessagingReceipt, MessagingFee } from "./interfaces/IOFT.sol";
import { OFTMsgCodec } from "./libs/OFTMsgCodec.sol";
import { OFTComposeMsgCodec } from "./libs/OFTComposeMsgCodec.sol";

/**
 * @title OFTCore
 * @dev Abstract contract for the OftChain (OFT) token.
 */
abstract contract OFTCore is IOFT, OApp, OAppPreCrimeSimulator, OAppOptionsType3 {
    using OFTMsgCodec for bytes;
    using OFTMsgCodec for bytes32;

    // @notice Provides a conversion rate when swapping between denominations of SD and LD
    //      - shareDecimals == SD == shared Decimals
    //      - localDecimals == LD == local decimals
    // @dev Considers that tokens have different decimal amounts on various chains.
    // @dev eg.
    //  For a token
    //      - locally with 4 decimals --> 1.2345 => uint(12345)
    //      - remotely with 2 decimals --> 1.23 => uint(123)
    //      - The conversion rate would be 10 ** (4 - 2) = 100
    //  @dev If you want to send 1.2345 -> (uint 12345), you CANNOT represent that value on the remote,
    //  you can only display 1.23 -> uint(123).
    //  @dev To preserve the dust that would otherwise be lost on that conversion,
    //  we need to unify a denomination that can be represented on ALL chains inside of the OFT mesh
    uint256 public immutable decimalConversionRate;

    // @notice Msg types that are used to identify the various OFT operations.
    // @dev This can be extended in child contracts for non-default oft operations
    // @dev These values are used in things like combineOptions() in OAppOptionsType3.sol.
    uint16 public constant SEND = 1;
    uint16 public constant SEND_AND_CALL = 2;

    // Address of an optional contract to inspect both 'message' and 'options'
    address public msgInspector;
    event MsgInspectorSet(address inspector);

    /**
     * @dev Constructor.
     * @param _localDecimals The decimals of the token on the local chain (this chain).
     * @param _endpoint The address of the LayerZero endpoint.
     * @param _delegate The delegate capable of making OApp configurations inside of the endpoint.
     */
    constructor(uint8 _localDecimals, address _endpoint, address _delegate) OApp(_endpoint, _delegate) {
        if (_localDecimals < sharedDecimals()) revert InvalidLocalDecimals();
        decimalConversionRate = 10 ** (_localDecimals - sharedDecimals());
    }

    /**
     * @dev Retrieves the shared decimals of the OFT.
     * @return The shared decimals of the OFT.
     *
     * @dev Sets an implicit cap on the amount of tokens, over uint64.max() will need some sort of outbound cap / totalSupply cap
     * Lowest common decimal denominator between chains.
     * Defaults to 6 decimal places to provide up to 18,446,744,073,709.551615 units (max uint64).
     * For tokens exceeding this totalSupply(), they will need to override the sharedDecimals function with something smaller.
     * ie. 4 sharedDecimals would be 1,844,674,407,370,955.1615
     */
    function sharedDecimals() public pure virtual returns (uint8) {
        return 6;
    }

    /**
     * @dev Sets the message inspector address for the OFT.
     * @param _msgInspector The address of the message inspector.
     *
     * @dev This is an optional contract that can be used to inspect both 'message' and 'options'.
     * @dev Set it to address(0) to disable it, or set it to a contract address to enable it.
     */
    function setMsgInspector(address _msgInspector) public virtual onlyOwner {
        msgInspector = _msgInspector;
        emit MsgInspectorSet(_msgInspector);
    }

    /**
     * @notice Provides a quote for OFT-related operations.
     * @param _sendParam The parameters for the send operation.
     * @return oftLimit The OFT limit information.
     * @return oftFeeDetails The details of OFT fees.
     * @return oftReceipt The OFT receipt information.
     */
    function quoteOFT(
        SendParam calldata _sendParam
    )
        external
        view
        virtual
        returns (OFTLimit memory oftLimit, OFTFeeDetail[] memory oftFeeDetails, OFTReceipt memory oftReceipt)
    {
        uint256 minAmountLD = 0; // Unused in the default implementation.
        uint256 maxAmountLD = type(uint64).max; // Unused in the default implementation.
        oftLimit = OFTLimit(minAmountLD, maxAmountLD);

        // Unused in the default implementation; reserved for future complex fee details.
        oftFeeDetails = new OFTFeeDetail[](0);

        // @dev This is the same as the send() operation, but without the actual send.
        // - amountSentLD is the amount in local decimals that would be sent from the sender.
        // - amountReceivedLD is the amount in local decimals that will be credited to the recipient on the remote OFT instance.
        // @dev The amountSentLD MIGHT not equal the amount the user actually receives. HOWEVER, the default does.
        (uint256 amountSentLD, uint256 amountReceivedLD) = _debitView(
            _sendParam.amountLD,
            _sendParam.minAmountLD,
            _sendParam.dstEid
        );
        oftReceipt = OFTReceipt(amountSentLD, amountReceivedLD);
    }

    /**
     * @notice Provides a quote for the send() operation.
     * @param _sendParam The parameters for the send() operation.
     * @param _payInLzToken Flag indicating whether the caller is paying in the LZ token.
     * @return msgFee The calculated LayerZero messaging fee from the send() operation.
     *
     * @dev MessagingFee: LayerZero msg fee
     *  - nativeFee: The native fee.
     *  - lzTokenFee: The lzToken fee.
     */
    function quoteSend(
        SendParam calldata _sendParam,
        bool _payInLzToken
    ) external view virtual returns (MessagingFee memory msgFee) {
        // @dev mock the amount to receive, this is the same operation used in the send().
        // The quote is as similar as possible to the actual send() operation.
        (, uint256 amountReceivedLD) = _debitView(_sendParam.amountLD, _sendParam.minAmountLD, _sendParam.dstEid);

        // @dev Builds the options and OFT message to quote in the endpoint.
        (bytes memory message, bytes memory options) = _buildMsgAndOptions(_sendParam, amountReceivedLD);

        // @dev Calculates the LayerZero fee for the send() operation.
        return _quote(_sendParam.dstEid, message, options, _payInLzToken);
    }

    /**
     * @dev Executes the send operation.
     * @param _sendParam The parameters for the send operation.
     * @param _fee The calculated fee for the send() operation.
     *      - nativeFee: The native fee.
     *      - lzTokenFee: The lzToken fee.
     * @param _refundAddress The address to receive any excess funds.
     * @return msgReceipt The receipt for the send operation.
     * @return oftReceipt The OFT receipt information.
     *
     * @dev MessagingReceipt: LayerZero msg receipt
     *  - guid: The unique identifier for the sent message.
     *  - nonce: The nonce of the sent message.
     *  - fee: The LayerZero fee incurred for the message.
     */
    function send(
        SendParam calldata _sendParam,
        MessagingFee calldata _fee,
        address _refundAddress
    ) external payable virtual returns (MessagingReceipt memory msgReceipt, OFTReceipt memory oftReceipt) {
        // @dev Applies the token transfers regarding this send() operation.
        // - amountSentLD is the amount in local decimals that was ACTUALLY sent from the sender.
        // - amountReceivedLD is the amount in local decimals that will be credited to the recipient on the remote OFT instance.
        (uint256 amountSentLD, uint256 amountReceivedLD) = _debit(
            _sendParam.amountLD,
            _sendParam.minAmountLD,
            _sendParam.dstEid
        );

        // @dev Builds the options and OFT message to quote in the endpoint.
        (bytes memory message, bytes memory options) = _buildMsgAndOptions(_sendParam, amountReceivedLD);

        // @dev Sends the message to the LayerZero endpoint and returns the LayerZero msg receipt.
        msgReceipt = _lzSend(_sendParam.dstEid, message, options, _fee, _refundAddress);
        // @dev Formulate the OFT receipt.
        oftReceipt = OFTReceipt(amountSentLD, amountReceivedLD);

        emit OFTSent(msgReceipt.guid, _sendParam.dstEid, msg.sender, amountSentLD);
    }

    /**
     * @dev Internal function to build the message and options.
     * @param _sendParam The parameters for the send() operation.
     * @param _amountLD The amount in local decimals.
     * @return message The encoded message.
     * @return options The encoded options.
     */
    function _buildMsgAndOptions(
        SendParam calldata _sendParam,
        uint256 _amountLD
    ) internal view virtual returns (bytes memory message, bytes memory options) {
        bool hasCompose;
        // @dev This generated message has the msg.sender encoded into the payload so the remote knows who the caller is.
        (message, hasCompose) = OFTMsgCodec.encode(
            _sendParam.to,
            _toSD(_amountLD),
            // @dev Must be include a non empty bytes if you want to compose, EVEN if you dont need it on the remote.
            // EVEN if you dont require an arbitrary payload to be sent... eg. '0x01'
            _sendParam.composeMsg
        );
        // @dev Change the msg type depending if its composed or not.
        uint16 msgType = hasCompose ? SEND_AND_CALL : SEND;
        // @dev Combine the callers _extraOptions with the enforced options via the OAppOptionsType3.
        options = combineOptions(_sendParam.dstEid, msgType, _sendParam.extraOptions);

        // @dev Optionally inspect the message and options depending if the OApp owner has set a msg inspector.
        // @dev If it fails inspection, needs to revert in the implementation. ie. does not rely on return boolean
        if (msgInspector != address(0)) IOAppMsgInspector(msgInspector).inspect(message, options);
    }

    /**
     * @dev Internal function to handle the receive on the LayerZero endpoint.
     * @param _origin The origin information.
     *  - srcEid: The source chain endpoint ID.
     *  - sender: The sender address from the src chain.
     *  - nonce: The nonce of the LayerZero message.
     * @param _guid The unique identifier for the received LayerZero message.
     * @param _message The encoded message.
     * @dev _executor The address of the executor.
     * @dev _extraData Additional data.
     */
    function _lzReceive(
        Origin calldata _origin,
        bytes32 _guid,
        bytes calldata _message,
        address /*_executor*/, // @dev unused in the default implementation.
        bytes calldata /*_extraData*/ // @dev unused in the default implementation.
    ) internal virtual override {
        // @dev The src sending chain doesnt know the address length on this chain (potentially non-evm)
        // Thus everything is bytes32() encoded in flight.
        address toAddress = _message.sendTo().bytes32ToAddress();
        // @dev Credit the amountLD to the recipient and return the ACTUAL amount the recipient received in local decimals
        uint256 amountReceivedLD = _credit(toAddress, _toLD(_message.amountSD()), _origin.srcEid);

        if (_message.isComposed()) {
            // @dev Proprietary composeMsg format for the OFT.
            bytes memory composeMsg = OFTComposeMsgCodec.encode(
                _origin.nonce,
                _origin.srcEid,
                amountReceivedLD,
                _message.composeMsg()
            );

            // @dev Stores the lzCompose payload that will be executed in a separate tx.
            // Standardizes functionality for executing arbitrary contract invocation on some non-evm chains.
            // @dev The off-chain executor will listen and process the msg based on the src-chain-callers compose options passed.
            // @dev The index is used when a OApp needs to compose multiple msgs on lzReceive.
            // For default OFT implementation there is only 1 compose msg per lzReceive, thus its always 0.
            endpoint.sendCompose(toAddress, _guid, 0 /* the index of the composed message*/, composeMsg);
        }

        emit OFTReceived(_guid, _origin.srcEid, toAddress, amountReceivedLD);
    }

    /**
     * @dev Internal function to handle the OAppPreCrimeSimulator simulated receive.
     * @param _origin The origin information.
     *  - srcEid: The source chain endpoint ID.
     *  - sender: The sender address from the src chain.
     *  - nonce: The nonce of the LayerZero message.
     * @param _guid The unique identifier for the received LayerZero message.
     * @param _message The LayerZero message.
     * @param _executor The address of the off-chain executor.
     * @param _extraData Arbitrary data passed by the msg executor.
     *
     * @dev Enables the preCrime simulator to mock sending lzReceive() messages,
     * routes the msg down from the OAppPreCrimeSimulator, and back up to the OAppReceiver.
     */
    function _lzReceiveSimulate(
        Origin calldata _origin,
        bytes32 _guid,
        bytes calldata _message,
        address _executor,
        bytes calldata _extraData
    ) internal virtual override {
        _lzReceive(_origin, _guid, _message, _executor, _extraData);
    }

    /**
     * @dev Check if the peer is considered 'trusted' by the OApp.
     * @param _eid The endpoint ID to check.
     * @param _peer The peer to check.
     * @return Whether the peer passed is considered 'trusted' by the OApp.
     *
     * @dev Enables OAppPreCrimeSimulator to check whether a potential Inbound Packet is from a trusted source.
     */
    function isPeer(uint32 _eid, bytes32 _peer) public view virtual override returns (bool) {
        return peers[_eid] == _peer;
    }

    /**
     * @dev Internal function to remove dust from the given local decimal amount.
     * @param _amountLD The amount in local decimals.
     * @return amountLD The amount after removing dust.
     *
     * @dev Prevents the loss of dust when moving amounts between chains with different decimals.
     * @dev eg. uint(123) with a conversion rate of 100 becomes uint(100).
     */
    function _removeDust(uint256 _amountLD) internal view virtual returns (uint256 amountLD) {
        return (_amountLD / decimalConversionRate) * decimalConversionRate;
    }

    /**
     * @dev Internal function to convert an amount from shared decimals into local decimals.
     * @param _amountSD The amount in shared decimals.
     * @return amountLD The amount in local decimals.
     */
    function _toLD(uint64 _amountSD) internal view virtual returns (uint256 amountLD) {
        return _amountSD * decimalConversionRate;
    }

    /**
     * @dev Internal function to convert an amount from local decimals into shared decimals.
     * @param _amountLD The amount in local decimals.
     * @return amountSD The amount in shared decimals.
     */
    function _toSD(uint256 _amountLD) internal view virtual returns (uint64 amountSD) {
        return uint64(_amountLD / decimalConversionRate);
    }

    /**
     * @dev Internal function to mock the amount mutation from a OFT debit() operation.
     * @param _amountLD The amount to send in local decimals.
     * @param _minAmountLD The minimum amount to send in local decimals.
     * @dev _dstEid The destination endpoint ID.
     * @return amountSentLD The amount sent, in local decimals.
     * @return amountReceivedLD The amount to be received on the remote chain, in local decimals.
     *
     * @dev This is where things like fees would be calculated and deducted from the amount to be received on the remote.
     */
    function _debitView(
        uint256 _amountLD,
        uint256 _minAmountLD,
        uint32 /*_dstEid*/
    ) internal view virtual returns (uint256 amountSentLD, uint256 amountReceivedLD) {
        // @dev Remove the dust so nothing is lost on the conversion between chains with different decimals for the token.
        amountSentLD = _removeDust(_amountLD);
        // @dev The amount to send is the same as amount received in the default implementation.
        amountReceivedLD = amountSentLD;

        // @dev Check for slippage.
        if (amountReceivedLD < _minAmountLD) {
            revert SlippageExceeded(amountReceivedLD, _minAmountLD);
        }
    }

    /**
     * @dev Internal function to perform a debit operation.
     * @param _amountLD The amount to send in local decimals.
     * @param _minAmountLD The minimum amount to send in local decimals.
     * @param _dstEid The destination endpoint ID.
     * @return amountSentLD The amount sent in local decimals.
     * @return amountReceivedLD The amount received in local decimals on the remote.
     *
     * @dev Defined here but are intended to be overriden depending on the OFT implementation.
     * @dev Depending on OFT implementation the _amountLD could differ from the amountReceivedLD.
     */
    function _debit(
        uint256 _amountLD,
        uint256 _minAmountLD,
        uint32 _dstEid
    ) internal virtual returns (uint256 amountSentLD, uint256 amountReceivedLD);

    /**
     * @dev Internal function to perform a credit operation.
     * @param _to The address to credit.
     * @param _amountLD The amount to credit in local decimals.
     * @param _srcEid The source endpoint ID.
     * @return amountReceivedLD The amount ACTUALLY received in local decimals.
     *
     * @dev Defined here but are intended to be overriden depending on the OFT implementation.
     * @dev Depending on OFT implementation the _amountLD could differ from the amountReceivedLD.
     */
    function _credit(
        address _to,
        uint256 _amountLD,
        uint32 _srcEid
    ) internal virtual returns (uint256 amountReceivedLD);
}

File 6 of 39 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 7 of 39 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

File 8 of 39 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

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

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 9 of 39 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 10 of 39 : OApp.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

// @dev Import the 'MessagingFee' and 'MessagingReceipt' so it's exposed to OApp implementers
// solhint-disable-next-line no-unused-import
import { OAppSender, MessagingFee, MessagingReceipt } from "./OAppSender.sol";
// @dev Import the 'Origin' so it's exposed to OApp implementers
// solhint-disable-next-line no-unused-import
import { OAppReceiver, Origin } from "./OAppReceiver.sol";
import { OAppCore } from "./OAppCore.sol";

/**
 * @title OApp
 * @dev Abstract contract serving as the base for OApp implementation, combining OAppSender and OAppReceiver functionality.
 */
abstract contract OApp is OAppSender, OAppReceiver {
    /**
     * @dev Constructor to initialize the OApp with the provided endpoint and owner.
     * @param _endpoint The address of the LOCAL LayerZero endpoint.
     * @param _delegate The delegate capable of making OApp configurations inside of the endpoint.
     */
    constructor(address _endpoint, address _delegate) OAppCore(_endpoint, _delegate) {}

    /**
     * @notice Retrieves the OApp version information.
     * @return senderVersion The version of the OAppSender.sol implementation.
     * @return receiverVersion The version of the OAppReceiver.sol implementation.
     */
    function oAppVersion()
        public
        pure
        virtual
        override(OAppSender, OAppReceiver)
        returns (uint64 senderVersion, uint64 receiverVersion)
    {
        return (SENDER_VERSION, RECEIVER_VERSION);
    }
}

File 11 of 39 : OAppOptionsType3.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { IOAppOptionsType3, EnforcedOptionParam } from "../interfaces/IOAppOptionsType3.sol";

/**
 * @title OAppOptionsType3
 * @dev Abstract contract implementing the IOAppOptionsType3 interface with type 3 options.
 */
abstract contract OAppOptionsType3 is IOAppOptionsType3, Ownable {
    uint16 internal constant OPTION_TYPE_3 = 3;

    // @dev The "msgType" should be defined in the child contract.
    mapping(uint32 eid => mapping(uint16 msgType => bytes enforcedOption)) public enforcedOptions;

    /**
     * @dev Sets the enforced options for specific endpoint and message type combinations.
     * @param _enforcedOptions An array of EnforcedOptionParam structures specifying enforced options.
     *
     * @dev Only the owner/admin of the OApp can call this function.
     * @dev Provides a way for the OApp to enforce things like paying for PreCrime, AND/OR minimum dst lzReceive gas amounts etc.
     * @dev These enforced options can vary as the potential options/execution on the remote may differ as per the msgType.
     * eg. Amount of lzReceive() gas necessary to deliver a lzCompose() message adds overhead you dont want to pay
     * if you are only making a standard LayerZero message ie. lzReceive() WITHOUT sendCompose().
     */
    function setEnforcedOptions(EnforcedOptionParam[] calldata _enforcedOptions) public virtual onlyOwner {
        for (uint256 i = 0; i < _enforcedOptions.length; i++) {
            // @dev Enforced options are only available for optionType 3, as type 1 and 2 dont support combining.
            _assertOptionsType3(_enforcedOptions[i].options);
            enforcedOptions[_enforcedOptions[i].eid][_enforcedOptions[i].msgType] = _enforcedOptions[i].options;
        }

        emit EnforcedOptionSet(_enforcedOptions);
    }

    /**
     * @notice Combines options for a given endpoint and message type.
     * @param _eid The endpoint ID.
     * @param _msgType The OAPP message type.
     * @param _extraOptions Additional options passed by the caller.
     * @return options The combination of caller specified options AND enforced options.
     *
     * @dev If there is an enforced lzReceive option:
     * - {gasLimit: 200k, msg.value: 1 ether} AND a caller supplies a lzReceive option: {gasLimit: 100k, msg.value: 0.5 ether}
     * - The resulting options will be {gasLimit: 300k, msg.value: 1.5 ether} when the message is executed on the remote lzReceive() function.
     * @dev This presence of duplicated options is handled off-chain in the verifier/executor.
     */
    function combineOptions(
        uint32 _eid,
        uint16 _msgType,
        bytes calldata _extraOptions
    ) public view virtual returns (bytes memory) {
        bytes memory enforced = enforcedOptions[_eid][_msgType];

        // No enforced options, pass whatever the caller supplied, even if it's empty or legacy type 1/2 options.
        if (enforced.length == 0) return _extraOptions;

        // No caller options, return enforced
        if (_extraOptions.length == 0) return enforced;

        // @dev If caller provided _extraOptions, must be type 3 as its the ONLY type that can be combined.
        if (_extraOptions.length >= 2) {
            _assertOptionsType3(_extraOptions);
            // @dev Remove the first 2 bytes containing the type from the _extraOptions and combine with enforced.
            return bytes.concat(enforced, _extraOptions[2:]);
        }

        // No valid set of options was found.
        revert InvalidOptions(_extraOptions);
    }

    /**
     * @dev Internal function to assert that options are of type 3.
     * @param _options The options to be checked.
     */
    function _assertOptionsType3(bytes calldata _options) internal pure virtual {
        uint16 optionsType = uint16(bytes2(_options[0:2]));
        if (optionsType != OPTION_TYPE_3) revert InvalidOptions(_options);
    }
}

File 12 of 39 : IOAppMsgInspector.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

/**
 * @title IOAppMsgInspector
 * @dev Interface for the OApp Message Inspector, allowing examination of message and options contents.
 */
interface IOAppMsgInspector {
    // Custom error message for inspection failure
    error InspectionFailed(bytes message, bytes options);

    /**
     * @notice Allows the inspector to examine LayerZero message contents and optionally throw a revert if invalid.
     * @param _message The message payload to be inspected.
     * @param _options Additional options or parameters for inspection.
     * @return valid A boolean indicating whether the inspection passed (true) or failed (false).
     *
     * @dev Optionally done as a revert, OR use the boolean provided to handle the failure.
     */
    function inspect(bytes calldata _message, bytes calldata _options) external view returns (bool valid);
}

File 13 of 39 : OAppPreCrimeSimulator.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { IPreCrime } from "./interfaces/IPreCrime.sol";
import { IOAppPreCrimeSimulator, InboundPacket, Origin } from "./interfaces/IOAppPreCrimeSimulator.sol";

/**
 * @title OAppPreCrimeSimulator
 * @dev Abstract contract serving as the base for preCrime simulation functionality in an OApp.
 */
abstract contract OAppPreCrimeSimulator is IOAppPreCrimeSimulator, Ownable {
    // The address of the preCrime implementation.
    address public preCrime;

    /**
     * @dev Retrieves the address of the OApp contract.
     * @return The address of the OApp contract.
     *
     * @dev The simulator contract is the base contract for the OApp by default.
     * @dev If the simulator is a separate contract, override this function.
     */
    function oApp() external view virtual returns (address) {
        return address(this);
    }

    /**
     * @dev Sets the preCrime contract address.
     * @param _preCrime The address of the preCrime contract.
     */
    function setPreCrime(address _preCrime) public virtual onlyOwner {
        preCrime = _preCrime;
        emit PreCrimeSet(_preCrime);
    }

    /**
     * @dev Interface for pre-crime simulations. Always reverts at the end with the simulation results.
     * @param _packets An array of InboundPacket objects representing received packets to be delivered.
     *
     * @dev WARNING: MUST revert at the end with the simulation results.
     * @dev Gives the preCrime implementation the ability to mock sending packets to the lzReceive function,
     * WITHOUT actually executing them.
     */
    function lzReceiveAndRevert(InboundPacket[] calldata _packets) public payable virtual {
        for (uint256 i = 0; i < _packets.length; i++) {
            InboundPacket calldata packet = _packets[i];

            // Ignore packets that are not from trusted peers.
            if (!isPeer(packet.origin.srcEid, packet.origin.sender)) continue;

            // @dev Because a verifier is calling this function, it doesnt have access to executor params:
            //  - address _executor
            //  - bytes calldata _extraData
            // preCrime will NOT work for OApps that rely on these two parameters inside of their _lzReceive().
            // They are instead stubbed to default values, address(0) and bytes("")
            // @dev Calling this.lzReceiveSimulate removes ability for assembly return 0 callstack exit,
            // which would cause the revert to be ignored.
            this.lzReceiveSimulate{ value: packet.value }(
                packet.origin,
                packet.guid,
                packet.message,
                packet.executor,
                packet.extraData
            );
        }

        // @dev Revert with the simulation results. msg.sender must implement IPreCrime.buildSimulationResult().
        revert SimulationResult(IPreCrime(msg.sender).buildSimulationResult());
    }

    /**
     * @dev Is effectively an internal function because msg.sender must be address(this).
     * Allows resetting the call stack for 'internal' calls.
     * @param _origin The origin information containing the source endpoint and sender address.
     *  - srcEid: The source chain endpoint ID.
     *  - sender: The sender address on the src chain.
     *  - nonce: The nonce of the message.
     * @param _guid The unique identifier of the packet.
     * @param _message The message payload of the packet.
     * @param _executor The executor address for the packet.
     * @param _extraData Additional data for the packet.
     */
    function lzReceiveSimulate(
        Origin calldata _origin,
        bytes32 _guid,
        bytes calldata _message,
        address _executor,
        bytes calldata _extraData
    ) external payable virtual {
        // @dev Ensure ONLY can be called 'internally'.
        if (msg.sender != address(this)) revert OnlySelf();
        _lzReceiveSimulate(_origin, _guid, _message, _executor, _extraData);
    }

    /**
     * @dev Internal function to handle the OAppPreCrimeSimulator simulated receive.
     * @param _origin The origin information.
     *  - srcEid: The source chain endpoint ID.
     *  - sender: The sender address from the src chain.
     *  - nonce: The nonce of the LayerZero message.
     * @param _guid The GUID of the LayerZero message.
     * @param _message The LayerZero message.
     * @param _executor The address of the off-chain executor.
     * @param _extraData Arbitrary data passed by the msg executor.
     *
     * @dev Enables the preCrime simulator to mock sending lzReceive() messages,
     * routes the msg down from the OAppPreCrimeSimulator, and back up to the OAppReceiver.
     */
    function _lzReceiveSimulate(
        Origin calldata _origin,
        bytes32 _guid,
        bytes calldata _message,
        address _executor,
        bytes calldata _extraData
    ) internal virtual;

    /**
     * @dev checks if the specified peer is considered 'trusted' by the OApp.
     * @param _eid The endpoint Id to check.
     * @param _peer The peer to check.
     * @return Whether the peer passed is considered 'trusted' by the OApp.
     */
    function isPeer(uint32 _eid, bytes32 _peer) public view virtual returns (bool);
}

File 14 of 39 : IOFT.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

import { MessagingReceipt, MessagingFee } from "../../oapp/OAppSender.sol";

/**
 * @dev Struct representing token parameters for the OFT send() operation.
 */
struct SendParam {
    uint32 dstEid; // Destination endpoint ID.
    bytes32 to; // Recipient address.
    uint256 amountLD; // Amount to send in local decimals.
    uint256 minAmountLD; // Minimum amount to send in local decimals.
    bytes extraOptions; // Additional options supplied by the caller to be used in the LayerZero message.
    bytes composeMsg; // The composed message for the send() operation.
    bytes oftCmd; // The OFT command to be executed, unused in default OFT implementations.
}

/**
 * @dev Struct representing OFT limit information.
 * @dev These amounts can change dynamically and are up the the specific oft implementation.
 */
struct OFTLimit {
    uint256 minAmountLD; // Minimum amount in local decimals that can be sent to the recipient.
    uint256 maxAmountLD; // Maximum amount in local decimals that can be sent to the recipient.
}

/**
 * @dev Struct representing OFT receipt information.
 */
struct OFTReceipt {
    uint256 amountSentLD; // Amount of tokens ACTUALLY debited from the sender in local decimals.
    // @dev In non-default implementations, the amountReceivedLD COULD differ from this value.
    uint256 amountReceivedLD; // Amount of tokens to be received on the remote side.
}

/**
 * @dev Struct representing OFT fee details.
 * @dev Future proof mechanism to provide a standardized way to communicate fees to things like a UI.
 */
struct OFTFeeDetail {
    int256 feeAmountLD; // Amount of the fee in local decimals.
    string description; // Description of the fee.
}

/**
 * @title IOFT
 * @dev Interface for the OftChain (OFT) token.
 * @dev Does not inherit ERC20 to accommodate usage by OFTAdapter as well.
 * @dev This specific interface ID is '0x02e49c2c'.
 */
interface IOFT {
    // Custom error messages
    error InvalidLocalDecimals();
    error SlippageExceeded(uint256 amountLD, uint256 minAmountLD);

    // Events
    event OFTSent(
        bytes32 indexed guid, // GUID of the OFT message.
        uint32 dstEid, // Destination Endpoint ID.
        address indexed fromAddress, // Address of the sender on the src chain.
        uint256 amountLD // Amount of tokens sent in local decimals.
    );
    event OFTReceived(
        bytes32 indexed guid, // GUID of the OFT message.
        uint32 srcEid, // Source Endpoint ID.
        address indexed toAddress, // Address of the recipient on the dst chain.
        uint256 amountLD // Amount of tokens received in local decimals.
    );

    /**
     * @notice Retrieves interfaceID and the version of the OFT.
     * @return interfaceId The interface ID.
     * @return version The version.
     *
     * @dev interfaceId: This specific interface ID is '0x02e49c2c'.
     * @dev version: Indicates a cross-chain compatible msg encoding with other OFTs.
     * @dev If a new feature is added to the OFT cross-chain msg encoding, the version will be incremented.
     * ie. localOFT version(x,1) CAN send messages to remoteOFT version(x,1)
     */
    function oftVersion() external view returns (bytes4 interfaceId, uint64 version);

    /**
     * @notice Retrieves the address of the token associated with the OFT.
     * @return token The address of the ERC20 token implementation.
     */
    function token() external view returns (address);

    /**
     * @notice Indicates whether the OFT contract requires approval of the 'token()' to send.
     * @return requiresApproval Needs approval of the underlying token implementation.
     *
     * @dev Allows things like wallet implementers to determine integration requirements,
     * without understanding the underlying token implementation.
     */
    function approvalRequired() external view returns (bool);

    /**
     * @notice Retrieves the shared decimals of the OFT.
     * @return sharedDecimals The shared decimals of the OFT.
     */
    function sharedDecimals() external view returns (uint8);

    /**
     * @notice Provides a quote for OFT-related operations.
     * @param _sendParam The parameters for the send operation.
     * @return limit The OFT limit information.
     * @return oftFeeDetails The details of OFT fees.
     * @return receipt The OFT receipt information.
     */
    function quoteOFT(
        SendParam calldata _sendParam
    ) external view returns (OFTLimit memory, OFTFeeDetail[] memory oftFeeDetails, OFTReceipt memory);

    /**
     * @notice Provides a quote for the send() operation.
     * @param _sendParam The parameters for the send() operation.
     * @param _payInLzToken Flag indicating whether the caller is paying in the LZ token.
     * @return fee The calculated LayerZero messaging fee from the send() operation.
     *
     * @dev MessagingFee: LayerZero msg fee
     *  - nativeFee: The native fee.
     *  - lzTokenFee: The lzToken fee.
     */
    function quoteSend(SendParam calldata _sendParam, bool _payInLzToken) external view returns (MessagingFee memory);

    /**
     * @notice Executes the send() operation.
     * @param _sendParam The parameters for the send operation.
     * @param _fee The fee information supplied by the caller.
     *      - nativeFee: The native fee.
     *      - lzTokenFee: The lzToken fee.
     * @param _refundAddress The address to receive any excess funds from fees etc. on the src.
     * @return receipt The LayerZero messaging receipt from the send() operation.
     * @return oftReceipt The OFT receipt information.
     *
     * @dev MessagingReceipt: LayerZero msg receipt
     *  - guid: The unique identifier for the sent message.
     *  - nonce: The nonce of the sent message.
     *  - fee: The LayerZero fee incurred for the message.
     */
    function send(
        SendParam calldata _sendParam,
        MessagingFee calldata _fee,
        address _refundAddress
    ) external payable returns (MessagingReceipt memory, OFTReceipt memory);
}

File 15 of 39 : OFTMsgCodec.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

library OFTMsgCodec {
    // Offset constants for encoding and decoding OFT messages
    uint8 private constant SEND_TO_OFFSET = 32;
    uint8 private constant SEND_AMOUNT_SD_OFFSET = 40;

    /**
     * @dev Encodes an OFT LayerZero message.
     * @param _sendTo The recipient address.
     * @param _amountShared The amount in shared decimals.
     * @param _composeMsg The composed message.
     * @return _msg The encoded message.
     * @return hasCompose A boolean indicating whether the message has a composed payload.
     */
    function encode(
        bytes32 _sendTo,
        uint64 _amountShared,
        bytes memory _composeMsg
    ) internal view returns (bytes memory _msg, bool hasCompose) {
        hasCompose = _composeMsg.length > 0;
        // @dev Remote chains will want to know the composed function caller ie. msg.sender on the src.
        _msg = hasCompose
            ? abi.encodePacked(_sendTo, _amountShared, addressToBytes32(msg.sender), _composeMsg)
            : abi.encodePacked(_sendTo, _amountShared);
    }

    /**
     * @dev Checks if the OFT message is composed.
     * @param _msg The OFT message.
     * @return A boolean indicating whether the message is composed.
     */
    function isComposed(bytes calldata _msg) internal pure returns (bool) {
        return _msg.length > SEND_AMOUNT_SD_OFFSET;
    }

    /**
     * @dev Retrieves the recipient address from the OFT message.
     * @param _msg The OFT message.
     * @return The recipient address.
     */
    function sendTo(bytes calldata _msg) internal pure returns (bytes32) {
        return bytes32(_msg[:SEND_TO_OFFSET]);
    }

    /**
     * @dev Retrieves the amount in shared decimals from the OFT message.
     * @param _msg The OFT message.
     * @return The amount in shared decimals.
     */
    function amountSD(bytes calldata _msg) internal pure returns (uint64) {
        return uint64(bytes8(_msg[SEND_TO_OFFSET:SEND_AMOUNT_SD_OFFSET]));
    }

    /**
     * @dev Retrieves the composed message from the OFT message.
     * @param _msg The OFT message.
     * @return The composed message.
     */
    function composeMsg(bytes calldata _msg) internal pure returns (bytes memory) {
        return _msg[SEND_AMOUNT_SD_OFFSET:];
    }

    /**
     * @dev Converts an address to bytes32.
     * @param _addr The address to convert.
     * @return The bytes32 representation of the address.
     */
    function addressToBytes32(address _addr) internal pure returns (bytes32) {
        return bytes32(uint256(uint160(_addr)));
    }

    /**
     * @dev Converts bytes32 to an address.
     * @param _b The bytes32 value to convert.
     * @return The address representation of bytes32.
     */
    function bytes32ToAddress(bytes32 _b) internal pure returns (address) {
        return address(uint160(uint256(_b)));
    }
}

File 16 of 39 : OFTComposeMsgCodec.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

library OFTComposeMsgCodec {
    // Offset constants for decoding composed messages
    uint8 private constant NONCE_OFFSET = 8;
    uint8 private constant SRC_EID_OFFSET = 12;
    uint8 private constant AMOUNT_LD_OFFSET = 44;
    uint8 private constant COMPOSE_FROM_OFFSET = 76;

    /**
     * @dev Encodes a OFT composed message.
     * @param _nonce The nonce value.
     * @param _srcEid The source endpoint ID.
     * @param _amountLD The amount in local decimals.
     * @param _composeMsg The composed message.
     * @return _msg The encoded Composed message.
     */
    function encode(
        uint64 _nonce,
        uint32 _srcEid,
        uint256 _amountLD,
        bytes memory _composeMsg // 0x[composeFrom][composeMsg]
    ) internal pure returns (bytes memory _msg) {
        _msg = abi.encodePacked(_nonce, _srcEid, _amountLD, _composeMsg);
    }

    /**
     * @dev Retrieves the nonce from the composed message.
     * @param _msg The message.
     * @return The nonce value.
     */
    function nonce(bytes calldata _msg) internal pure returns (uint64) {
        return uint64(bytes8(_msg[:NONCE_OFFSET]));
    }

    /**
     * @dev Retrieves the source endpoint ID from the composed message.
     * @param _msg The message.
     * @return The source endpoint ID.
     */
    function srcEid(bytes calldata _msg) internal pure returns (uint32) {
        return uint32(bytes4(_msg[NONCE_OFFSET:SRC_EID_OFFSET]));
    }

    /**
     * @dev Retrieves the amount in local decimals from the composed message.
     * @param _msg The message.
     * @return The amount in local decimals.
     */
    function amountLD(bytes calldata _msg) internal pure returns (uint256) {
        return uint256(bytes32(_msg[SRC_EID_OFFSET:AMOUNT_LD_OFFSET]));
    }

    /**
     * @dev Retrieves the composeFrom value from the composed message.
     * @param _msg The message.
     * @return The composeFrom value.
     */
    function composeFrom(bytes calldata _msg) internal pure returns (bytes32) {
        return bytes32(_msg[AMOUNT_LD_OFFSET:COMPOSE_FROM_OFFSET]);
    }

    /**
     * @dev Retrieves the composed message.
     * @param _msg The message.
     * @return The composed message.
     */
    function composeMsg(bytes calldata _msg) internal pure returns (bytes memory) {
        return _msg[COMPOSE_FROM_OFFSET:];
    }

    /**
     * @dev Converts an address to bytes32.
     * @param _addr The address to convert.
     * @return The bytes32 representation of the address.
     */
    function addressToBytes32(address _addr) internal pure returns (bytes32) {
        return bytes32(uint256(uint160(_addr)));
    }

    /**
     * @dev Converts bytes32 to an address.
     * @param _b The bytes32 value to convert.
     * @return The address representation of bytes32.
     */
    function bytes32ToAddress(bytes32 _b) internal pure returns (address) {
        return address(uint160(uint256(_b)));
    }
}

File 17 of 39 : OAppSender.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

import { SafeERC20, IERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import { MessagingParams, MessagingFee, MessagingReceipt } from "@layerzerolabs/lz-evm-protocol-v2/contracts/interfaces/ILayerZeroEndpointV2.sol";
import { OAppCore } from "./OAppCore.sol";

/**
 * @title OAppSender
 * @dev Abstract contract implementing the OAppSender functionality for sending messages to a LayerZero endpoint.
 */
abstract contract OAppSender is OAppCore {
    using SafeERC20 for IERC20;

    // Custom error messages
    error NotEnoughNative(uint256 msgValue);
    error LzTokenUnavailable();

    // @dev The version of the OAppSender implementation.
    // @dev Version is bumped when changes are made to this contract.
    uint64 internal constant SENDER_VERSION = 1;

    /**
     * @notice Retrieves the OApp version information.
     * @return senderVersion The version of the OAppSender.sol contract.
     * @return receiverVersion The version of the OAppReceiver.sol contract.
     *
     * @dev Providing 0 as the default for OAppReceiver version. Indicates that the OAppReceiver is not implemented.
     * ie. this is a SEND only OApp.
     * @dev If the OApp uses both OAppSender and OAppReceiver, then this needs to be override returning the correct versions
     */
    function oAppVersion() public view virtual returns (uint64 senderVersion, uint64 receiverVersion) {
        return (SENDER_VERSION, 0);
    }

    /**
     * @dev Internal function to interact with the LayerZero EndpointV2.quote() for fee calculation.
     * @param _dstEid The destination endpoint ID.
     * @param _message The message payload.
     * @param _options Additional options for the message.
     * @param _payInLzToken Flag indicating whether to pay the fee in LZ tokens.
     * @return fee The calculated MessagingFee for the message.
     *      - nativeFee: The native fee for the message.
     *      - lzTokenFee: The LZ token fee for the message.
     */
    function _quote(
        uint32 _dstEid,
        bytes memory _message,
        bytes memory _options,
        bool _payInLzToken
    ) internal view virtual returns (MessagingFee memory fee) {
        return
            endpoint.quote(
                MessagingParams(_dstEid, _getPeerOrRevert(_dstEid), _message, _options, _payInLzToken),
                address(this)
            );
    }

    /**
     * @dev Internal function to interact with the LayerZero EndpointV2.send() for sending a message.
     * @param _dstEid The destination endpoint ID.
     * @param _message The message payload.
     * @param _options Additional options for the message.
     * @param _fee The calculated LayerZero fee for the message.
     *      - nativeFee: The native fee.
     *      - lzTokenFee: The lzToken fee.
     * @param _refundAddress The address to receive any excess fee values sent to the endpoint.
     * @return receipt The receipt for the sent message.
     *      - guid: The unique identifier for the sent message.
     *      - nonce: The nonce of the sent message.
     *      - fee: The LayerZero fee incurred for the message.
     */
    function _lzSend(
        uint32 _dstEid,
        bytes memory _message,
        bytes memory _options,
        MessagingFee memory _fee,
        address _refundAddress
    ) internal virtual returns (MessagingReceipt memory receipt) {
        // @dev Push corresponding fees to the endpoint, any excess is sent back to the _refundAddress from the endpoint.
        uint256 messageValue = _payNative(_fee.nativeFee);
        if (_fee.lzTokenFee > 0) _payLzToken(_fee.lzTokenFee);

        return
            // solhint-disable-next-line check-send-result
            endpoint.send{ value: messageValue }(
                MessagingParams(_dstEid, _getPeerOrRevert(_dstEid), _message, _options, _fee.lzTokenFee > 0),
                _refundAddress
            );
    }

    /**
     * @dev Internal function to pay the native fee associated with the message.
     * @param _nativeFee The native fee to be paid.
     * @return nativeFee The amount of native currency paid.
     *
     * @dev If the OApp needs to initiate MULTIPLE LayerZero messages in a single transaction,
     * this will need to be overridden because msg.value would contain multiple lzFees.
     * @dev Should be overridden in the event the LayerZero endpoint requires a different native currency.
     * @dev Some EVMs use an ERC20 as a method for paying transactions/gasFees.
     * @dev The endpoint is EITHER/OR, ie. it will NOT support both types of native payment at a time.
     */
    function _payNative(uint256 _nativeFee) internal virtual returns (uint256 nativeFee) {
        if (msg.value != _nativeFee) revert NotEnoughNative(msg.value);
        return _nativeFee;
    }

    /**
     * @dev Internal function to pay the LZ token fee associated with the message.
     * @param _lzTokenFee The LZ token fee to be paid.
     *
     * @dev If the caller is trying to pay in the specified lzToken, then the lzTokenFee is passed to the endpoint.
     * @dev Any excess sent, is passed back to the specified _refundAddress in the _lzSend().
     */
    function _payLzToken(uint256 _lzTokenFee) internal virtual {
        // @dev Cannot cache the token because it is not immutable in the endpoint.
        address lzToken = endpoint.lzToken();
        if (lzToken == address(0)) revert LzTokenUnavailable();

        // Pay LZ token fee by sending tokens to the endpoint.
        IERC20(lzToken).safeTransferFrom(msg.sender, address(endpoint), _lzTokenFee);
    }
}

File 18 of 39 : OAppReceiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

import { IOAppReceiver, Origin } from "./interfaces/IOAppReceiver.sol";
import { OAppCore } from "./OAppCore.sol";

/**
 * @title OAppReceiver
 * @dev Abstract contract implementing the ILayerZeroReceiver interface and extending OAppCore for OApp receivers.
 */
abstract contract OAppReceiver is IOAppReceiver, OAppCore {
    // Custom error message for when the caller is not the registered endpoint/
    error OnlyEndpoint(address addr);

    // @dev The version of the OAppReceiver implementation.
    // @dev Version is bumped when changes are made to this contract.
    uint64 internal constant RECEIVER_VERSION = 1;

    /**
     * @notice Retrieves the OApp version information.
     * @return senderVersion The version of the OAppSender.sol contract.
     * @return receiverVersion The version of the OAppReceiver.sol contract.
     *
     * @dev Providing 0 as the default for OAppSender version. Indicates that the OAppSender is not implemented.
     * ie. this is a RECEIVE only OApp.
     * @dev If the OApp uses both OAppSender and OAppReceiver, then this needs to be override returning the correct versions.
     */
    function oAppVersion() public view virtual returns (uint64 senderVersion, uint64 receiverVersion) {
        return (0, RECEIVER_VERSION);
    }

    /**
     * @notice Retrieves the address responsible for 'sending' composeMsg's to the Endpoint.
     * @return sender The address responsible for 'sending' composeMsg's to the Endpoint.
     *
     * @dev Applications can optionally choose to implement a separate composeMsg sender that is NOT the bridging layer.
     * @dev The default sender IS the OApp implementer.
     */
    function composeMsgSender() public view virtual returns (address sender) {
        return address(this);
    }

    /**
     * @notice Checks if the path initialization is allowed based on the provided origin.
     * @param origin The origin information containing the source endpoint and sender address.
     * @return Whether the path has been initialized.
     *
     * @dev This indicates to the endpoint that the OApp has enabled msgs for this particular path to be received.
     * @dev This defaults to assuming if a peer has been set, its initialized.
     * Can be overridden by the OApp if there is other logic to determine this.
     */
    function allowInitializePath(Origin calldata origin) public view virtual returns (bool) {
        return peers[origin.srcEid] == origin.sender;
    }

    /**
     * @notice Retrieves the next nonce for a given source endpoint and sender address.
     * @dev _srcEid The source endpoint ID.
     * @dev _sender The sender address.
     * @return nonce The next nonce.
     *
     * @dev The path nonce starts from 1. If 0 is returned it means that there is NO nonce ordered enforcement.
     * @dev Is required by the off-chain executor to determine the OApp expects msg execution is ordered.
     * @dev This is also enforced by the OApp.
     * @dev By default this is NOT enabled. ie. nextNonce is hardcoded to return 0.
     */
    function nextNonce(uint32 /*_srcEid*/, bytes32 /*_sender*/) public view virtual returns (uint64 nonce) {
        return 0;
    }

    /**
     * @dev Entry point for receiving messages or packets from the endpoint.
     * @param _origin The origin information containing the source endpoint and sender address.
     *  - srcEid: The source chain endpoint ID.
     *  - sender: The sender address on the src chain.
     *  - nonce: The nonce of the message.
     * @param _guid The unique identifier for the received LayerZero message.
     * @param _message The payload of the received message.
     * @param _executor The address of the executor for the received message.
     * @param _extraData Additional arbitrary data provided by the corresponding executor.
     *
     * @dev Entry point for receiving msg/packet from the LayerZero endpoint.
     */
    function lzReceive(
        Origin calldata _origin,
        bytes32 _guid,
        bytes calldata _message,
        address _executor,
        bytes calldata _extraData
    ) public payable virtual {
        // Ensures that only the endpoint can attempt to lzReceive() messages to this OApp.
        if (address(endpoint) != msg.sender) revert OnlyEndpoint(msg.sender);

        // Ensure that the sender matches the expected peer for the source endpoint.
        if (_getPeerOrRevert(_origin.srcEid) != _origin.sender) revert OnlyPeer(_origin.srcEid, _origin.sender);

        // Call the internal OApp implementation of lzReceive.
        _lzReceive(_origin, _guid, _message, _executor, _extraData);
    }

    /**
     * @dev Internal function to implement lzReceive logic without needing to copy the basic parameter validation.
     */
    function _lzReceive(
        Origin calldata _origin,
        bytes32 _guid,
        bytes calldata _message,
        address _executor,
        bytes calldata _extraData
    ) internal virtual;
}

File 19 of 39 : OAppCore.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { IOAppCore, ILayerZeroEndpointV2 } from "./interfaces/IOAppCore.sol";

/**
 * @title OAppCore
 * @dev Abstract contract implementing the IOAppCore interface with basic OApp configurations.
 */
abstract contract OAppCore is IOAppCore, Ownable {
    // The LayerZero endpoint associated with the given OApp
    ILayerZeroEndpointV2 public immutable endpoint;

    // Mapping to store peers associated with corresponding endpoints
    mapping(uint32 eid => bytes32 peer) public peers;

    /**
     * @dev Constructor to initialize the OAppCore with the provided endpoint and delegate.
     * @param _endpoint The address of the LOCAL Layer Zero endpoint.
     * @param _delegate The delegate capable of making OApp configurations inside of the endpoint.
     *
     * @dev The delegate typically should be set as the owner of the contract.
     */
    constructor(address _endpoint, address _delegate) {
        endpoint = ILayerZeroEndpointV2(_endpoint);

        if (_delegate == address(0)) revert InvalidDelegate();
        endpoint.setDelegate(_delegate);
    }

    /**
     * @notice Sets the peer address (OApp instance) for a corresponding endpoint.
     * @param _eid The endpoint ID.
     * @param _peer The address of the peer to be associated with the corresponding endpoint.
     *
     * @dev Only the owner/admin of the OApp can call this function.
     * @dev Indicates that the peer is trusted to send LayerZero messages to this OApp.
     * @dev Set this to bytes32(0) to remove the peer address.
     * @dev Peer is a bytes32 to accommodate non-evm chains.
     */
    function setPeer(uint32 _eid, bytes32 _peer) public virtual onlyOwner {
        peers[_eid] = _peer;
        emit PeerSet(_eid, _peer);
    }

    /**
     * @notice Internal function to get the peer address associated with a specific endpoint; reverts if NOT set.
     * ie. the peer is set to bytes32(0).
     * @param _eid The endpoint ID.
     * @return peer The address of the peer associated with the specified endpoint.
     */
    function _getPeerOrRevert(uint32 _eid) internal view virtual returns (bytes32) {
        bytes32 peer = peers[_eid];
        if (peer == bytes32(0)) revert NoPeer(_eid);
        return peer;
    }

    /**
     * @notice Sets the delegate address for the OApp.
     * @param _delegate The address of the delegate to be set.
     *
     * @dev Only the owner/admin of the OApp can call this function.
     * @dev Provides the ability for a delegate to set configs, on behalf of the OApp, directly on the Endpoint contract.
     */
    function setDelegate(address _delegate) public onlyOwner {
        endpoint.setDelegate(_delegate);
    }
}

File 20 of 39 : IOAppOptionsType3.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

/**
 * @dev Struct representing enforced option parameters.
 */
struct EnforcedOptionParam {
    uint32 eid; // Endpoint ID
    uint16 msgType; // Message Type
    bytes options; // Additional options
}

/**
 * @title IOAppOptionsType3
 * @dev Interface for the OApp with Type 3 Options, allowing the setting and combining of enforced options.
 */
interface IOAppOptionsType3 {
    // Custom error message for invalid options
    error InvalidOptions(bytes options);

    // Event emitted when enforced options are set
    event EnforcedOptionSet(EnforcedOptionParam[] _enforcedOptions);

    /**
     * @notice Sets enforced options for specific endpoint and message type combinations.
     * @param _enforcedOptions An array of EnforcedOptionParam structures specifying enforced options.
     */
    function setEnforcedOptions(EnforcedOptionParam[] calldata _enforcedOptions) external;

    /**
     * @notice Combines options for a given endpoint and message type.
     * @param _eid The endpoint ID.
     * @param _msgType The OApp message type.
     * @param _extraOptions Additional options passed by the caller.
     * @return options The combination of caller specified options AND enforced options.
     */
    function combineOptions(
        uint32 _eid,
        uint16 _msgType,
        bytes calldata _extraOptions
    ) external view returns (bytes memory options);
}

File 21 of 39 : IPreCrime.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;
struct PreCrimePeer {
    uint32 eid;
    bytes32 preCrime;
    bytes32 oApp;
}

// TODO not done yet
interface IPreCrime {
    error OnlyOffChain();

    // for simulate()
    error PacketOversize(uint256 max, uint256 actual);
    error PacketUnsorted();
    error SimulationFailed(bytes reason);

    // for preCrime()
    error SimulationResultNotFound(uint32 eid);
    error InvalidSimulationResult(uint32 eid, bytes reason);
    error CrimeFound(bytes crime);

    function getConfig(bytes[] calldata _packets, uint256[] calldata _packetMsgValues) external returns (bytes memory);

    function simulate(
        bytes[] calldata _packets,
        uint256[] calldata _packetMsgValues
    ) external payable returns (bytes memory);

    function buildSimulationResult() external view returns (bytes memory);

    function preCrime(
        bytes[] calldata _packets,
        uint256[] calldata _packetMsgValues,
        bytes[] calldata _simulations
    ) external;

    function version() external view returns (uint64 major, uint8 minor);
}

File 22 of 39 : IOAppPreCrimeSimulator.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

// @dev Import the Origin so it's exposed to OAppPreCrimeSimulator implementers.
// solhint-disable-next-line no-unused-import
import { InboundPacket, Origin } from "../libs/Packet.sol";

/**
 * @title IOAppPreCrimeSimulator Interface
 * @dev Interface for the preCrime simulation functionality in an OApp.
 */
interface IOAppPreCrimeSimulator {
    // @dev simulation result used in PreCrime implementation
    error SimulationResult(bytes result);
    error OnlySelf();

    /**
     * @dev Emitted when the preCrime contract address is set.
     * @param preCrimeAddress The address of the preCrime contract.
     */
    event PreCrimeSet(address preCrimeAddress);

    /**
     * @dev Retrieves the address of the preCrime contract implementation.
     * @return The address of the preCrime contract.
     */
    function preCrime() external view returns (address);

    /**
     * @dev Retrieves the address of the OApp contract.
     * @return The address of the OApp contract.
     */
    function oApp() external view returns (address);

    /**
     * @dev Sets the preCrime contract address.
     * @param _preCrime The address of the preCrime contract.
     */
    function setPreCrime(address _preCrime) external;

    /**
     * @dev Mocks receiving a packet, then reverts with a series of data to infer the state/result.
     * @param _packets An array of LayerZero InboundPacket objects representing received packets.
     */
    function lzReceiveAndRevert(InboundPacket[] calldata _packets) external payable;

    /**
     * @dev checks if the specified peer is considered 'trusted' by the OApp.
     * @param _eid The endpoint Id to check.
     * @param _peer The peer to check.
     * @return Whether the peer passed is considered 'trusted' by the OApp.
     */
    function isPeer(uint32 _eid, bytes32 _peer) external view returns (bool);
}

File 23 of 39 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";
import {IERC20Permit} from "../extensions/IERC20Permit.sol";
import {Address} from "../../../utils/Address.sol";

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

    /**
     * @dev An operation with an ERC20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

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

        bytes memory returndata = address(token).functionCall(data);
        if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
    }
}

File 24 of 39 : ILayerZeroEndpointV2.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.0;

import { IMessageLibManager } from "./IMessageLibManager.sol";
import { IMessagingComposer } from "./IMessagingComposer.sol";
import { IMessagingChannel } from "./IMessagingChannel.sol";
import { IMessagingContext } from "./IMessagingContext.sol";

struct MessagingParams {
    uint32 dstEid;
    bytes32 receiver;
    bytes message;
    bytes options;
    bool payInLzToken;
}

struct MessagingReceipt {
    bytes32 guid;
    uint64 nonce;
    MessagingFee fee;
}

struct MessagingFee {
    uint256 nativeFee;
    uint256 lzTokenFee;
}

struct Origin {
    uint32 srcEid;
    bytes32 sender;
    uint64 nonce;
}

interface ILayerZeroEndpointV2 is IMessageLibManager, IMessagingComposer, IMessagingChannel, IMessagingContext {
    event PacketSent(bytes encodedPayload, bytes options, address sendLibrary);

    event PacketVerified(Origin origin, address receiver, bytes32 payloadHash);

    event PacketDelivered(Origin origin, address receiver);

    event LzReceiveAlert(
        address indexed receiver,
        address indexed executor,
        Origin origin,
        bytes32 guid,
        uint256 gas,
        uint256 value,
        bytes message,
        bytes extraData,
        bytes reason
    );

    event LzTokenSet(address token);

    event DelegateSet(address sender, address delegate);

    function quote(MessagingParams calldata _params, address _sender) external view returns (MessagingFee memory);

    function send(
        MessagingParams calldata _params,
        address _refundAddress
    ) external payable returns (MessagingReceipt memory);

    function verify(Origin calldata _origin, address _receiver, bytes32 _payloadHash) external;

    function verifiable(Origin calldata _origin, address _receiver) external view returns (bool);

    function initializable(Origin calldata _origin, address _receiver) external view returns (bool);

    function lzReceive(
        Origin calldata _origin,
        address _receiver,
        bytes32 _guid,
        bytes calldata _message,
        bytes calldata _extraData
    ) external payable;

    // oapp can burn messages partially by calling this function with its own business logic if messages are verified in order
    function clear(address _oapp, Origin calldata _origin, bytes32 _guid, bytes calldata _message) external;

    function setLzToken(address _lzToken) external;

    function lzToken() external view returns (address);

    function nativeToken() external view returns (address);

    function setDelegate(address _delegate) external;
}

File 25 of 39 : IOAppReceiver.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import { ILayerZeroReceiver, Origin } from "@layerzerolabs/lz-evm-protocol-v2/contracts/interfaces/ILayerZeroReceiver.sol";

interface IOAppReceiver is ILayerZeroReceiver {
    /**
     * @notice Retrieves the address responsible for 'sending' composeMsg's to the Endpoint.
     * @return sender The address responsible for 'sending' composeMsg's to the Endpoint.
     *
     * @dev Applications can optionally choose to implement a separate composeMsg sender that is NOT the bridging layer.
     * @dev The default sender IS the OApp implementer.
     */
    function composeMsgSender() external view returns (address sender);
}

File 26 of 39 : IOAppCore.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

import { ILayerZeroEndpointV2 } from "@layerzerolabs/lz-evm-protocol-v2/contracts/interfaces/ILayerZeroEndpointV2.sol";

/**
 * @title IOAppCore
 */
interface IOAppCore {
    // Custom error messages
    error OnlyPeer(uint32 eid, bytes32 sender);
    error NoPeer(uint32 eid);
    error InvalidEndpointCall();
    error InvalidDelegate();

    // Event emitted when a peer (OApp) is set for a corresponding endpoint
    event PeerSet(uint32 eid, bytes32 peer);

    /**
     * @notice Retrieves the OApp version information.
     * @return senderVersion The version of the OAppSender.sol contract.
     * @return receiverVersion The version of the OAppReceiver.sol contract.
     */
    function oAppVersion() external view returns (uint64 senderVersion, uint64 receiverVersion);

    /**
     * @notice Retrieves the LayerZero endpoint associated with the OApp.
     * @return iEndpoint The LayerZero endpoint as an interface.
     */
    function endpoint() external view returns (ILayerZeroEndpointV2 iEndpoint);

    /**
     * @notice Retrieves the peer (OApp) associated with a corresponding endpoint.
     * @param _eid The endpoint ID.
     * @return peer The peer address (OApp instance) associated with the corresponding endpoint.
     */
    function peers(uint32 _eid) external view returns (bytes32 peer);

    /**
     * @notice Sets the peer address (OApp instance) for a corresponding endpoint.
     * @param _eid The endpoint ID.
     * @param _peer The address of the peer to be associated with the corresponding endpoint.
     */
    function setPeer(uint32 _eid, bytes32 _peer) external;

    /**
     * @notice Sets the delegate address for the OApp Core.
     * @param _delegate The address of the delegate to be set.
     */
    function setDelegate(address _delegate) external;
}

File 27 of 39 : Packet.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

import { Origin } from "@layerzerolabs/lz-evm-protocol-v2/contracts/interfaces/ILayerZeroEndpointV2.sol";
import { PacketV1Codec } from "@layerzerolabs/lz-evm-protocol-v2/contracts/messagelib/libs/PacketV1Codec.sol";

/**
 * @title InboundPacket
 * @dev Structure representing an inbound packet received by the contract.
 */
struct InboundPacket {
    Origin origin; // Origin information of the packet.
    uint32 dstEid; // Destination endpointId of the packet.
    address receiver; // Receiver address for the packet.
    bytes32 guid; // Unique identifier of the packet.
    uint256 value; // msg.value of the packet.
    address executor; // Executor address for the packet.
    bytes message; // Message payload of the packet.
    bytes extraData; // Additional arbitrary data for the packet.
}

/**
 * @title PacketDecoder
 * @dev Library for decoding LayerZero packets.
 */
library PacketDecoder {
    using PacketV1Codec for bytes;

    /**
     * @dev Decode an inbound packet from the given packet data.
     * @param _packet The packet data to decode.
     * @return packet An InboundPacket struct representing the decoded packet.
     */
    function decode(bytes calldata _packet) internal pure returns (InboundPacket memory packet) {
        packet.origin = Origin(_packet.srcEid(), _packet.sender(), _packet.nonce());
        packet.dstEid = _packet.dstEid();
        packet.receiver = _packet.receiverB20();
        packet.guid = _packet.guid();
        packet.message = _packet.message();
    }

    /**
     * @dev Decode multiple inbound packets from the given packet data and associated message values.
     * @param _packets An array of packet data to decode.
     * @param _packetMsgValues An array of associated message values for each packet.
     * @return packets An array of InboundPacket structs representing the decoded packets.
     */
    function decode(
        bytes[] calldata _packets,
        uint256[] memory _packetMsgValues
    ) internal pure returns (InboundPacket[] memory packets) {
        packets = new InboundPacket[](_packets.length);
        for (uint256 i = 0; i < _packets.length; i++) {
            bytes calldata packet = _packets[i];
            packets[i] = PacketDecoder.decode(packet);
            // @dev Allows the verifier to specify the msg.value that gets passed in lzReceive.
            packets[i].value = _packetMsgValues[i];
        }
    }
}

File 28 of 39 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     *
     * CAUTION: See Security Considerations above.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 29 of 39 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @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 or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * 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.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @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`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // 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 FailedInnerCall();
        }
    }
}

File 30 of 39 : IMessageLibManager.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.0;

struct SetConfigParam {
    uint32 eid;
    uint32 configType;
    bytes config;
}

interface IMessageLibManager {
    struct Timeout {
        address lib;
        uint256 expiry;
    }

    event LibraryRegistered(address newLib);
    event DefaultSendLibrarySet(uint32 eid, address newLib);
    event DefaultReceiveLibrarySet(uint32 eid, address newLib);
    event DefaultReceiveLibraryTimeoutSet(uint32 eid, address oldLib, uint256 expiry);
    event SendLibrarySet(address sender, uint32 eid, address newLib);
    event ReceiveLibrarySet(address receiver, uint32 eid, address newLib);
    event ReceiveLibraryTimeoutSet(address receiver, uint32 eid, address oldLib, uint256 timeout);

    function registerLibrary(address _lib) external;

    function isRegisteredLibrary(address _lib) external view returns (bool);

    function getRegisteredLibraries() external view returns (address[] memory);

    function setDefaultSendLibrary(uint32 _eid, address _newLib) external;

    function defaultSendLibrary(uint32 _eid) external view returns (address);

    function setDefaultReceiveLibrary(uint32 _eid, address _newLib, uint256 _timeout) external;

    function defaultReceiveLibrary(uint32 _eid) external view returns (address);

    function setDefaultReceiveLibraryTimeout(uint32 _eid, address _lib, uint256 _expiry) external;

    function defaultReceiveLibraryTimeout(uint32 _eid) external view returns (address lib, uint256 expiry);

    function isSupportedEid(uint32 _eid) external view returns (bool);

    function isValidReceiveLibrary(address _receiver, uint32 _eid, address _lib) external view returns (bool);

    /// ------------------- OApp interfaces -------------------
    function setSendLibrary(address _oapp, uint32 _eid, address _newLib) external;

    function getSendLibrary(address _sender, uint32 _eid) external view returns (address lib);

    function isDefaultSendLibrary(address _sender, uint32 _eid) external view returns (bool);

    function setReceiveLibrary(address _oapp, uint32 _eid, address _newLib, uint256 _gracePeriod) external;

    function getReceiveLibrary(address _receiver, uint32 _eid) external view returns (address lib, bool isDefault);

    function setReceiveLibraryTimeout(address _oapp, uint32 _eid, address _lib, uint256 _gracePeriod) external;

    function receiveLibraryTimeout(address _receiver, uint32 _eid) external view returns (address lib, uint256 expiry);

    function setConfig(address _oapp, address _lib, SetConfigParam[] calldata _params) external;

    function getConfig(
        address _oapp,
        address _lib,
        uint32 _eid,
        uint32 _configType
    ) external view returns (bytes memory config);
}

File 31 of 39 : IMessagingComposer.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.0;

interface IMessagingComposer {
    event ComposeSent(address from, address to, bytes32 guid, uint16 index, bytes message);
    event ComposeDelivered(address from, address to, bytes32 guid, uint16 index);
    event LzComposeAlert(
        address indexed from,
        address indexed to,
        address indexed executor,
        bytes32 guid,
        uint16 index,
        uint256 gas,
        uint256 value,
        bytes message,
        bytes extraData,
        bytes reason
    );

    function composeQueue(
        address _from,
        address _to,
        bytes32 _guid,
        uint16 _index
    ) external view returns (bytes32 messageHash);

    function sendCompose(address _to, bytes32 _guid, uint16 _index, bytes calldata _message) external;

    function lzCompose(
        address _from,
        address _to,
        bytes32 _guid,
        uint16 _index,
        bytes calldata _message,
        bytes calldata _extraData
    ) external payable;
}

File 32 of 39 : IMessagingChannel.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.0;

interface IMessagingChannel {
    event InboundNonceSkipped(uint32 srcEid, bytes32 sender, address receiver, uint64 nonce);
    event PacketNilified(uint32 srcEid, bytes32 sender, address receiver, uint64 nonce, bytes32 payloadHash);
    event PacketBurnt(uint32 srcEid, bytes32 sender, address receiver, uint64 nonce, bytes32 payloadHash);

    function eid() external view returns (uint32);

    // this is an emergency function if a message cannot be verified for some reasons
    // required to provide _nextNonce to avoid race condition
    function skip(address _oapp, uint32 _srcEid, bytes32 _sender, uint64 _nonce) external;

    function nilify(address _oapp, uint32 _srcEid, bytes32 _sender, uint64 _nonce, bytes32 _payloadHash) external;

    function burn(address _oapp, uint32 _srcEid, bytes32 _sender, uint64 _nonce, bytes32 _payloadHash) external;

    function nextGuid(address _sender, uint32 _dstEid, bytes32 _receiver) external view returns (bytes32);

    function inboundNonce(address _receiver, uint32 _srcEid, bytes32 _sender) external view returns (uint64);

    function outboundNonce(address _sender, uint32 _dstEid, bytes32 _receiver) external view returns (uint64);

    function inboundPayloadHash(
        address _receiver,
        uint32 _srcEid,
        bytes32 _sender,
        uint64 _nonce
    ) external view returns (bytes32);

    function lazyInboundNonce(address _receiver, uint32 _srcEid, bytes32 _sender) external view returns (uint64);
}

File 33 of 39 : IMessagingContext.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.0;

interface IMessagingContext {
    function isSendingMessage() external view returns (bool);

    function getSendContext() external view returns (uint32 dstEid, address sender);
}

File 34 of 39 : ILayerZeroReceiver.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.0;

import { Origin } from "./ILayerZeroEndpointV2.sol";

interface ILayerZeroReceiver {
    function allowInitializePath(Origin calldata _origin) external view returns (bool);

    function nextNonce(uint32 _eid, bytes32 _sender) external view returns (uint64);

    function lzReceive(
        Origin calldata _origin,
        bytes32 _guid,
        bytes calldata _message,
        address _executor,
        bytes calldata _extraData
    ) external payable;
}

File 35 of 39 : PacketV1Codec.sol
// SPDX-License-Identifier: LZBL-1.2

pragma solidity ^0.8.20;

import { Packet } from "../../interfaces/ISendLib.sol";
import { AddressCast } from "../../libs/AddressCast.sol";

library PacketV1Codec {
    using AddressCast for address;
    using AddressCast for bytes32;

    uint8 internal constant PACKET_VERSION = 1;

    // header (version + nonce + path)
    // version
    uint256 private constant PACKET_VERSION_OFFSET = 0;
    //    nonce
    uint256 private constant NONCE_OFFSET = 1;
    //    path
    uint256 private constant SRC_EID_OFFSET = 9;
    uint256 private constant SENDER_OFFSET = 13;
    uint256 private constant DST_EID_OFFSET = 45;
    uint256 private constant RECEIVER_OFFSET = 49;
    // payload (guid + message)
    uint256 private constant GUID_OFFSET = 81; // keccak256(nonce + path)
    uint256 private constant MESSAGE_OFFSET = 113;

    function encode(Packet memory _packet) internal pure returns (bytes memory encodedPacket) {
        encodedPacket = abi.encodePacked(
            PACKET_VERSION,
            _packet.nonce,
            _packet.srcEid,
            _packet.sender.toBytes32(),
            _packet.dstEid,
            _packet.receiver,
            _packet.guid,
            _packet.message
        );
    }

    function encodePacketHeader(Packet memory _packet) internal pure returns (bytes memory) {
        return
            abi.encodePacked(
                PACKET_VERSION,
                _packet.nonce,
                _packet.srcEid,
                _packet.sender.toBytes32(),
                _packet.dstEid,
                _packet.receiver
            );
    }

    function encodePayload(Packet memory _packet) internal pure returns (bytes memory) {
        return abi.encodePacked(_packet.guid, _packet.message);
    }

    function header(bytes calldata _packet) internal pure returns (bytes calldata) {
        return _packet[0:GUID_OFFSET];
    }

    function version(bytes calldata _packet) internal pure returns (uint8) {
        return uint8(bytes1(_packet[PACKET_VERSION_OFFSET:NONCE_OFFSET]));
    }

    function nonce(bytes calldata _packet) internal pure returns (uint64) {
        return uint64(bytes8(_packet[NONCE_OFFSET:SRC_EID_OFFSET]));
    }

    function srcEid(bytes calldata _packet) internal pure returns (uint32) {
        return uint32(bytes4(_packet[SRC_EID_OFFSET:SENDER_OFFSET]));
    }

    function sender(bytes calldata _packet) internal pure returns (bytes32) {
        return bytes32(_packet[SENDER_OFFSET:DST_EID_OFFSET]);
    }

    function senderAddressB20(bytes calldata _packet) internal pure returns (address) {
        return sender(_packet).toAddress();
    }

    function dstEid(bytes calldata _packet) internal pure returns (uint32) {
        return uint32(bytes4(_packet[DST_EID_OFFSET:RECEIVER_OFFSET]));
    }

    function receiver(bytes calldata _packet) internal pure returns (bytes32) {
        return bytes32(_packet[RECEIVER_OFFSET:GUID_OFFSET]);
    }

    function receiverB20(bytes calldata _packet) internal pure returns (address) {
        return receiver(_packet).toAddress();
    }

    function guid(bytes calldata _packet) internal pure returns (bytes32) {
        return bytes32(_packet[GUID_OFFSET:MESSAGE_OFFSET]);
    }

    function message(bytes calldata _packet) internal pure returns (bytes calldata) {
        return bytes(_packet[MESSAGE_OFFSET:]);
    }

    function payload(bytes calldata _packet) internal pure returns (bytes calldata) {
        return bytes(_packet[GUID_OFFSET:]);
    }

    function payloadHash(bytes calldata _packet) internal pure returns (bytes32) {
        return keccak256(payload(_packet));
    }
}

File 36 of 39 : ISendLib.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.0;

import { MessagingFee } from "./ILayerZeroEndpointV2.sol";
import { IMessageLib } from "./IMessageLib.sol";

struct Packet {
    uint64 nonce;
    uint32 srcEid;
    address sender;
    uint32 dstEid;
    bytes32 receiver;
    bytes32 guid;
    bytes message;
}

interface ISendLib is IMessageLib {
    function send(
        Packet calldata _packet,
        bytes calldata _options,
        bool _payInLzToken
    ) external returns (MessagingFee memory, bytes memory encodedPacket);

    function quote(
        Packet calldata _packet,
        bytes calldata _options,
        bool _payInLzToken
    ) external view returns (MessagingFee memory);

    function setTreasury(address _treasury) external;

    function withdrawFee(address _to, uint256 _amount) external;

    function withdrawLzTokenFee(address _lzToken, address _to, uint256 _amount) external;
}

File 37 of 39 : AddressCast.sol
// SPDX-License-Identifier: LZBL-1.2

pragma solidity ^0.8.20;

library AddressCast {
    error AddressCast_InvalidSizeForAddress();
    error AddressCast_InvalidAddress();

    function toBytes32(bytes calldata _addressBytes) internal pure returns (bytes32 result) {
        if (_addressBytes.length > 32) revert AddressCast_InvalidAddress();
        result = bytes32(_addressBytes);
        unchecked {
            uint256 offset = 32 - _addressBytes.length;
            result = result >> (offset * 8);
        }
    }

    function toBytes32(address _address) internal pure returns (bytes32 result) {
        result = bytes32(uint256(uint160(_address)));
    }

    function toBytes(bytes32 _addressBytes32, uint256 _size) internal pure returns (bytes memory result) {
        if (_size == 0 || _size > 32) revert AddressCast_InvalidSizeForAddress();
        result = new bytes(_size);
        unchecked {
            uint256 offset = 256 - _size * 8;
            assembly {
                mstore(add(result, 32), shl(offset, _addressBytes32))
            }
        }
    }

    function toAddress(bytes32 _addressBytes32) internal pure returns (address result) {
        result = address(uint160(uint256(_addressBytes32)));
    }

    function toAddress(bytes calldata _addressBytes) internal pure returns (address result) {
        if (_addressBytes.length != 20) revert AddressCast_InvalidAddress();
        result = address(bytes20(_addressBytes));
    }
}

File 38 of 39 : IMessageLib.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.0;

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

import { SetConfigParam } from "./IMessageLibManager.sol";

enum MessageLibType {
    Send,
    Receive,
    SendAndReceive
}

interface IMessageLib is IERC165 {
    function setConfig(address _oapp, SetConfigParam[] calldata _config) external;

    function getConfig(uint32 _eid, address _oapp, uint32 _configType) external view returns (bytes memory config);

    function isSupportedEid(uint32 _eid) external view returns (bool);

    // message libs of same major version are compatible
    function version() external view returns (uint64 major, uint8 minor, uint8 endpointVersion);

    function messageLibType() external view returns (MessageLibType);
}

File 39 of 39 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

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

Settings
{
  "remappings": [
    "@layerzerolabs/lz-evm-protocol-v2/=node_modules/@layerzerolabs/lz-evm-protocol-v2/",
    "@openzeppelin/contracts/=node_modules/@openzeppelin/contracts/",
    "lz-oft/=lib/LayerZero-v2/",
    "LayerZero-v2/=lib/LayerZero-v2/",
    "createx-forge/=lib/createx-forge/",
    "ds-test/=lib/solmate/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "solmate/=lib/solmate/src/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "viaIR": false,
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_lzEndpoint","type":"address"},{"internalType":"address","name":"_delegate","type":"address"},{"internalType":"address","name":"_supplyOwner","type":"address"},{"internalType":"uint256","name":"_mainChain","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"InvalidDelegate","type":"error"},{"inputs":[],"name":"InvalidEndpointCall","type":"error"},{"inputs":[],"name":"InvalidLocalDecimals","type":"error"},{"inputs":[{"internalType":"bytes","name":"options","type":"bytes"}],"name":"InvalidOptions","type":"error"},{"inputs":[],"name":"LzTokenUnavailable","type":"error"},{"inputs":[{"internalType":"uint32","name":"eid","type":"uint32"}],"name":"NoPeer","type":"error"},{"inputs":[{"internalType":"uint256","name":"msgValue","type":"uint256"}],"name":"NotEnoughNative","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"OnlyEndpoint","type":"error"},{"inputs":[{"internalType":"uint32","name":"eid","type":"uint32"},{"internalType":"bytes32","name":"sender","type":"bytes32"}],"name":"OnlyPeer","type":"error"},{"inputs":[],"name":"OnlySelf","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"name":"SimulationResult","type":"error"},{"inputs":[{"internalType":"uint256","name":"amountLD","type":"uint256"},{"internalType":"uint256","name":"minAmountLD","type":"uint256"}],"name":"SlippageExceeded","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint32","name":"eid","type":"uint32"},{"internalType":"uint16","name":"msgType","type":"uint16"},{"internalType":"bytes","name":"options","type":"bytes"}],"indexed":false,"internalType":"struct EnforcedOptionParam[]","name":"_enforcedOptions","type":"tuple[]"}],"name":"EnforcedOptionSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"inspector","type":"address"}],"name":"MsgInspectorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"guid","type":"bytes32"},{"indexed":false,"internalType":"uint32","name":"srcEid","type":"uint32"},{"indexed":true,"internalType":"address","name":"toAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountLD","type":"uint256"}],"name":"OFTReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"guid","type":"bytes32"},{"indexed":false,"internalType":"uint32","name":"dstEid","type":"uint32"},{"indexed":true,"internalType":"address","name":"fromAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountLD","type":"uint256"}],"name":"OFTSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"eid","type":"uint32"},{"indexed":false,"internalType":"bytes32","name":"peer","type":"bytes32"}],"name":"PeerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"preCrimeAddress","type":"address"}],"name":"PreCrimeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"SEND","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SEND_AND_CALL","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"srcEid","type":"uint32"},{"internalType":"bytes32","name":"sender","type":"bytes32"},{"internalType":"uint64","name":"nonce","type":"uint64"}],"internalType":"struct Origin","name":"origin","type":"tuple"}],"name":"allowInitializePath","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"approvalRequired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_eid","type":"uint32"},{"internalType":"uint16","name":"_msgType","type":"uint16"},{"internalType":"bytes","name":"_extraOptions","type":"bytes"}],"name":"combineOptions","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"composeMsgSender","outputs":[{"internalType":"address","name":"sender","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimalConversionRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"endpoint","outputs":[{"internalType":"contract ILayerZeroEndpointV2","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"eid","type":"uint32"},{"internalType":"uint16","name":"msgType","type":"uint16"}],"name":"enforcedOptions","outputs":[{"internalType":"bytes","name":"enforcedOption","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32[]","name":"_eids","type":"uint32[]"}],"name":"initPeerOnEids","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_eid","type":"uint32"},{"internalType":"bytes32","name":"_peer","type":"bytes32"}],"name":"isPeer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"srcEid","type":"uint32"},{"internalType":"bytes32","name":"sender","type":"bytes32"},{"internalType":"uint64","name":"nonce","type":"uint64"}],"internalType":"struct Origin","name":"_origin","type":"tuple"},{"internalType":"bytes32","name":"_guid","type":"bytes32"},{"internalType":"bytes","name":"_message","type":"bytes"},{"internalType":"address","name":"_executor","type":"address"},{"internalType":"bytes","name":"_extraData","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"uint32","name":"srcEid","type":"uint32"},{"internalType":"bytes32","name":"sender","type":"bytes32"},{"internalType":"uint64","name":"nonce","type":"uint64"}],"internalType":"struct Origin","name":"origin","type":"tuple"},{"internalType":"uint32","name":"dstEid","type":"uint32"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"bytes32","name":"guid","type":"bytes32"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"address","name":"executor","type":"address"},{"internalType":"bytes","name":"message","type":"bytes"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"internalType":"struct InboundPacket[]","name":"_packets","type":"tuple[]"}],"name":"lzReceiveAndRevert","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"srcEid","type":"uint32"},{"internalType":"bytes32","name":"sender","type":"bytes32"},{"internalType":"uint64","name":"nonce","type":"uint64"}],"internalType":"struct Origin","name":"_origin","type":"tuple"},{"internalType":"bytes32","name":"_guid","type":"bytes32"},{"internalType":"bytes","name":"_message","type":"bytes"},{"internalType":"address","name":"_executor","type":"address"},{"internalType":"bytes","name":"_extraData","type":"bytes"}],"name":"lzReceiveSimulate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mainChain","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"msgInspector","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"","type":"uint32"},{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"nextNonce","outputs":[{"internalType":"uint64","name":"nonce","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oApp","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oAppVersion","outputs":[{"internalType":"uint64","name":"senderVersion","type":"uint64"},{"internalType":"uint64","name":"receiverVersion","type":"uint64"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"oftVersion","outputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"},{"internalType":"uint64","name":"version","type":"uint64"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"eid","type":"uint32"}],"name":"peers","outputs":[{"internalType":"bytes32","name":"peer","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preCrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"dstEid","type":"uint32"},{"internalType":"bytes32","name":"to","type":"bytes32"},{"internalType":"uint256","name":"amountLD","type":"uint256"},{"internalType":"uint256","name":"minAmountLD","type":"uint256"},{"internalType":"bytes","name":"extraOptions","type":"bytes"},{"internalType":"bytes","name":"composeMsg","type":"bytes"},{"internalType":"bytes","name":"oftCmd","type":"bytes"}],"internalType":"struct SendParam","name":"_sendParam","type":"tuple"}],"name":"quoteOFT","outputs":[{"components":[{"internalType":"uint256","name":"minAmountLD","type":"uint256"},{"internalType":"uint256","name":"maxAmountLD","type":"uint256"}],"internalType":"struct OFTLimit","name":"oftLimit","type":"tuple"},{"components":[{"internalType":"int256","name":"feeAmountLD","type":"int256"},{"internalType":"string","name":"description","type":"string"}],"internalType":"struct OFTFeeDetail[]","name":"oftFeeDetails","type":"tuple[]"},{"components":[{"internalType":"uint256","name":"amountSentLD","type":"uint256"},{"internalType":"uint256","name":"amountReceivedLD","type":"uint256"}],"internalType":"struct OFTReceipt","name":"oftReceipt","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"dstEid","type":"uint32"},{"internalType":"bytes32","name":"to","type":"bytes32"},{"internalType":"uint256","name":"amountLD","type":"uint256"},{"internalType":"uint256","name":"minAmountLD","type":"uint256"},{"internalType":"bytes","name":"extraOptions","type":"bytes"},{"internalType":"bytes","name":"composeMsg","type":"bytes"},{"internalType":"bytes","name":"oftCmd","type":"bytes"}],"internalType":"struct SendParam","name":"_sendParam","type":"tuple"},{"internalType":"bool","name":"_payInLzToken","type":"bool"}],"name":"quoteSend","outputs":[{"components":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"lzTokenFee","type":"uint256"}],"internalType":"struct MessagingFee","name":"msgFee","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"dstEid","type":"uint32"},{"internalType":"bytes32","name":"to","type":"bytes32"},{"internalType":"uint256","name":"amountLD","type":"uint256"},{"internalType":"uint256","name":"minAmountLD","type":"uint256"},{"internalType":"bytes","name":"extraOptions","type":"bytes"},{"internalType":"bytes","name":"composeMsg","type":"bytes"},{"internalType":"bytes","name":"oftCmd","type":"bytes"}],"internalType":"struct SendParam","name":"_sendParam","type":"tuple"},{"components":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"lzTokenFee","type":"uint256"}],"internalType":"struct MessagingFee","name":"_fee","type":"tuple"},{"internalType":"address","name":"_refundAddress","type":"address"}],"name":"send","outputs":[{"components":[{"internalType":"bytes32","name":"guid","type":"bytes32"},{"internalType":"uint64","name":"nonce","type":"uint64"},{"components":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"lzTokenFee","type":"uint256"}],"internalType":"struct MessagingFee","name":"fee","type":"tuple"}],"internalType":"struct MessagingReceipt","name":"msgReceipt","type":"tuple"},{"components":[{"internalType":"uint256","name":"amountSentLD","type":"uint256"},{"internalType":"uint256","name":"amountReceivedLD","type":"uint256"}],"internalType":"struct OFTReceipt","name":"oftReceipt","type":"tuple"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_delegate","type":"address"}],"name":"setDelegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"eid","type":"uint32"},{"internalType":"uint16","name":"msgType","type":"uint16"},{"internalType":"bytes","name":"options","type":"bytes"}],"internalType":"struct EnforcedOptionParam[]","name":"_enforcedOptions","type":"tuple[]"}],"name":"setEnforcedOptions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_msgInspector","type":"address"}],"name":"setMsgInspector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_eid","type":"uint32"},{"internalType":"bytes32","name":"_peer","type":"bytes32"}],"name":"setPeer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_preCrime","type":"address"}],"name":"setPreCrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sharedDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newDelegate","type":"address"},{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferDelegateAndOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040523480156200001157600080fd5b506040516200380f3803806200380f8339810160408190526200003491620003f2565b6040518060400160405280600c81526020016b577261707065642052554e4960a01b815250604051806040016040528060058152602001647752554e4960d81b815250858583836200008b6200020f60201b60201c565b8484818181818f6001600160a01b038116620000c257604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b620000cd8162000214565b506001600160a01b038083166080528116620000fc57604051632d618d8160e21b815260040160405180910390fd5b60805160405163ca5eb5e160e01b81526001600160a01b0383811660048301529091169063ca5eb5e190602401600060405180830381600087803b1580156200014457600080fd5b505af115801562000159573d6000803e3d6000fd5b5050505050505050620001716200020f60201b60201c565b60ff168360ff16101562000198576040516301e9714b60e41b815260040160405180910390fd5b620001a56006846200045a565b620001b290600a62000579565b60a0525060089150620001c89050838262000638565b506009620001d7828262000638565b505046600a819055600b8790558690039450620002059350505050576200020582651319718a500062000264565b505050506200071a565b600690565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002905760405163ec442f0560e01b815260006004820152602401620000b9565b6200029e60008383620002a2565b5050565b6001600160a01b038316620002d1578060076000828254620002c5919062000704565b90915550620003459050565b6001600160a01b03831660009081526005602052604090205481811015620003265760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000b9565b6001600160a01b03841660009081526005602052604090209082900390555b6001600160a01b038216620003635760078054829003905562000382565b6001600160a01b03821660009081526005602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003c891815260200190565b60405180910390a3505050565b80516001600160a01b0381168114620003ed57600080fd5b919050565b600080600080608085870312156200040957600080fd5b6200041485620003d5565b93506200042460208601620003d5565b92506200043460408601620003d5565b6060959095015193969295505050565b634e487b7160e01b600052601160045260246000fd5b60ff828116828216039081111562000476576200047662000444565b92915050565b600181815b80851115620004bd578160001904821115620004a157620004a162000444565b80851615620004af57918102915b93841c939080029062000481565b509250929050565b600082620004d65750600162000476565b81620004e55750600062000476565b8160018114620004fe5760028114620005095762000529565b600191505062000476565b60ff8411156200051d576200051d62000444565b50506001821b62000476565b5060208310610133831016604e8410600b84101617156200054e575081810a62000476565b6200055a83836200047c565b806000190482111562000571576200057162000444565b029392505050565b60006200058a60ff841683620004c5565b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005bc57607f821691505b602082108103620005dd57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000633576000816000526020600020601f850160051c810160208610156200060e5750805b601f850160051c820191505b818110156200062f578281556001016200061a565b5050505b505050565b81516001600160401b0381111562000654576200065462000591565b6200066c81620006658454620005a7565b84620005e3565b602080601f831160018114620006a457600084156200068b5750858301515b600019600386901b1c1916600185901b1785556200062f565b600085815260208120601f198616915b82811015620006d557888601518255948401946001909101908401620006b4565b5085821015620006f45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111562000476576200047662000444565b60805160a051613089620007866000396000818161064f01528181611ba201528181611c170152611e0701526000818161052201528181610a08015281816112b40152818161155b01528181611844015281816119f101528181611f080152611fc101526130896000f3fe60806040526004361061027d5760003560e01c80637d25a05e1161014f578063bb0b6a53116100c1578063d045a0dc1161007a578063d045a0dc146107b2578063d4243885146107c5578063dd62ed3e146107e5578063f2fde38b1461082b578063fc0c546a146104a6578063ff7bd03d1461084b57600080fd5b8063bb0b6a53146106fb578063bc70b35414610728578063bd815db014610748578063bfde57301461075b578063c7c7f5b314610771578063ca5eb5e11461079257600080fd5b80639a8a0592116101135780639a8a0592146106715780639f68b96414610687578063a9059cbb1461069b578063b731ea0a146106bb578063b92d0eff146104a6578063b98bd070146106db57600080fd5b80637d25a05e146105cf578063857749b01461043d5780638da5cb5b1461060a57806395d89b4114610628578063963efcaa1461063d57600080fd5b806323b872dd116101f35780635a0dfe4d116101ac5780635a0dfe4d146104d95780635e280f11146105105780636fc1b31e1461054457806370a0823114610564578063715018a61461059a5780637542bf28146105af57600080fd5b806323b872dd1461041d578063313ce5671461043d5780633400288b146104595780633b6f743b1461047957806352ae2879146104a65780635535d461146104b957600080fd5b806313137d651161024557806313137d6514610366578063134d4f2514610379578063156a0d0f146103a157806317442b70146103c857806318160ddd146103e95780631f5e13341461040857600080fd5b8063064b79b91461028257806306fdde03146102a4578063095ea7b3146102cf5780630d35b415146102ff578063111ecdad1461032e575b600080fd5b34801561028e57600080fd5b506102a261029d366004612224565b61086b565b005b3480156102b057600080fd5b506102b9610889565b6040516102c691906122ad565b60405180910390f35b3480156102db57600080fd5b506102ef6102ea3660046122c0565b61091b565b60405190151581526020016102c6565b34801561030b57600080fd5b5061031f61031a366004612304565b610935565b6040516102c693929190612338565b34801561033a57600080fd5b5060045461034e906001600160a01b031681565b6040516001600160a01b0390911681526020016102c6565b6102a261037436600461242b565b610a06565b34801561038557600080fd5b5061038e600281565b60405161ffff90911681526020016102c6565b3480156103ad57600080fd5b506040805162b9270b60e21b815260016020820152016102c6565b3480156103d457600080fd5b506040805160018082526020820152016102c6565b3480156103f557600080fd5b506007545b6040519081526020016102c6565b34801561041457600080fd5b5061038e600181565b34801561042957600080fd5b506102ef6104383660046124ca565b610ac6565b34801561044957600080fd5b50604051600681526020016102c6565b34801561046557600080fd5b506102a2610474366004612524565b610aec565b34801561048557600080fd5b5061049961049436600461254e565b610b4a565b6040516102c69190612594565b3480156104b257600080fd5b503061034e565b3480156104c557600080fd5b506102b96104d43660046125bd565b610bb1565b3480156104e557600080fd5b506102ef6104f4366004612524565b63ffffffff919091166000908152600160205260409020541490565b34801561051c57600080fd5b5061034e7f000000000000000000000000000000000000000000000000000000000000000081565b34801561055057600080fd5b506102a261055f3660046125f0565b610c56565b34801561057057600080fd5b506103fa61057f3660046125f0565b6001600160a01b031660009081526005602052604090205490565b3480156105a657600080fd5b506102a2610cb3565b3480156105bb57600080fd5b506102a26105ca366004612651565b610cc7565b3480156105db57600080fd5b506105f26105ea366004612524565b600092915050565b6040516001600160401b0390911681526020016102c6565b34801561061657600080fd5b506000546001600160a01b031661034e565b34801561063457600080fd5b506102b9610d17565b34801561064957600080fd5b506103fa7f000000000000000000000000000000000000000000000000000000000000000081565b34801561067d57600080fd5b506103fa600a5481565b34801561069357600080fd5b5060006102ef565b3480156106a757600080fd5b506102ef6106b63660046122c0565b610d26565b3480156106c757600080fd5b5060025461034e906001600160a01b031681565b3480156106e757600080fd5b506102a26106f6366004612651565b610d34565b34801561070757600080fd5b506103fa610716366004612692565b60016020526000908152604090205481565b34801561073457600080fd5b506102b96107433660046126ad565b610e95565b6102a2610756366004612651565b611010565b34801561076757600080fd5b506103fa600b5481565b61078461077f36600461270d565b61119a565b6040516102c692919061277a565b34801561079e57600080fd5b506102a26107ad3660046125f0565b61128d565b6102a26107c036600461242b565b611313565b3480156107d157600080fd5b506102a26107e03660046125f0565b611342565b3480156107f157600080fd5b506103fa610800366004612224565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b34801561083757600080fd5b506102a26108463660046125f0565b611398565b34801561085757600080fd5b506102ef6108663660046127cc565b6113d6565b61087361140c565b61087c8261128d565b61088581611398565b5050565b606060088054610898906127e8565b80601f01602080910402602001604051908101604052809291908181526020018280546108c4906127e8565b80156109115780601f106108e657610100808354040283529160200191610911565b820191906000526020600020905b8154815290600101906020018083116108f457829003601f168201915b5050505050905090565b600033610929818585611439565b60019150505b92915050565b60408051808201909152600080825260208201526060610968604051806040016040528060008152602001600081525090565b60408051808201825260008082526001600160401b036020808401829052845183815290810190945291955091826109c3565b60408051808201909152600081526060602082015281526020019060019003908161099b5790505b5093506000806109e8604089013560608a01356109e360208c018c612692565b611446565b60408051808201909152918252602082015296989597505050505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610a56576040516391ac5e4f60e01b81523360048201526024015b60405180910390fd5b60208701803590610a7090610a6b908a612692565b61148a565b14610aae57610a826020880188612692565b60405163309afaf360e21b815263ffffffff909116600482015260208801356024820152604401610a4d565b610abd878787878787876114c6565b50505050505050565b600033610ad485828561162d565b610adf8585856116ab565b60019150505b9392505050565b610af461140c565b63ffffffff8216600081815260016020908152604091829020849055815192835282018390527f238399d427b947898edb290f5ff0f9109849b1c3ba196a42e35f00c50a54b98b91015b60405180910390a15050565b60408051808201909152600080825260208201526000610b7a604085013560608601356109e36020880188612692565b915050600080610b8a868461170a565b9092509050610ba7610b9f6020880188612692565b83838861182e565b9695505050505050565b600360209081526000928352604080842090915290825290208054610bd5906127e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610c01906127e8565b8015610c4e5780601f10610c2357610100808354040283529160200191610c4e565b820191906000526020600020905b815481529060010190602001808311610c3157829003601f168201915b505050505081565b610c5e61140c565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527ff0be4f1e87349231d80c36b33f9e8639658eeaf474014dee15a3e6a4d4414197906020015b60405180910390a150565b610cbb61140c565b610cc5600061190f565b565b610ccf61140c565b60005b81811015610d1257610d0a838383818110610cef57610cef612832565b9050602002016020810190610d049190612692565b30610aec565b600101610cd2565b505050565b606060098054610898906127e8565b6000336109298185856116ab565b610d3c61140c565b60005b81811015610e6357610d81838383818110610d5c57610d5c612832565b9050602002810190610d6e9190612848565b610d7c906040810190612868565b61195f565b828282818110610d9357610d93612832565b9050602002810190610da59190612848565b610db3906040810190612868565b60036000868686818110610dc957610dc9612832565b9050602002810190610ddb9190612848565b610de9906020810190612692565b63ffffffff1663ffffffff1681526020019081526020016000206000868686818110610e1757610e17612832565b9050602002810190610e299190612848565b610e3a9060408101906020016128ae565b61ffff168152602081019190915260400160002091610e5a919083612919565b50600101610d3f565b507fbe4864a8e820971c0247f5992e2da559595f7bf076a21cb5928d443d2a13b6748282604051610b3e929190612a01565b63ffffffff8416600090815260036020908152604080832061ffff87168452909152812080546060929190610ec9906127e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef5906127e8565b8015610f425780601f10610f1757610100808354040283529160200191610f42565b820191906000526020600020905b815481529060010190602001808311610f2557829003601f168201915b505050505090508051600003610f925783838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509294506110089350505050565b6000839003610fa2579050611008565b60028310610feb57610fb4848461195f565b80610fc28460028188612ae5565b604051602001610fd493929190612b0f565b604051602081830303815290604052915050611008565b8383604051639a6d49cd60e01b8152600401610a4d929190612b37565b949350505050565b60005b81811015611119573683838381811061102e5761102e612832565b90506020028101906110409190612b4b565b90506110736110526020830183612692565b602083013563ffffffff919091166000908152600160205260409020541490565b61107d5750611111565b3063d045a0dc60c08301358360a081013561109c610100830183612868565b6110ad610100890160e08a016125f0565b6110bb6101208a018a612868565b6040518963ffffffff1660e01b81526004016110dd9796959493929190612b77565b6000604051808303818588803b1580156110f657600080fd5b505af115801561110a573d6000803e3d6000fd5b5050505050505b600101611013565b50336001600160a01b0316638e9e70996040518163ffffffff1660e01b8152600401600060405180830381865afa158015611158573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526111809190810190612c25565b604051638351eea760e01b8152600401610a4d91906122ad565b6111a26121c8565b60408051808201909152600080825260208201526000806111d8604088013560608901356111d360208b018b612692565b6119a1565b915091506000806111e9898461170a565b90925090506112156111fe60208b018b612692565b838361120f368d90038d018d612cc6565b8b6119be565b60408051808201909152858152602080820186905282519298509096503391907ffff873bb909b73d08a8c1af4b21779e87103bb8ea8cf3b3a0067eb8526b8b80a90611263908d018d612692565b6040805163ffffffff9092168252602082018990520160405180910390a350505050935093915050565b61129561140c565b60405163ca5eb5e160e01b81526001600160a01b0382811660048301527f0000000000000000000000000000000000000000000000000000000000000000169063ca5eb5e190602401600060405180830381600087803b1580156112f857600080fd5b505af115801561130c573d6000803e3d6000fd5b5050505050565b3330146113335760405163029a949d60e31b815260040160405180910390fd5b610abd87878787878787610aae565b61134a61140c565b600280546001600160a01b0319166001600160a01b0383169081179091556040519081527fd48d879cef83a1c0bdda516f27b13ddb1b3f8bbac1c9e1511bb2a659c242776090602001610ca8565b6113a061140c565b6001600160a01b0381166113ca57604051631e4fbdf760e01b815260006004820152602401610a4d565b6113d38161190f565b50565b60006020820180359060019083906113ee9086612692565b63ffffffff1681526020810191909152604001600020541492915050565b6000546001600160a01b03163314610cc55760405163118cdaa760e01b8152336004820152602401610a4d565b610d128383836001611ac9565b60008061145285611b9e565b915081905083811015611482576040516371c4efed60e01b81526004810182905260248101859052604401610a4d565b935093915050565b63ffffffff81166000908152600160205260408120548061092f5760405163f6ff4fb760e01b815263ffffffff84166004820152602401610a4d565b60006114d86114d58787611bd5565b90565b90506000611504826114f26114ed8a8a611bed565b611c10565b6114ff60208d018d612692565b611c45565b905060288611156115cb57600061154161152460608c0160408d01612cf8565b61153160208d018d612692565b8461153c8c8c611c59565b611ca4565b604051633e5ac80960e11b81529091506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690637cb59012906115979086908d906000908790600401612d15565b600060405180830381600087803b1580156115b157600080fd5b505af11580156115c5573d6000803e3d6000fd5b50505050505b6001600160a01b038216887fefed6d3500546b29533b128a29e3a94d70788727f0507505ac12eaf2e578fd9c61160460208d018d612692565b6040805163ffffffff9092168252602082018690520160405180910390a3505050505050505050565b6001600160a01b0383811660009081526006602090815260408083209386168352929052205460001981146116a5578181101561169657604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a4d565b6116a584848484036000611ac9565b50505050565b6001600160a01b0383166116d557604051634b637e8f60e11b815260006004820152602401610a4d565b6001600160a01b0382166116ff5760405163ec442f0560e01b815260006004820152602401610a4d565b610d12838383611cd6565b6060806000611767856020013561172086611e00565b61172d60a0890189612868565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611e2c92505050565b909350905060008161177a57600161177d565b60025b905061179d61178f6020880188612692565b8261074360808a018a612868565b6004549093506001600160a01b031615611825576004805460405163043a78eb60e01b81526001600160a01b039091169163043a78eb916117e2918891889101612d46565b602060405180830381865afa1580156117ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118239190612d6b565b505b50509250929050565b60408051808201909152600080825260208201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ddc28c586040518060a001604052808863ffffffff1681526020016118918961148a565b8152602001878152602001868152602001851515815250306040518363ffffffff1660e01b81526004016118c6929190612d88565b6040805180830381865afa1580156118e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119069190612e31565b95945050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061196e6002828486612ae5565b61197791612e4d565b60f01c905060038114610d12578282604051639a6d49cd60e01b8152600401610a4d929190612b37565b6000806119af858585611446565b90925090506114823383611ea6565b6119c66121c8565b60006119d58460000151611edc565b6020850151909150156119ef576119ef8460200151611f04565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316632637a450826040518060a001604052808b63ffffffff168152602001611a3f8c61148a565b81526020018a815260200189815260200160008960200151111515815250866040518463ffffffff1660e01b8152600401611a7b929190612d88565b60806040518083038185885af1158015611a99573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611abe9190612e7d565b979650505050505050565b6001600160a01b038416611af35760405163e602df0560e01b815260006004820152602401610a4d565b6001600160a01b038316611b1d57604051634a1406b160e11b815260006004820152602401610a4d565b6001600160a01b03808516600090815260066020908152604080832093871683529290522082905580156116a557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611b9091815260200190565b60405180910390a350505050565b60007f0000000000000000000000000000000000000000000000000000000000000000611bcb8184612efa565b61092f9190612f1c565b6000611be46020828486612ae5565b610ae591612f33565b6000611bfd602860208486612ae5565b611c0691612f51565b60c01c9392505050565b600061092f7f00000000000000000000000000000000000000000000000000000000000000006001600160401b038416612f1c565b6000611c518484611fe6565b509092915050565b6060611c688260288186612ae5565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929695505050505050565b606084848484604051602001611cbd9493929190612f7f565b6040516020818303038152906040529050949350505050565b6001600160a01b038316611d01578060076000828254611cf69190612fce565b90915550611d739050565b6001600160a01b03831660009081526005602052604090205481811015611d545760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a4d565b6001600160a01b03841660009081526005602052604090209082900390555b6001600160a01b038216611d8f57600780548290039055611dae565b6001600160a01b03821660009081526005602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611df391815260200190565b60405180910390a3505050565b600061092f7f000000000000000000000000000000000000000000000000000000000000000083612efa565b8051606090151580611e75578484604051602001611e6192919091825260c01b6001600160c01b031916602082015260280190565b604051602081830303815290604052611e9c565b84843385604051602001611e8c9493929190612fe1565b6040516020818303038152906040525b9150935093915050565b6001600160a01b038216611ed057604051634b637e8f60e11b815260006004820152602401610a4d565b61088582600083611cd6565b6000813414611f00576040516304fb820960e51b8152346004820152602401610a4d565b5090565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e4fe1d946040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f889190613024565b90506001600160a01b038116611fb1576040516329b99a9560e11b815260040160405180910390fd5b6108856001600160a01b038216337f00000000000000000000000000000000000000000000000000000000000000008561201c565b6001600160a01b0382166120105760405163ec442f0560e01b815260006004820152602401610a4d565b61088560008383611cd6565b604080516001600160a01b038581166024830152848116604483015260648083018590528351808403909101815260849092019092526020810180516001600160e01b03166323b872dd60e01b1790526116a591869190600090612082908416836120d0565b905080516000141580156120a75750808060200190518101906120a59190612d6b565b155b15610d1257604051635274afe760e01b81526001600160a01b0384166004820152602401610a4d565b6060610ae58383600084600080856001600160a01b031684866040516120f69190613041565b60006040518083038185875af1925050503d8060008114612133576040519150601f19603f3d011682016040523d82523d6000602084013e612138565b606091505b5091509150610ba7868383606082612158576121538261219f565b610ae5565b815115801561216f57506001600160a01b0384163b155b1561219857604051639996b31560e01b81526001600160a01b0385166004820152602401610a4d565b5080610ae5565b8051156121af5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b60405180606001604052806000801916815260200160006001600160401b0316815260200161220a604051806040016040528060008152602001600081525090565b905290565b6001600160a01b03811681146113d357600080fd5b6000806040838503121561223757600080fd5b82356122428161220f565b915060208301356122528161220f565b809150509250929050565b60005b83811015612278578181015183820152602001612260565b50506000910152565b6000815180845261229981602086016020860161225d565b601f01601f19169290920160200192915050565b602081526000610ae56020830184612281565b600080604083850312156122d357600080fd5b82356122de8161220f565b946020939093013593505050565b600060e082840312156122fe57600080fd5b50919050565b60006020828403121561231657600080fd5b81356001600160401b0381111561232c57600080fd5b611008848285016122ec565b8351815260208085015190820152600060a08201604060a0604085015281865180845260c08601915060c08160051b8701019350602080890160005b838110156123b35788870360bf190185528151805188528301518388018790526123a087890182612281565b9750509382019390820190600101612374565b50508751606088015250505060208501516080850152509050611008565b6000606082840312156122fe57600080fd5b60008083601f8401126123f557600080fd5b5081356001600160401b0381111561240c57600080fd5b60208301915083602082850101111561242457600080fd5b9250929050565b600080600080600080600060e0888a03121561244657600080fd5b61245089896123d1565b96506060880135955060808801356001600160401b038082111561247357600080fd5b61247f8b838c016123e3565b909750955060a08a013591506124948261220f565b90935060c089013590808211156124aa57600080fd5b506124b78a828b016123e3565b989b979a50959850939692959293505050565b6000806000606084860312156124df57600080fd5b83356124ea8161220f565b925060208401356124fa8161220f565b929592945050506040919091013590565b803563ffffffff8116811461251f57600080fd5b919050565b6000806040838503121561253757600080fd5b6122de8361250b565b80151581146113d357600080fd5b6000806040838503121561256157600080fd5b82356001600160401b0381111561257757600080fd5b612583858286016122ec565b925050602083013561225281612540565b81518152602080830151908201526040810161092f565b803561ffff8116811461251f57600080fd5b600080604083850312156125d057600080fd5b6125d98361250b565b91506125e7602084016125ab565b90509250929050565b60006020828403121561260257600080fd5b8135610ae58161220f565b60008083601f84011261261f57600080fd5b5081356001600160401b0381111561263657600080fd5b6020830191508360208260051b850101111561242457600080fd5b6000806020838503121561266457600080fd5b82356001600160401b0381111561267a57600080fd5b6126868582860161260d565b90969095509350505050565b6000602082840312156126a457600080fd5b610ae58261250b565b600080600080606085870312156126c357600080fd5b6126cc8561250b565b93506126da602086016125ab565b925060408501356001600160401b038111156126f557600080fd5b612701878288016123e3565b95989497509550505050565b6000806000838503608081121561272357600080fd5b84356001600160401b0381111561273957600080fd5b612745878288016122ec565b9450506040601f198201121561275a57600080fd5b50602084019150606084013561276f8161220f565b809150509250925092565b600060c082019050835182526001600160401b03602085015116602083015260408401516127b5604084018280518252602090810151910152565b5082516080830152602083015160a0830152610ae5565b6000606082840312156127de57600080fd5b610ae583836123d1565b600181811c908216806127fc57607f821691505b6020821081036122fe57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008235605e1983360301811261285e57600080fd5b9190910192915050565b6000808335601e1984360301811261287f57600080fd5b8301803591506001600160401b0382111561289957600080fd5b60200191503681900382131561242457600080fd5b6000602082840312156128c057600080fd5b610ae5826125ab565b601f821115610d12576000816000526020600020601f850160051c810160208610156128f25750805b601f850160051c820191505b81811015612911578281556001016128fe565b505050505050565b6001600160401b038311156129305761293061281c565b6129448361293e83546127e8565b836128c9565b6000601f84116001811461297857600085156129605750838201355b600019600387901b1c1916600186901b17835561130c565b600083815260209020601f19861690835b828110156129a95786850135825560209485019460019092019101612989565b50868210156129c65760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60208082528181018390526000906040808401600586901b8501820187855b88811015612ad757878303603f190184528135368b9003605e19018112612a4657600080fd5b8a01606063ffffffff612a588361250b565b16855261ffff612a698984016125ab565b168886015286820135601e19833603018112612a8457600080fd5b9091018781019190356001600160401b03811115612aa157600080fd5b803603831315612ab057600080fd5b8188870152612ac282870182856129d8565b96890196955050509186019150600101612a20565b509098975050505050505050565b60008085851115612af557600080fd5b83861115612b0257600080fd5b5050820193919092039150565b60008451612b2181846020890161225d565b8201838582376000930192835250909392505050565b6020815260006110086020830184866129d8565b6000823561013e1983360301811261285e57600080fd5b6001600160401b03811681146113d357600080fd5b63ffffffff612b858961250b565b1681526020880135602082015260006040890135612ba281612b62565b6001600160401b03811660408401525087606083015260e06080830152612bcd60e0830187896129d8565b6001600160a01b03861660a084015282810360c0840152612bef8185876129d8565b9a9950505050505050505050565b604080519081016001600160401b0381118282101715612c1f57612c1f61281c565b60405290565b600060208284031215612c3757600080fd5b81516001600160401b0380821115612c4e57600080fd5b818401915084601f830112612c6257600080fd5b815181811115612c7457612c7461281c565b604051601f8201601f19908116603f01168101908382118183101715612c9c57612c9c61281c565b81604052828152876020848701011115612cb557600080fd5b611abe83602083016020880161225d565b600060408284031215612cd857600080fd5b612ce0612bfd565b82358152602083013560208201528091505092915050565b600060208284031215612d0a57600080fd5b8135610ae581612b62565b60018060a01b038516815283602082015261ffff83166040820152608060608201526000610ba76080830184612281565b604081526000612d596040830185612281565b82810360208401526119068185612281565b600060208284031215612d7d57600080fd5b8151610ae581612540565b6040815263ffffffff8351166040820152602083015160608201526000604084015160a06080840152612dbe60e0840182612281565b90506060850151603f198483030160a0850152612ddb8282612281565b60809690960151151560c08501525050506001600160a01b039190911660209091015290565b600060408284031215612e1357600080fd5b612e1b612bfd565b9050815181526020820151602082015292915050565b600060408284031215612e4357600080fd5b610ae58383612e01565b6001600160f01b03198135818116916002851015612e755780818660020360031b1b83161692505b505092915050565b600060808284031215612e8f57600080fd5b604051606081018181106001600160401b0382111715612eb157612eb161281c565b604052825181526020830151612ec681612b62565b6020820152612ed88460408501612e01565b60408201529392505050565b634e487b7160e01b600052601160045260246000fd5b600082612f1757634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761092f5761092f612ee4565b8035602083101561092f57600019602084900360031b1b1692915050565b6001600160c01b03198135818116916008851015612e755760089490940360031b84901b1690921692915050565b6001600160401b0360c01b8560c01b16815263ffffffff60e01b8460e01b16600882015282600c82015260008251612fbe81602c85016020870161225d565b91909101602c0195945050505050565b8082018082111561092f5761092f612ee4565b8481526001600160401b0360c01b8460c01b1660208201528260288201526000825161301481604885016020870161225d565b9190910160480195945050505050565b60006020828403121561303657600080fd5b8151610ae58161220f565b6000825161285e81846020870161225d56fea264697066735822122024badf084d929da53b240832053a4c5099d739d92bdf627503dd599f46ed334b64736f6c634300081800330000000000000000000000001a44076050125825900e736c501f859c50fe728c0000000000000000000000005c097810269ff9b335affe1ef908da09ad6f71f20000000000000000000000005c097810269ff9b335affe1ef908da09ad6f71f20000000000000000000000000000000000000000000000000000000000000001

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80637d25a05e1161014f578063bb0b6a53116100c1578063d045a0dc1161007a578063d045a0dc146107b2578063d4243885146107c5578063dd62ed3e146107e5578063f2fde38b1461082b578063fc0c546a146104a6578063ff7bd03d1461084b57600080fd5b8063bb0b6a53146106fb578063bc70b35414610728578063bd815db014610748578063bfde57301461075b578063c7c7f5b314610771578063ca5eb5e11461079257600080fd5b80639a8a0592116101135780639a8a0592146106715780639f68b96414610687578063a9059cbb1461069b578063b731ea0a146106bb578063b92d0eff146104a6578063b98bd070146106db57600080fd5b80637d25a05e146105cf578063857749b01461043d5780638da5cb5b1461060a57806395d89b4114610628578063963efcaa1461063d57600080fd5b806323b872dd116101f35780635a0dfe4d116101ac5780635a0dfe4d146104d95780635e280f11146105105780636fc1b31e1461054457806370a0823114610564578063715018a61461059a5780637542bf28146105af57600080fd5b806323b872dd1461041d578063313ce5671461043d5780633400288b146104595780633b6f743b1461047957806352ae2879146104a65780635535d461146104b957600080fd5b806313137d651161024557806313137d6514610366578063134d4f2514610379578063156a0d0f146103a157806317442b70146103c857806318160ddd146103e95780631f5e13341461040857600080fd5b8063064b79b91461028257806306fdde03146102a4578063095ea7b3146102cf5780630d35b415146102ff578063111ecdad1461032e575b600080fd5b34801561028e57600080fd5b506102a261029d366004612224565b61086b565b005b3480156102b057600080fd5b506102b9610889565b6040516102c691906122ad565b60405180910390f35b3480156102db57600080fd5b506102ef6102ea3660046122c0565b61091b565b60405190151581526020016102c6565b34801561030b57600080fd5b5061031f61031a366004612304565b610935565b6040516102c693929190612338565b34801561033a57600080fd5b5060045461034e906001600160a01b031681565b6040516001600160a01b0390911681526020016102c6565b6102a261037436600461242b565b610a06565b34801561038557600080fd5b5061038e600281565b60405161ffff90911681526020016102c6565b3480156103ad57600080fd5b506040805162b9270b60e21b815260016020820152016102c6565b3480156103d457600080fd5b506040805160018082526020820152016102c6565b3480156103f557600080fd5b506007545b6040519081526020016102c6565b34801561041457600080fd5b5061038e600181565b34801561042957600080fd5b506102ef6104383660046124ca565b610ac6565b34801561044957600080fd5b50604051600681526020016102c6565b34801561046557600080fd5b506102a2610474366004612524565b610aec565b34801561048557600080fd5b5061049961049436600461254e565b610b4a565b6040516102c69190612594565b3480156104b257600080fd5b503061034e565b3480156104c557600080fd5b506102b96104d43660046125bd565b610bb1565b3480156104e557600080fd5b506102ef6104f4366004612524565b63ffffffff919091166000908152600160205260409020541490565b34801561051c57600080fd5b5061034e7f0000000000000000000000001a44076050125825900e736c501f859c50fe728c81565b34801561055057600080fd5b506102a261055f3660046125f0565b610c56565b34801561057057600080fd5b506103fa61057f3660046125f0565b6001600160a01b031660009081526005602052604090205490565b3480156105a657600080fd5b506102a2610cb3565b3480156105bb57600080fd5b506102a26105ca366004612651565b610cc7565b3480156105db57600080fd5b506105f26105ea366004612524565b600092915050565b6040516001600160401b0390911681526020016102c6565b34801561061657600080fd5b506000546001600160a01b031661034e565b34801561063457600080fd5b506102b9610d17565b34801561064957600080fd5b506103fa7f000000000000000000000000000000000000000000000000000000000000000181565b34801561067d57600080fd5b506103fa600a5481565b34801561069357600080fd5b5060006102ef565b3480156106a757600080fd5b506102ef6106b63660046122c0565b610d26565b3480156106c757600080fd5b5060025461034e906001600160a01b031681565b3480156106e757600080fd5b506102a26106f6366004612651565b610d34565b34801561070757600080fd5b506103fa610716366004612692565b60016020526000908152604090205481565b34801561073457600080fd5b506102b96107433660046126ad565b610e95565b6102a2610756366004612651565b611010565b34801561076757600080fd5b506103fa600b5481565b61078461077f36600461270d565b61119a565b6040516102c692919061277a565b34801561079e57600080fd5b506102a26107ad3660046125f0565b61128d565b6102a26107c036600461242b565b611313565b3480156107d157600080fd5b506102a26107e03660046125f0565b611342565b3480156107f157600080fd5b506103fa610800366004612224565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b34801561083757600080fd5b506102a26108463660046125f0565b611398565b34801561085757600080fd5b506102ef6108663660046127cc565b6113d6565b61087361140c565b61087c8261128d565b61088581611398565b5050565b606060088054610898906127e8565b80601f01602080910402602001604051908101604052809291908181526020018280546108c4906127e8565b80156109115780601f106108e657610100808354040283529160200191610911565b820191906000526020600020905b8154815290600101906020018083116108f457829003601f168201915b5050505050905090565b600033610929818585611439565b60019150505b92915050565b60408051808201909152600080825260208201526060610968604051806040016040528060008152602001600081525090565b60408051808201825260008082526001600160401b036020808401829052845183815290810190945291955091826109c3565b60408051808201909152600081526060602082015281526020019060019003908161099b5790505b5093506000806109e8604089013560608a01356109e360208c018c612692565b611446565b60408051808201909152918252602082015296989597505050505050565b7f0000000000000000000000001a44076050125825900e736c501f859c50fe728c6001600160a01b03163314610a56576040516391ac5e4f60e01b81523360048201526024015b60405180910390fd5b60208701803590610a7090610a6b908a612692565b61148a565b14610aae57610a826020880188612692565b60405163309afaf360e21b815263ffffffff909116600482015260208801356024820152604401610a4d565b610abd878787878787876114c6565b50505050505050565b600033610ad485828561162d565b610adf8585856116ab565b60019150505b9392505050565b610af461140c565b63ffffffff8216600081815260016020908152604091829020849055815192835282018390527f238399d427b947898edb290f5ff0f9109849b1c3ba196a42e35f00c50a54b98b91015b60405180910390a15050565b60408051808201909152600080825260208201526000610b7a604085013560608601356109e36020880188612692565b915050600080610b8a868461170a565b9092509050610ba7610b9f6020880188612692565b83838861182e565b9695505050505050565b600360209081526000928352604080842090915290825290208054610bd5906127e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610c01906127e8565b8015610c4e5780601f10610c2357610100808354040283529160200191610c4e565b820191906000526020600020905b815481529060010190602001808311610c3157829003601f168201915b505050505081565b610c5e61140c565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527ff0be4f1e87349231d80c36b33f9e8639658eeaf474014dee15a3e6a4d4414197906020015b60405180910390a150565b610cbb61140c565b610cc5600061190f565b565b610ccf61140c565b60005b81811015610d1257610d0a838383818110610cef57610cef612832565b9050602002016020810190610d049190612692565b30610aec565b600101610cd2565b505050565b606060098054610898906127e8565b6000336109298185856116ab565b610d3c61140c565b60005b81811015610e6357610d81838383818110610d5c57610d5c612832565b9050602002810190610d6e9190612848565b610d7c906040810190612868565b61195f565b828282818110610d9357610d93612832565b9050602002810190610da59190612848565b610db3906040810190612868565b60036000868686818110610dc957610dc9612832565b9050602002810190610ddb9190612848565b610de9906020810190612692565b63ffffffff1663ffffffff1681526020019081526020016000206000868686818110610e1757610e17612832565b9050602002810190610e299190612848565b610e3a9060408101906020016128ae565b61ffff168152602081019190915260400160002091610e5a919083612919565b50600101610d3f565b507fbe4864a8e820971c0247f5992e2da559595f7bf076a21cb5928d443d2a13b6748282604051610b3e929190612a01565b63ffffffff8416600090815260036020908152604080832061ffff87168452909152812080546060929190610ec9906127e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef5906127e8565b8015610f425780601f10610f1757610100808354040283529160200191610f42565b820191906000526020600020905b815481529060010190602001808311610f2557829003601f168201915b505050505090508051600003610f925783838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509294506110089350505050565b6000839003610fa2579050611008565b60028310610feb57610fb4848461195f565b80610fc28460028188612ae5565b604051602001610fd493929190612b0f565b604051602081830303815290604052915050611008565b8383604051639a6d49cd60e01b8152600401610a4d929190612b37565b949350505050565b60005b81811015611119573683838381811061102e5761102e612832565b90506020028101906110409190612b4b565b90506110736110526020830183612692565b602083013563ffffffff919091166000908152600160205260409020541490565b61107d5750611111565b3063d045a0dc60c08301358360a081013561109c610100830183612868565b6110ad610100890160e08a016125f0565b6110bb6101208a018a612868565b6040518963ffffffff1660e01b81526004016110dd9796959493929190612b77565b6000604051808303818588803b1580156110f657600080fd5b505af115801561110a573d6000803e3d6000fd5b5050505050505b600101611013565b50336001600160a01b0316638e9e70996040518163ffffffff1660e01b8152600401600060405180830381865afa158015611158573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526111809190810190612c25565b604051638351eea760e01b8152600401610a4d91906122ad565b6111a26121c8565b60408051808201909152600080825260208201526000806111d8604088013560608901356111d360208b018b612692565b6119a1565b915091506000806111e9898461170a565b90925090506112156111fe60208b018b612692565b838361120f368d90038d018d612cc6565b8b6119be565b60408051808201909152858152602080820186905282519298509096503391907ffff873bb909b73d08a8c1af4b21779e87103bb8ea8cf3b3a0067eb8526b8b80a90611263908d018d612692565b6040805163ffffffff9092168252602082018990520160405180910390a350505050935093915050565b61129561140c565b60405163ca5eb5e160e01b81526001600160a01b0382811660048301527f0000000000000000000000001a44076050125825900e736c501f859c50fe728c169063ca5eb5e190602401600060405180830381600087803b1580156112f857600080fd5b505af115801561130c573d6000803e3d6000fd5b5050505050565b3330146113335760405163029a949d60e31b815260040160405180910390fd5b610abd87878787878787610aae565b61134a61140c565b600280546001600160a01b0319166001600160a01b0383169081179091556040519081527fd48d879cef83a1c0bdda516f27b13ddb1b3f8bbac1c9e1511bb2a659c242776090602001610ca8565b6113a061140c565b6001600160a01b0381166113ca57604051631e4fbdf760e01b815260006004820152602401610a4d565b6113d38161190f565b50565b60006020820180359060019083906113ee9086612692565b63ffffffff1681526020810191909152604001600020541492915050565b6000546001600160a01b03163314610cc55760405163118cdaa760e01b8152336004820152602401610a4d565b610d128383836001611ac9565b60008061145285611b9e565b915081905083811015611482576040516371c4efed60e01b81526004810182905260248101859052604401610a4d565b935093915050565b63ffffffff81166000908152600160205260408120548061092f5760405163f6ff4fb760e01b815263ffffffff84166004820152602401610a4d565b60006114d86114d58787611bd5565b90565b90506000611504826114f26114ed8a8a611bed565b611c10565b6114ff60208d018d612692565b611c45565b905060288611156115cb57600061154161152460608c0160408d01612cf8565b61153160208d018d612692565b8461153c8c8c611c59565b611ca4565b604051633e5ac80960e11b81529091506001600160a01b037f0000000000000000000000001a44076050125825900e736c501f859c50fe728c1690637cb59012906115979086908d906000908790600401612d15565b600060405180830381600087803b1580156115b157600080fd5b505af11580156115c5573d6000803e3d6000fd5b50505050505b6001600160a01b038216887fefed6d3500546b29533b128a29e3a94d70788727f0507505ac12eaf2e578fd9c61160460208d018d612692565b6040805163ffffffff9092168252602082018690520160405180910390a3505050505050505050565b6001600160a01b0383811660009081526006602090815260408083209386168352929052205460001981146116a5578181101561169657604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a4d565b6116a584848484036000611ac9565b50505050565b6001600160a01b0383166116d557604051634b637e8f60e11b815260006004820152602401610a4d565b6001600160a01b0382166116ff5760405163ec442f0560e01b815260006004820152602401610a4d565b610d12838383611cd6565b6060806000611767856020013561172086611e00565b61172d60a0890189612868565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611e2c92505050565b909350905060008161177a57600161177d565b60025b905061179d61178f6020880188612692565b8261074360808a018a612868565b6004549093506001600160a01b031615611825576004805460405163043a78eb60e01b81526001600160a01b039091169163043a78eb916117e2918891889101612d46565b602060405180830381865afa1580156117ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118239190612d6b565b505b50509250929050565b60408051808201909152600080825260208201527f0000000000000000000000001a44076050125825900e736c501f859c50fe728c6001600160a01b031663ddc28c586040518060a001604052808863ffffffff1681526020016118918961148a565b8152602001878152602001868152602001851515815250306040518363ffffffff1660e01b81526004016118c6929190612d88565b6040805180830381865afa1580156118e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119069190612e31565b95945050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061196e6002828486612ae5565b61197791612e4d565b60f01c905060038114610d12578282604051639a6d49cd60e01b8152600401610a4d929190612b37565b6000806119af858585611446565b90925090506114823383611ea6565b6119c66121c8565b60006119d58460000151611edc565b6020850151909150156119ef576119ef8460200151611f04565b7f0000000000000000000000001a44076050125825900e736c501f859c50fe728c6001600160a01b0316632637a450826040518060a001604052808b63ffffffff168152602001611a3f8c61148a565b81526020018a815260200189815260200160008960200151111515815250866040518463ffffffff1660e01b8152600401611a7b929190612d88565b60806040518083038185885af1158015611a99573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611abe9190612e7d565b979650505050505050565b6001600160a01b038416611af35760405163e602df0560e01b815260006004820152602401610a4d565b6001600160a01b038316611b1d57604051634a1406b160e11b815260006004820152602401610a4d565b6001600160a01b03808516600090815260066020908152604080832093871683529290522082905580156116a557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611b9091815260200190565b60405180910390a350505050565b60007f0000000000000000000000000000000000000000000000000000000000000001611bcb8184612efa565b61092f9190612f1c565b6000611be46020828486612ae5565b610ae591612f33565b6000611bfd602860208486612ae5565b611c0691612f51565b60c01c9392505050565b600061092f7f00000000000000000000000000000000000000000000000000000000000000016001600160401b038416612f1c565b6000611c518484611fe6565b509092915050565b6060611c688260288186612ae5565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929695505050505050565b606084848484604051602001611cbd9493929190612f7f565b6040516020818303038152906040529050949350505050565b6001600160a01b038316611d01578060076000828254611cf69190612fce565b90915550611d739050565b6001600160a01b03831660009081526005602052604090205481811015611d545760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a4d565b6001600160a01b03841660009081526005602052604090209082900390555b6001600160a01b038216611d8f57600780548290039055611dae565b6001600160a01b03821660009081526005602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611df391815260200190565b60405180910390a3505050565b600061092f7f000000000000000000000000000000000000000000000000000000000000000183612efa565b8051606090151580611e75578484604051602001611e6192919091825260c01b6001600160c01b031916602082015260280190565b604051602081830303815290604052611e9c565b84843385604051602001611e8c9493929190612fe1565b6040516020818303038152906040525b9150935093915050565b6001600160a01b038216611ed057604051634b637e8f60e11b815260006004820152602401610a4d565b61088582600083611cd6565b6000813414611f00576040516304fb820960e51b8152346004820152602401610a4d565b5090565b60007f0000000000000000000000001a44076050125825900e736c501f859c50fe728c6001600160a01b031663e4fe1d946040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f889190613024565b90506001600160a01b038116611fb1576040516329b99a9560e11b815260040160405180910390fd5b6108856001600160a01b038216337f0000000000000000000000001a44076050125825900e736c501f859c50fe728c8561201c565b6001600160a01b0382166120105760405163ec442f0560e01b815260006004820152602401610a4d565b61088560008383611cd6565b604080516001600160a01b038581166024830152848116604483015260648083018590528351808403909101815260849092019092526020810180516001600160e01b03166323b872dd60e01b1790526116a591869190600090612082908416836120d0565b905080516000141580156120a75750808060200190518101906120a59190612d6b565b155b15610d1257604051635274afe760e01b81526001600160a01b0384166004820152602401610a4d565b6060610ae58383600084600080856001600160a01b031684866040516120f69190613041565b60006040518083038185875af1925050503d8060008114612133576040519150601f19603f3d011682016040523d82523d6000602084013e612138565b606091505b5091509150610ba7868383606082612158576121538261219f565b610ae5565b815115801561216f57506001600160a01b0384163b155b1561219857604051639996b31560e01b81526001600160a01b0385166004820152602401610a4d565b5080610ae5565b8051156121af5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b60405180606001604052806000801916815260200160006001600160401b0316815260200161220a604051806040016040528060008152602001600081525090565b905290565b6001600160a01b03811681146113d357600080fd5b6000806040838503121561223757600080fd5b82356122428161220f565b915060208301356122528161220f565b809150509250929050565b60005b83811015612278578181015183820152602001612260565b50506000910152565b6000815180845261229981602086016020860161225d565b601f01601f19169290920160200192915050565b602081526000610ae56020830184612281565b600080604083850312156122d357600080fd5b82356122de8161220f565b946020939093013593505050565b600060e082840312156122fe57600080fd5b50919050565b60006020828403121561231657600080fd5b81356001600160401b0381111561232c57600080fd5b611008848285016122ec565b8351815260208085015190820152600060a08201604060a0604085015281865180845260c08601915060c08160051b8701019350602080890160005b838110156123b35788870360bf190185528151805188528301518388018790526123a087890182612281565b9750509382019390820190600101612374565b50508751606088015250505060208501516080850152509050611008565b6000606082840312156122fe57600080fd5b60008083601f8401126123f557600080fd5b5081356001600160401b0381111561240c57600080fd5b60208301915083602082850101111561242457600080fd5b9250929050565b600080600080600080600060e0888a03121561244657600080fd5b61245089896123d1565b96506060880135955060808801356001600160401b038082111561247357600080fd5b61247f8b838c016123e3565b909750955060a08a013591506124948261220f565b90935060c089013590808211156124aa57600080fd5b506124b78a828b016123e3565b989b979a50959850939692959293505050565b6000806000606084860312156124df57600080fd5b83356124ea8161220f565b925060208401356124fa8161220f565b929592945050506040919091013590565b803563ffffffff8116811461251f57600080fd5b919050565b6000806040838503121561253757600080fd5b6122de8361250b565b80151581146113d357600080fd5b6000806040838503121561256157600080fd5b82356001600160401b0381111561257757600080fd5b612583858286016122ec565b925050602083013561225281612540565b81518152602080830151908201526040810161092f565b803561ffff8116811461251f57600080fd5b600080604083850312156125d057600080fd5b6125d98361250b565b91506125e7602084016125ab565b90509250929050565b60006020828403121561260257600080fd5b8135610ae58161220f565b60008083601f84011261261f57600080fd5b5081356001600160401b0381111561263657600080fd5b6020830191508360208260051b850101111561242457600080fd5b6000806020838503121561266457600080fd5b82356001600160401b0381111561267a57600080fd5b6126868582860161260d565b90969095509350505050565b6000602082840312156126a457600080fd5b610ae58261250b565b600080600080606085870312156126c357600080fd5b6126cc8561250b565b93506126da602086016125ab565b925060408501356001600160401b038111156126f557600080fd5b612701878288016123e3565b95989497509550505050565b6000806000838503608081121561272357600080fd5b84356001600160401b0381111561273957600080fd5b612745878288016122ec565b9450506040601f198201121561275a57600080fd5b50602084019150606084013561276f8161220f565b809150509250925092565b600060c082019050835182526001600160401b03602085015116602083015260408401516127b5604084018280518252602090810151910152565b5082516080830152602083015160a0830152610ae5565b6000606082840312156127de57600080fd5b610ae583836123d1565b600181811c908216806127fc57607f821691505b6020821081036122fe57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008235605e1983360301811261285e57600080fd5b9190910192915050565b6000808335601e1984360301811261287f57600080fd5b8301803591506001600160401b0382111561289957600080fd5b60200191503681900382131561242457600080fd5b6000602082840312156128c057600080fd5b610ae5826125ab565b601f821115610d12576000816000526020600020601f850160051c810160208610156128f25750805b601f850160051c820191505b81811015612911578281556001016128fe565b505050505050565b6001600160401b038311156129305761293061281c565b6129448361293e83546127e8565b836128c9565b6000601f84116001811461297857600085156129605750838201355b600019600387901b1c1916600186901b17835561130c565b600083815260209020601f19861690835b828110156129a95786850135825560209485019460019092019101612989565b50868210156129c65760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60208082528181018390526000906040808401600586901b8501820187855b88811015612ad757878303603f190184528135368b9003605e19018112612a4657600080fd5b8a01606063ffffffff612a588361250b565b16855261ffff612a698984016125ab565b168886015286820135601e19833603018112612a8457600080fd5b9091018781019190356001600160401b03811115612aa157600080fd5b803603831315612ab057600080fd5b8188870152612ac282870182856129d8565b96890196955050509186019150600101612a20565b509098975050505050505050565b60008085851115612af557600080fd5b83861115612b0257600080fd5b5050820193919092039150565b60008451612b2181846020890161225d565b8201838582376000930192835250909392505050565b6020815260006110086020830184866129d8565b6000823561013e1983360301811261285e57600080fd5b6001600160401b03811681146113d357600080fd5b63ffffffff612b858961250b565b1681526020880135602082015260006040890135612ba281612b62565b6001600160401b03811660408401525087606083015260e06080830152612bcd60e0830187896129d8565b6001600160a01b03861660a084015282810360c0840152612bef8185876129d8565b9a9950505050505050505050565b604080519081016001600160401b0381118282101715612c1f57612c1f61281c565b60405290565b600060208284031215612c3757600080fd5b81516001600160401b0380821115612c4e57600080fd5b818401915084601f830112612c6257600080fd5b815181811115612c7457612c7461281c565b604051601f8201601f19908116603f01168101908382118183101715612c9c57612c9c61281c565b81604052828152876020848701011115612cb557600080fd5b611abe83602083016020880161225d565b600060408284031215612cd857600080fd5b612ce0612bfd565b82358152602083013560208201528091505092915050565b600060208284031215612d0a57600080fd5b8135610ae581612b62565b60018060a01b038516815283602082015261ffff83166040820152608060608201526000610ba76080830184612281565b604081526000612d596040830185612281565b82810360208401526119068185612281565b600060208284031215612d7d57600080fd5b8151610ae581612540565b6040815263ffffffff8351166040820152602083015160608201526000604084015160a06080840152612dbe60e0840182612281565b90506060850151603f198483030160a0850152612ddb8282612281565b60809690960151151560c08501525050506001600160a01b039190911660209091015290565b600060408284031215612e1357600080fd5b612e1b612bfd565b9050815181526020820151602082015292915050565b600060408284031215612e4357600080fd5b610ae58383612e01565b6001600160f01b03198135818116916002851015612e755780818660020360031b1b83161692505b505092915050565b600060808284031215612e8f57600080fd5b604051606081018181106001600160401b0382111715612eb157612eb161281c565b604052825181526020830151612ec681612b62565b6020820152612ed88460408501612e01565b60408201529392505050565b634e487b7160e01b600052601160045260246000fd5b600082612f1757634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761092f5761092f612ee4565b8035602083101561092f57600019602084900360031b1b1692915050565b6001600160c01b03198135818116916008851015612e755760089490940360031b84901b1690921692915050565b6001600160401b0360c01b8560c01b16815263ffffffff60e01b8460e01b16600882015282600c82015260008251612fbe81602c85016020870161225d565b91909101602c0195945050505050565b8082018082111561092f5761092f612ee4565b8481526001600160401b0360c01b8460c01b1660208201528260288201526000825161301481604885016020870161225d565b9190910160480195945050505050565b60006020828403121561303657600080fd5b8151610ae58161220f565b6000825161285e81846020870161225d56fea264697066735822122024badf084d929da53b240832053a4c5099d739d92bdf627503dd599f46ed334b64736f6c63430008180033

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

0000000000000000000000001a44076050125825900e736c501f859c50fe728c0000000000000000000000005c097810269ff9b335affe1ef908da09ad6f71f20000000000000000000000005c097810269ff9b335affe1ef908da09ad6f71f20000000000000000000000000000000000000000000000000000000000000001

-----Decoded View---------------
Arg [0] : _lzEndpoint (address): 0x1a44076050125825900e736c501f859c50fE728c
Arg [1] : _delegate (address): 0x5C097810269FF9b335aFfE1EF908da09ad6f71F2
Arg [2] : _supplyOwner (address): 0x5C097810269FF9b335aFfE1EF908da09ad6f71F2
Arg [3] : _mainChain (uint256): 1

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000001a44076050125825900e736c501f859c50fe728c
Arg [1] : 0000000000000000000000005c097810269ff9b335affe1ef908da09ad6f71f2
Arg [2] : 0000000000000000000000005c097810269ff9b335affe1ef908da09ad6f71f2
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001


Deployed Bytecode Sourcemap

190:1057:38:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;770:200;;;;;;;;;;-1:-1:-1;770:200:38;;;;;:::i;:::-;;:::i;:::-;;2074:89:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4293:186;;;;;;;;;;-1:-1:-1;4293:186:30;;;;;:::i;:::-;;:::i;:::-;;;1784:14:39;;1777:22;1759:41;;1747:2;1732:18;4293:186:30;1619:187:39;4273:1258:10;;;;;;;;;;-1:-1:-1;4273:1258:10;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;2132:27::-;;;;;;;;;;-1:-1:-1;2132:27:10;;;;-1:-1:-1;;;;;2132:27:10;;;;;;-1:-1:-1;;;;;3998:32:39;;;3980:51;;3968:2;3953:18;2132:27:10;3834:203:39;3974:708:2;;;;;;:::i;:::-;;:::i;2006:40:10:-;;;;;;;;;;;;2045:1;2006:40;;;;;5780:6:39;5768:19;;;5750:38;;5738:2;5723:18;2006:40:10;5606:188:39;1364:140:9;;;;;;;;;;-1:-1:-1;1364:140:9;;;-1:-1:-1;;;5969:52:39;;1495:1:9;6052:2:39;6037:18;;6030:59;5942:18;1364:140:9;5799:296:39;1287:235:0;;;;;;;;;;-1:-1:-1;1287:235:0;;;843:1:3;6307:34:39;;;6372:2;6357:18;;6350:43;6243:18;1287:235:0;6100:299:39;3144:97:30;;;;;;;;;;-1:-1:-1;3222:12:30;;3144:97;;;6550:25:39;;;6538:2;6523:18;3144:97:30;6404:177:39;1969:31:10;;;;;;;;;;;;1999:1;1969:31;;5039:244:30;;;;;;;;;;-1:-1:-1;5039:244:30;;;;;:::i;:::-;;:::i;682:82:38:-;;;;;;;;;;-1:-1:-1;682:82:38;;756:1;7189:36:39;;7177:2;7162:18;682:82:38;7047:184:39;1724:141:1;;;;;;;;;;-1:-1:-1;1724:141:1;;;;;:::i;:::-;;:::i;5982:774:10:-;;;;;;;;;;-1:-1:-1;5982:774:10;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;875:93:14:-;;;;;;;;;;-1:-1:-1;956:4:14;875:93;;538::8;;;;;;;;;;-1:-1:-1;538:93:8;;;;;:::i;:::-;;:::i;14078:132:10:-;;;;;;;;;;-1:-1:-1;14078:132:10;;;;;:::i;:::-;14183:11;;;;;14160:4;14183:11;;;:5;:11;;;;;;:20;;14078:132;446:46:1;;;;;;;;;;;;;;;3804:163:10;;;;;;;;;;-1:-1:-1;3804:163:10;;;;;:::i;:::-;;:::i;3299:116:30:-;;;;;;;;;;-1:-1:-1;3299:116:30;;;;;:::i;:::-;-1:-1:-1;;;;;3390:18:30;3364:7;3390:18;;;:9;:18;;;;;;;3299:116;2293:101:28;;;;;;;;;;;;;:::i;1034:211:38:-;;;;;;;;;;-1:-1:-1;1034:211:38;;;;;:::i;:::-;;:::i;3113:128:2:-;;;;;;;;;;-1:-1:-1;3113:128:2;;;;;:::i;:::-;3202:12;3113:128;;;;;;;;-1:-1:-1;;;;;10650:31:39;;;10632:50;;10620:2;10605:18;3113:128:2;10488:200:39;1638:85:28;;;;;;;;;;-1:-1:-1;1684:7:28;1710:6;-1:-1:-1;;;;;1710:6:28;1638:85;;2276:93:30;;;;;;;;;;;;;:::i;1663:46:10:-;;;;;;;;;;;;;;;235:22:38;;;;;;;;;;;;;;;;2117:94:9;;;;;;;;;;-1:-1:-1;2176:4:9;2117:94;;3610:178:30;;;;;;;;;;-1:-1:-1;3610:178:30;;;;;:::i;:::-;;:::i;559:23:14:-;;;;;;;;;;-1:-1:-1;559:23:14;;;;-1:-1:-1;;;;;559:23:14;;;1391:523:8;;;;;;;;;;-1:-1:-1;1391:523:8;;;;;:::i;:::-;;:::i;569:48:1:-;;;;;;;;;;-1:-1:-1;569:48:1;;;;;:::i;:::-;;;;;;;;;;;;;;2673:981:8;;;;;;;;;;-1:-1:-1;2673:981:8;;;;;:::i;:::-;;:::i;1698:1333:14:-;;;;;;:::i;:::-;;:::i;263:24:38:-;;;;;;;;;;;;;;;;7444:1281:10;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;2697:105:1:-;;;;;;;;;;-1:-1:-1;2697:105:1;;;;;:::i;:::-;;:::i;3679:409:14:-;;;;;;:::i;:::-;;:::i;1100:139::-;;;;;;;;;;-1:-1:-1;1100:139:14;;;;;:::i;:::-;;:::i;3846:140:30:-;;;;;;;;;;-1:-1:-1;3846:140:30;;;;;:::i;:::-;-1:-1:-1;;;;;3952:18:30;;;3926:7;3952:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3846:140;2543:215:28;;;;;;;;;;-1:-1:-1;2543:215:28;;;;;:::i;:::-;;:::i;2377:149:2:-;;;;;;;;;;-1:-1:-1;2377:149:2;;;;;:::i;:::-;;:::i;770:200:38:-;1531:13:28;:11;:13::i;:::-;900:25:38::1;912:12;900:11;:25::i;:::-;935:28;953:9;935:17;:28::i;:::-;770:200:::0;;:::o;2074:89:30:-;2119:13;2151:5;2144:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2074:89;:::o;4293:186::-;4366:4;735:10:36;4420:31:30;735:10:36;4436:7:30;4445:5;4420:8;:31::i;:::-;4468:4;4461:11;;;4293:186;;;;;:::o;4273:1258:10:-;-1:-1:-1;;;;;;;;;;;;;;;;;4425:35:10;4462:28;-1:-1:-1;;;;;;;;;;;;;;;;;;;4462:28:10;4680:34;;;;;;;;-1:-1:-1;4680:34:10;;;-1:-1:-1;;;;;4680:34:10;;;;;;;4831:21;;;;;;;;;;;4680:34;;-1:-1:-1;;;4831:21:10;;;-1:-1:-1;;;;;;;;;;;;;;;;;4831:21:10;;;;;;;;;;;;;;;-1:-1:-1;4815:37:10;-1:-1:-1;5289:20:10;;5339:120;5363:19;;;;5396:22;;;;5432:17;;;;5363:10;5432:17;:::i;:::-;5339:10;:120::i;:::-;5482:42;;;;;;;;;;;;;;;;4273:1258;;;;-1:-1:-1;;;;;;4273:1258:10:o;3974:708:2:-;4287:8;-1:-1:-1;;;;;4279:31:2;4300:10;4279:31;4275:68;;4319:24;;-1:-1:-1;;;4319:24:2;;4332:10;4319:24;;;3980:51:39;3953:18;;4319:24:2;;;;;;;;4275:68;4479:14;;;;;;4443:32;;4460:14;;4479:7;4460:14;:::i;:::-;4443:16;:32::i;:::-;:50;4439:103;;4511:14;;;;:7;:14;:::i;:::-;4502:40;;-1:-1:-1;;;4502:40:2;;14815:10:39;14803:23;;;4502:40:2;;;14785:42:39;4527:14:2;;;;14843:18:39;;;14836:34;14758:18;;4502:40:2;14613:263:39;4439:103:2;4616:59;4627:7;4636:5;4643:8;;4653:9;4664:10;;4616;:59::i;:::-;3974:708;;;;;;;:::o;5039:244:30:-;5126:4;735:10:36;5182:37:30;5198:4;735:10:36;5213:5:30;5182:15;:37::i;:::-;5229:26;5239:4;5245:2;5249:5;5229:9;:26::i;:::-;5272:4;5265:11;;;5039:244;;;;;;:::o;1724:141:1:-;1531:13:28;:11;:13::i;:::-;1804:11:1::1;::::0;::::1;;::::0;;;:5:::1;:11;::::0;;;;;;;;:19;;;1838:20;;14785:42:39;;;14843:18;;14836:34;;;1838:20:1::1;::::0;14758:18:39;1838:20:1::1;;;;;;;;1724:141:::0;;:::o;5982:774:10:-;-1:-1:-1;;;;;;;;;;;;;;;;;6316:24:10;6344:74;6355:19;;;;6376:22;;;;6400:17;;;;6355:10;6400:17;:::i;6344:74::-;6313:105;;;6507:20;6529;6553:49;6573:10;6585:16;6553:19;:49::i;:::-;6506:96;;-1:-1:-1;6506:96:10;-1:-1:-1;6691:58:10;6698:17;;;;:10;:17;:::i;:::-;6717:7;6726;6735:13;6691:6;:58::i;:::-;6684:65;5982:774;-1:-1:-1;;;;;;5982:774:10:o;538:93:8:-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3804:163:10:-;1531:13:28;:11;:13::i;:::-;3887:12:10::1;:28:::0;;-1:-1:-1;;;;;;3887:28:10::1;-1:-1:-1::0;;;;;3887:28:10;::::1;::::0;;::::1;::::0;;;3930:30:::1;::::0;3980:51:39;;;3930:30:10::1;::::0;3968:2:39;3953:18;3930:30:10::1;;;;;;;;3804:163:::0;:::o;2293:101:28:-;1531:13;:11;:13::i;:::-;2357:30:::1;2384:1;2357:18;:30::i;:::-;2293:101::o:0;1034:211:38:-;1531:13:28;:11;:13::i;:::-;1117:9:38::1;1112:127;1132:16:::0;;::::1;1112:127;;;1169:59;1177:5;;1183:1;1177:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;1219:4;1169:7;:59::i;:::-;1150:3;;1112:127;;;;1034:211:::0;;:::o;2276:93:30:-;2323:13;2355:7;2348:14;;;;;:::i;3610:178::-;3679:4;735:10:36;3733:27:30;735:10:36;3750:2:30;3754:5;3733:9;:27::i;1391:523:8:-;1531:13:28;:11;:13::i;:::-;1508:9:8::1;1503:354;1523:27:::0;;::::1;1503:354;;;1685:48;1705:16;;1722:1;1705:19;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:27;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;1685:19;:48::i;:::-;1819:16;;1836:1;1819:19;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:27;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;1747:15;:40;1763:16;;1780:1;1763:19;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:23;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;1747:40;;;;;;;;;;;;;;;:69;1788:16;;1805:1;1788:19;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:27;::::0;;;;;::::1;;;:::i;:::-;1747:69;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;1747:69:8;;:99:::1;::::0;;:69;:99:::1;:::i;:::-;-1:-1:-1::0;1552:3:8::1;;1503:354;;;;1872:35;1890:16;;1872:35;;;;;;;:::i;2673:981::-:0;2864:21;;;2840;2864;;;:15;:21;;;;;;;;:31;;;;;;;;;;2840:55;;2816:12;;2840:21;2864:31;2840:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3024:8;:15;3043:1;3024:20;3020:46;;3053:13;;3046:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3046:20:8;;-1:-1:-1;3046:20:8;;-1:-1:-1;;;;3046:20:8;3020:46;3151:1;3127:25;;;3123:46;;3161:8;-1:-1:-1;3154:15:8;;3123:46;3316:1;3292:25;;3288:267;;3333:34;3353:13;;3333:19;:34::i;:::-;3516:8;3526:17;:13;3540:1;3526:13;;:17;:::i;:::-;3503:41;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3496:48;;;;;3288:267;3633:13;;3618:29;;-1:-1:-1;;;3618:29:8;;;;;;;;;:::i;2673:981::-;;;;;;;:::o;1698:1333:14:-;1799:9;1794:1037;1814:19;;;1794:1037;;;1854:29;1886:8;;1895:1;1886:11;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;1854:43;-1:-1:-1;1980:50:14;1987:20;;;;1854:43;1987:20;:::i;:::-;2009;;;;14183:11:10;;;;;14160:4;14183:11;;;:5;:11;;;;;;:20;;14078:132;1980:50:14;1975:65;;2032:8;;;1975:65;2602:4;:22;2633:12;;;;:6;2696:11;;;;2725:14;;;;2633:6;2725:14;:::i;:::-;2757:15;;;;;;;;:::i;:::-;2790:16;;;;:6;:16;:::i;:::-;2602:218;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1840:991;1794:1037;1835:3;;1794:1037;;;;2988:10;-1:-1:-1;;;;;2978:43:14;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2978:45:14;;;;;;;;;;;;:::i;:::-;2961:63;;-1:-1:-1;;;2961:63:14;;;;;;;;:::i;7444:1281:10:-;7605:34;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;7986:20:10;;8036:116;8056:19;;;;8089:22;;;;8125:17;;;;8056:10;8125:17;:::i;:::-;8036:6;:116::i;:::-;7985:167;;;;8241:20;8263;8287:49;8307:10;8319:16;8287:19;:49::i;:::-;8240:96;;-1:-1:-1;8240:96:10;-1:-1:-1;8459:66:10;8467:17;;;;:10;:17;:::i;:::-;8486:7;8495;8459:66;;;;;;;8504:4;8459:66;:::i;:::-;8510:14;8459:7;:66::i;:::-;8591:42;;;;;;;;;;;;;;;;;;;8657:15;;8446:79;;-1:-1:-1;8591:42:10;;-1:-1:-1;8693:10:10;;8657:15;8649:69;;8674:17;;;;:10;:17;:::i;:::-;8649:69;;;14815:10:39;14803:23;;;14785:42;;14858:2;14843:18;;14836:34;;;14758:18;8649:69:10;;;;;;;7671:1054;;;;7444:1281;;;;;;:::o;2697:105:1:-;1531:13:28;:11;:13::i;:::-;2764:31:1::1;::::0;-1:-1:-1;;;2764:31:1;;-1:-1:-1;;;;;3998:32:39;;;2764:31:1::1;::::0;::::1;3980:51:39::0;2764:8:1::1;:20;::::0;::::1;::::0;3953:18:39;;2764:31:1::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;2697:105:::0;:::o;3679:409:14:-;3958:10;3980:4;3958:27;3954:50;;3994:10;;-1:-1:-1;;;3994:10:14;;;;;;;;;;;3954:50;4014:67;4033:7;4042:5;4049:8;;4059:9;4070:10;;4014:18;:67::i;1100:139::-;1531:13:28;:11;:13::i;:::-;1175:8:14::1;:20:::0;;-1:-1:-1;;;;;;1175:20:14::1;-1:-1:-1::0;;;;;1175:20:14;::::1;::::0;;::::1;::::0;;;1210:22:::1;::::0;3980:51:39;;;1210:22:14::1;::::0;3968:2:39;3953:18;1210:22:14::1;3834:203:39::0;2543:215:28;1531:13;:11;:13::i;:::-;-1:-1:-1;;;;;2627:22:28;::::1;2623:91;;2672:31;::::0;-1:-1:-1;;;2672:31:28;;2700:1:::1;2672:31;::::0;::::1;3980:51:39::0;3953:18;;2672:31:28::1;3834:203:39::0;2623:91:28::1;2723:28;2742:8;2723:18;:28::i;:::-;2543:215:::0;:::o;2377:149:2:-;2459:4;2506:13;;;;;;2482:5;;2459:4;;2488:13;;2506:6;2488:13;:::i;:::-;2482:20;;;;;;;;;;;;;-1:-1:-1;2482:20:2;;:37;;2377:149;-1:-1:-1;;2377:149:2:o;1796:162:28:-;1684:7;1710:6;-1:-1:-1;;;;;1710:6:28;735:10:36;1855:23:28;1851:101;;1901:40;;-1:-1:-1;;;1901:40:28;;735:10:36;1901:40:28;;;3980:51:39;3953:18;;1901:40:28;3834:203:39;8989:128:30;9073:37;9082:5;9089:7;9098:5;9105:4;9073:8;:37::i;16095:668:10:-;16237:20;16259:24;16433:22;16445:9;16433:11;:22::i;:::-;16418:37;;16581:12;16562:31;;16663:12;16644:16;:31;16640:117;;;16698:48;;-1:-1:-1;;;16698:48:10;;;;;24641:25:39;;;24682:18;;;24675:34;;;24614:18;;16698:48:10;24467:248:39;16640:117:10;16095:668;;;;;;:::o;2163:196:1:-;2267:11;;;2233:7;2267:11;;;:5;:11;;;;;;;2288:43;;2319:12;;-1:-1:-1;;;2319:12:1;;24894:10:39;24882:23;;2319:12:1;;;24864:42:39;24837:18;;2319:12:1;24720:192:39;10871:1806:10;11348:17;11368:36;:17;:8;;:15;:17::i;:::-;2891:2:13;2780:123;11368:36:10;11348:56;;11537:24;11564:62;11572:9;11583:26;11589:19;:8;;:17;:19::i;:::-;11583:5;:26::i;:::-;11611:14;;;;:7;:14;:::i;:::-;11564:7;:62::i;:::-;11537:89;-1:-1:-1;243:2:13;-1:-1:-1;;11637:955:10;;;11741:23;11767:175;11810:13;;;;;;;;:::i;:::-;11841:14;;;;:7;:14;:::i;:::-;11873:16;11907:21;:8;;:19;:21::i;:::-;11767:25;:175::i;:::-;12489:92;;-1:-1:-1;;;12489:92:10;;11741:201;;-1:-1:-1;;;;;;12489:8:10;:20;;;;:92;;12510:9;;12521:5;;12528:1;;11741:201;;12489:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11664:928;11637:955;-1:-1:-1;;;;;12607:63:10;;12619:5;12607:63;12626:14;;;;:7;:14;:::i;:::-;12607:63;;;14815:10:39;14803:23;;;14785:42;;14858:2;14843:18;;14836:34;;;14758:18;12607:63:10;;;;;;;11174:1503;;10871:1806;;;;;;;:::o;10663:477:30:-;-1:-1:-1;;;;;3952:18:30;;;10762:24;3952:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10828:37:30;;10824:310;;10904:5;10885:16;:24;10881:130;;;10936:60;;-1:-1:-1;;;10936:60:30;;-1:-1:-1;;;;;25871:32:39;;10936:60:30;;;25853:51:39;25920:18;;;25913:34;;;25963:18;;;25956:34;;;25826:18;;10936:60:30;25651:345:39;10881:130:30;11052:57;11061:5;11068:7;11096:5;11077:16;:24;11103:5;11052:8;:57::i;:::-;10752:388;10663:477;;;:::o;5656:300::-;-1:-1:-1;;;;;5739:18:30;;5735:86;;5780:30;;-1:-1:-1;;;5780:30:30;;5807:1;5780:30;;;3980:51:39;3953:18;;5780:30:30;3834:203:39;5735:86:30;-1:-1:-1;;;;;5834:16:30;;5830:86;;5873:32;;-1:-1:-1;;;5873:32:30;;5902:1;5873:32;;;3980:51:39;3953:18;;5873:32:30;3834:203:39;5830:86:30;5925:24;5933:4;5939:2;5943:5;5925:7;:24::i;9019:1334:10:-;9151:20;9173;9205:15;9376:324;9408:10;:13;;;9435:16;9441:9;9435:5;:16::i;:::-;9669:21;;;;:10;:21;:::i;:::-;9376:324;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9376:18:10;;-1:-1:-1;;;9376:324:10:i;:::-;9352:348;;-1:-1:-1;9352:348:10;-1:-1:-1;9780:14:10;9352:348;9797:33;;1999:1;9797:33;;;2045:1;9797:33;9780:50;-1:-1:-1;9952:67:10;9967:17;;;;:10;:17;:::i;:::-;9986:7;9995:23;;;;:10;:23;:::i;9952:67::-;10261:12;;9942:77;;-1:-1:-1;;;;;;10261:12:10;:26;10257:89;;10307:12;;;10289:57;;-1:-1:-1;;;10289:57:10;;-1:-1:-1;;;;;10307:12:10;;;;10289:39;;:57;;10329:7;;10338;;10289:57;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10257:89;9195:1158;;9019:1334;;;;;:::o;2038:391:3:-;-1:-1:-1;;;;;;;;;;;;;;;;;2259:8:3;-1:-1:-1;;;;;2259:14:3;;2291:86;;;;;;;;2307:7;2291:86;;;;;;2316:25;2333:7;2316:16;:25::i;:::-;2291:86;;;;2343:8;2291:86;;;;2353:8;2291:86;;;;2363:13;2291:86;;;;;2403:4;2259:163;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2240:182;2038:391;-1:-1:-1;;;;;2038:391:3:o;2912:187:28:-;2985:16;3004:6;;-1:-1:-1;;;;;3020:17:28;;;-1:-1:-1;;;;;;3020:17:28;;;;;;3052:40;;3004:6;;;;;;;3052:40;;2985:16;3052:40;2975:124;2912:187;:::o;3794:218:8:-;3880:18;3915:13;3926:1;3880:18;3915:8;;:13;:::i;:::-;3908:21;;;:::i;:::-;3901:29;;;-1:-1:-1;463:1:8;3944:28;;3940:65;;3996:8;;3981:24;;-1:-1:-1;;;3981:24:8;;;;;;;;;:::i;2636:549:9:-;2774:20;2796:24;2867:44;2878:9;2889:12;2903:7;2867:10;:44::i;:::-;2832:79;;-1:-1:-1;2832:79:9;-1:-1:-1;3147:31:9;3153:10;2832:79;3147:5;:31::i;3188:766:3:-;3389:31;;:::i;:::-;3554:20;3577:26;3588:4;:14;;;3577:10;:26::i;:::-;3617:15;;;;3554:49;;-1:-1:-1;3617:19:3;3613:53;;3638:28;3650:4;:15;;;3638:11;:28::i;:::-;3755:8;-1:-1:-1;;;;;3755:13:3;;3777:12;3809:92;;;;;;;;3825:7;3809:92;;;;;;3834:25;3851:7;3834:16;:25::i;:::-;3809:92;;;;3861:8;3809:92;;;;3871:8;3809:92;;;;3899:1;3881:4;:15;;;:19;3809:92;;;;;3919:14;3755:192;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3677:270;3188:766;-1:-1:-1;;;;;;;3188:766:3:o;9949:432:30:-;-1:-1:-1;;;;;10061:19:30;;10057:89;;10103:32;;-1:-1:-1;;;10103:32:30;;10132:1;10103:32;;;3980:51:39;3953:18;;10103:32:30;3834:203:39;10057:89:30;-1:-1:-1;;;;;10159:21:30;;10155:90;;10203:31;;-1:-1:-1;;;10203:31:30;;10231:1;10203:31;;;3980:51:39;3953:18;;10203:31:30;3834:203:39;10155:90:30;-1:-1:-1;;;;;10254:18:30;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;10299:76;;;;10349:7;-1:-1:-1;;;;;10333:31:30;10342:5;-1:-1:-1;;;;;10333:31:30;;10358:5;10333:31;;;;6550:25:39;;6538:2;6523:18;;6404:177;10333:31:30;;;;;;;;9949:432;;;;:::o;14604:172:10:-;14675:16;14748:21;14711:33;14748:21;14711:9;:33;:::i;:::-;14710:59;;;;:::i;1573:123:13:-;1633:7;1667:21;188:2;1633:7;1667:4;;:21;:::i;:::-;1659:30;;;:::i;1874:152::-;1936:6;1975:42;243:2;188;1975:4;;:42;:::i;:::-;1968:50;;;:::i;:::-;1961:58;;;1874:152;-1:-1:-1;;;1874:152:13:o;15000:139:10:-;15064:16;15099:33;15111:21;-1:-1:-1;;;;;15099:33:10;;;:::i;3520:362:9:-;3654:24;3732:21;3738:3;3743:9;3732:5;:21::i;:::-;-1:-1:-1;3866:9:9;;3520:362;-1:-1:-1;;3520:362:9:o;2186:130:13:-;2250:12;2281:28;:4;243:2;2281:4;;:28;:::i;:::-;2274:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2274:35:13;;2186:130;-1:-1:-1;;;;;;2186:130:13:o;640:284:12:-;824:17;877:6;885:7;894:9;905:11;860:57;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;853:64;;640:284;;;;;;:::o;6271:1107:30:-;-1:-1:-1;;;;;6360:18:30;;6356:540;;6512:5;6496:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;6356:540:30;;-1:-1:-1;6356:540:30;;-1:-1:-1;;;;;6570:15:30;;6548:19;6570:15;;;:9;:15;;;;;;6603:19;;;6599:115;;;6649:50;;-1:-1:-1;;;6649:50:30;;-1:-1:-1;;;;;25871:32:39;;6649:50:30;;;25853:51:39;25920:18;;;25913:34;;;25963:18;;;25956:34;;;25826:18;;6649:50:30;25651:345:39;6599:115:30;-1:-1:-1;;;;;6834:15:30;;;;;;:9;:15;;;;;6852:19;;;;6834:37;;6356:540;-1:-1:-1;;;;;6910:16:30;;6906:425;;7073:12;:21;;;;;;;6906:425;;;-1:-1:-1;;;;;7284:13:30;;;;;;:9;:13;;;;;:22;;;;;;6906:425;7361:2;-1:-1:-1;;;;;7346:25:30;7355:4;-1:-1:-1;;;;;7346:25:30;;7365:5;7346:25;;;;6550::39;;6538:2;6523:18;;6404:177;7346:25:30;;;;;;;;6271:1107;;;:::o;15363:147:10:-;15428:15;15469:33;15481:21;15469:9;:33;:::i;598:506:13:-;791:18;;732:17;;791:22;;;934:163;;1074:7;1083:13;1057:40;;;;;;;;31071:19:39;;;31146:3;31124:16;-1:-1:-1;;;;;;31120:51:39;31115:2;31106:12;;31099:73;31197:2;31188:12;;30916:290;1057:40:13;;;;;;;;;;;;;934:163;;;976:7;985:13;1017:10;1030:11;959:83;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;934:163;927:170;;598:506;;;;;;:::o;8247:206:30:-;-1:-1:-1;;;;;8317:21:30;;8313:89;;8361:30;;-1:-1:-1;;;8361:30:30;;8388:1;8361:30;;;3980:51:39;3953:18;;8361:30:30;3834:203:39;8313:89:30;8411:35;8419:7;8436:1;8440:5;8411:7;:35::i;4650:191:3:-;4716:17;4762:10;4749:9;:23;4745:62;;4781:26;;-1:-1:-1;;;4781:26:3;;4797:9;4781:26;;;6550:25:39;6523:18;;4781:26:3;6404:177:39;4745:62:3;-1:-1:-1;4824:10:3;4650:191::o;5218:410::-;5371:15;5389:8;-1:-1:-1;;;;;5389:16:3;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5371:36;-1:-1:-1;;;;;;5421:21:3;;5417:54;;5451:20;;-1:-1:-1;;;5451:20:3;;;;;;;;;;;5417:54;5545:76;-1:-1:-1;;;;;5545:32:3;;5578:10;5598:8;5609:11;5545:32;:76::i;7721:208:30:-;-1:-1:-1;;;;;7791:21:30;;7787:91;;7835:32;;-1:-1:-1;;;7835:32:30;;7864:1;7835:32;;;3980:51:39;3953:18;;7835:32:30;3834:203:39;7787:91:30;7887:35;7903:1;7907:7;7916:5;7887:7;:35::i;1702:188:34:-;1829:53;;;-1:-1:-1;;;;;32262:15:39;;;1829:53:34;;;32244:34:39;32314:15;;;32294:18;;;32287:43;32346:18;;;;32339:34;;;1829:53:34;;;;;;;;;;32179:18:39;;;;1829:53:34;;;;;;;;-1:-1:-1;;;;;1829:53:34;-1:-1:-1;;;1829:53:34;;;1802:81;;1822:5;;1829:53;-1:-1:-1;;4504:33:34;;1844:18;;1829:53;4504:27;:33::i;:::-;4478:59;;4551:10;:17;4572:1;4551:22;;:57;;;;;4589:10;4578:30;;;;;;;;;;;;:::i;:::-;4577:31;4551:57;4547:135;;;4631:40;;-1:-1:-1;;;4631:40:34;;-1:-1:-1;;;;;3998:32:39;;4631:40:34;;;3980:51:39;3953:18;;4631:40:34;3834:203:39;2705:151:35;2780:12;2811:38;2833:6;2841:4;2847:1;2780:12;3421;3435:23;3462:6;-1:-1:-1;;;;;3462:11:35;3481:5;3488:4;3462:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3420:73;;;;3510:55;3537:6;3545:7;3554:10;4769:12;4798:7;4793:408;;4821:19;4829:10;4821:7;:19::i;:::-;4793:408;;;5045:17;;:22;:49;;;;-1:-1:-1;;;;;;5071:18:35;;;:23;5045:49;5041:119;;;5121:24;;-1:-1:-1;;;5121:24:35;;-1:-1:-1;;;;;3998:32:39;;5121:24:35;;;3980:51:39;3953:18;;5121:24:35;3834:203:39;5041:119:35;-1:-1:-1;5180:10:35;5173:17;;5743:516;5874:17;;:21;5870:383;;6102:10;6096:17;6158:15;6145:10;6141:2;6137:19;6130:44;5870:383;6225:17;;-1:-1:-1;;;6225:17:35;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:131:39:-;-1:-1:-1;;;;;89:31:39;;79:42;;69:70;;135:1;132;125:12;150:388;218:6;226;279:2;267:9;258:7;254:23;250:32;247:52;;;295:1;292;285:12;247:52;334:9;321:23;353:31;378:5;353:31;:::i;:::-;403:5;-1:-1:-1;460:2:39;445:18;;432:32;473:33;432:32;473:33;:::i;:::-;525:7;515:17;;;150:388;;;;;:::o;543:250::-;628:1;638:113;652:6;649:1;646:13;638:113;;;728:11;;;722:18;709:11;;;702:39;674:2;667:10;638:113;;;-1:-1:-1;;785:1:39;767:16;;760:27;543:250::o;798:271::-;840:3;878:5;872:12;905:6;900:3;893:19;921:76;990:6;983:4;978:3;974:14;967:4;960:5;956:16;921:76;:::i;:::-;1051:2;1030:15;-1:-1:-1;;1026:29:39;1017:39;;;;1058:4;1013:50;;798:271;-1:-1:-1;;798:271:39:o;1074:220::-;1223:2;1212:9;1205:21;1186:4;1243:45;1284:2;1273:9;1269:18;1261:6;1243:45;:::i;1299:315::-;1367:6;1375;1428:2;1416:9;1407:7;1403:23;1399:32;1396:52;;;1444:1;1441;1434:12;1396:52;1483:9;1470:23;1502:31;1527:5;1502:31;:::i;:::-;1552:5;1604:2;1589:18;;;;1576:32;;-1:-1:-1;;;1299:315:39:o;1811:158::-;1873:5;1918:3;1909:6;1904:3;1900:16;1896:26;1893:46;;;1935:1;1932;1925:12;1893:46;-1:-1:-1;1957:6:39;1811:158;-1:-1:-1;1811:158:39:o;1974:360::-;2062:6;2115:2;2103:9;2094:7;2090:23;2086:32;2083:52;;;2131:1;2128;2121:12;2083:52;2171:9;2158:23;-1:-1:-1;;;;;2196:6:39;2193:30;2190:50;;;2236:1;2233;2226:12;2190:50;2259:69;2320:7;2311:6;2300:9;2296:22;2259:69;:::i;2493:1336::-;2413:12;;2401:25;;2475:4;2464:16;;;2458:23;2442:14;;;2435:47;2859:4;2907:3;2892:19;;2984:2;3022:3;3017:2;3006:9;3002:18;2995:31;3046:6;3081;3075:13;3112:6;3104;3097:22;3150:3;3139:9;3135:19;3128:26;;3213:3;3203:6;3200:1;3196:14;3185:9;3181:30;3177:40;3163:54;;3236:4;3275;3267:6;3263:17;3298:1;3308:429;3322:6;3319:1;3316:13;3308:429;;;3387:22;;;-1:-1:-1;;3383:37:39;3371:50;;3444:13;;3485:9;;3470:25;;3534:11;;3528:18;3566:15;;;3559:27;;;3609:48;3641:15;;;3528:18;3609:48;:::i;:::-;3599:58;-1:-1:-1;;3715:12:39;;;;3680:15;;;;3344:1;3337:9;3308:429;;;-1:-1:-1;;2413:12:39;;3819:2;3804:18;;2401:25;-1:-1:-1;;;2475:4:39;2464:16;;2458:23;2442:14;;;2435:47;-1:-1:-1;3754:6:39;-1:-1:-1;3769:54:39;2339:149;4042:154;4101:5;4146:2;4137:6;4132:3;4128:16;4124:25;4121:45;;;4162:1;4159;4152:12;4201:347;4252:8;4262:6;4316:3;4309:4;4301:6;4297:17;4293:27;4283:55;;4334:1;4331;4324:12;4283:55;-1:-1:-1;4357:20:39;;-1:-1:-1;;;;;4389:30:39;;4386:50;;;4432:1;4429;4422:12;4386:50;4469:4;4461:6;4457:17;4445:29;;4521:3;4514:4;4505:6;4497;4493:19;4489:30;4486:39;4483:59;;;4538:1;4535;4528:12;4483:59;4201:347;;;;;:::o;4553:1048::-;4696:6;4704;4712;4720;4728;4736;4744;4797:3;4785:9;4776:7;4772:23;4768:33;4765:53;;;4814:1;4811;4804:12;4765:53;4837;4882:7;4871:9;4837:53;:::i;:::-;4827:63;;4937:2;4926:9;4922:18;4909:32;4899:42;;4992:3;4981:9;4977:19;4964:33;-1:-1:-1;;;;;5057:2:39;5049:6;5046:14;5043:34;;;5073:1;5070;5063:12;5043:34;5112:58;5162:7;5153:6;5142:9;5138:22;5112:58;:::i;:::-;5189:8;;-1:-1:-1;5086:84:39;-1:-1:-1;5274:3:39;5259:19;;5246:33;;-1:-1:-1;5288:31:39;5246:33;5288:31;:::i;:::-;5338:5;;-1:-1:-1;5396:3:39;5381:19;;5368:33;;5413:16;;;5410:36;;;5442:1;5439;5432:12;5410:36;;5481:60;5533:7;5522:8;5511:9;5507:24;5481:60;:::i;:::-;4553:1048;;;;-1:-1:-1;4553:1048:39;;-1:-1:-1;4553:1048:39;;;;5455:86;;-1:-1:-1;;;4553:1048:39:o;6586:456::-;6663:6;6671;6679;6732:2;6720:9;6711:7;6707:23;6703:32;6700:52;;;6748:1;6745;6738:12;6700:52;6787:9;6774:23;6806:31;6831:5;6806:31;:::i;:::-;6856:5;-1:-1:-1;6913:2:39;6898:18;;6885:32;6926:33;6885:32;6926:33;:::i;:::-;6586:456;;6978:7;;-1:-1:-1;;;7032:2:39;7017:18;;;;7004:32;;6586:456::o;7236:163::-;7303:20;;7363:10;7352:22;;7342:33;;7332:61;;7389:1;7386;7379:12;7332:61;7236:163;;;:::o;7404:252::-;7471:6;7479;7532:2;7520:9;7511:7;7507:23;7503:32;7500:52;;;7548:1;7545;7538:12;7500:52;7571:28;7589:9;7571:28;:::i;7661:118::-;7747:5;7740:13;7733:21;7726:5;7723:32;7713:60;;7769:1;7766;7759:12;7784:489;7878:6;7886;7939:2;7927:9;7918:7;7914:23;7910:32;7907:52;;;7955:1;7952;7945:12;7907:52;7995:9;7982:23;-1:-1:-1;;;;;8020:6:39;8017:30;8014:50;;;8060:1;8057;8050:12;8014:50;8083:69;8144:7;8135:6;8124:9;8120:22;8083:69;:::i;:::-;8073:79;;;8202:2;8191:9;8187:18;8174:32;8215:28;8237:5;8215:28;:::i;8278:257::-;2413:12;;2401:25;;2475:4;2464:16;;;2458:23;2442:14;;;2435:47;8472:2;8457:18;;8484:45;2339:149;8540:159;8607:20;;8667:6;8656:18;;8646:29;;8636:57;;8689:1;8686;8679:12;8704:256;8770:6;8778;8831:2;8819:9;8810:7;8806:23;8802:32;8799:52;;;8847:1;8844;8837:12;8799:52;8870:28;8888:9;8870:28;:::i;:::-;8860:38;;8917:37;8950:2;8939:9;8935:18;8917:37;:::i;:::-;8907:47;;8704:256;;;;;:::o;9425:247::-;9484:6;9537:2;9525:9;9516:7;9512:23;9508:32;9505:52;;;9553:1;9550;9543:12;9505:52;9592:9;9579:23;9611:31;9636:5;9611:31;:::i;9677:366::-;9739:8;9749:6;9803:3;9796:4;9788:6;9784:17;9780:27;9770:55;;9821:1;9818;9811:12;9770:55;-1:-1:-1;9844:20:39;;-1:-1:-1;;;;;9876:30:39;;9873:50;;;9919:1;9916;9909:12;9873:50;9956:4;9948:6;9944:17;9932:29;;10016:3;10009:4;9999:6;9996:1;9992:14;9984:6;9980:27;9976:38;9973:47;9970:67;;;10033:1;10030;10023:12;10048:435;10133:6;10141;10194:2;10182:9;10173:7;10169:23;10165:32;10162:52;;;10210:1;10207;10200:12;10162:52;10250:9;10237:23;-1:-1:-1;;;;;10275:6:39;10272:30;10269:50;;;10315:1;10312;10305:12;10269:50;10354:69;10415:7;10406:6;10395:9;10391:22;10354:69;:::i;:::-;10442:8;;10328:95;;-1:-1:-1;10048:435:39;-1:-1:-1;;;;10048:435:39:o;11172:184::-;11230:6;11283:2;11271:9;11262:7;11258:23;11254:32;11251:52;;;11299:1;11296;11289:12;11251:52;11322:28;11340:9;11322:28;:::i;11543:553::-;11629:6;11637;11645;11653;11706:2;11694:9;11685:7;11681:23;11677:32;11674:52;;;11722:1;11719;11712:12;11674:52;11745:28;11763:9;11745:28;:::i;:::-;11735:38;;11792:37;11825:2;11814:9;11810:18;11792:37;:::i;:::-;11782:47;;11880:2;11869:9;11865:18;11852:32;-1:-1:-1;;;;;11899:6:39;11896:30;11893:50;;;11939:1;11936;11929:12;11893:50;11978:58;12028:7;12019:6;12008:9;12004:22;11978:58;:::i;:::-;11543:553;;;;-1:-1:-1;12055:8:39;-1:-1:-1;;;;11543:553:39:o;12575:657::-;12713:6;12721;12729;12773:9;12764:7;12760:23;12803:3;12799:2;12795:12;12792:32;;;12820:1;12817;12810:12;12792:32;12860:9;12847:23;-1:-1:-1;;;;;12885:6:39;12882:30;12879:50;;;12925:1;12922;12915:12;12879:50;12948:69;13009:7;13000:6;12989:9;12985:22;12948:69;:::i;:::-;12938:79;-1:-1:-1;;13051:2:39;-1:-1:-1;;13033:16:39;;13029:25;13026:45;;;13067:1;13064;13057:12;13026:45;;13105:2;13094:9;13090:18;13080:28;;13158:2;13147:9;13143:18;13130:32;13171:31;13196:5;13171:31;:::i;:::-;13221:5;13211:15;;;12575:657;;;;;:::o;13237:613::-;13481:4;13523:3;13512:9;13508:19;13500:27;;13560:6;13554:13;13543:9;13536:32;-1:-1:-1;;;;;13628:4:39;13620:6;13616:17;13610:24;13606:49;13599:4;13588:9;13584:20;13577:79;13703:4;13695:6;13691:17;13685:24;13718:62;13774:4;13763:9;13759:20;13745:12;2413;;2401:25;;2475:4;2464:16;;;2458:23;2442:14;;2435:47;2339:149;13718:62;-1:-1:-1;2413:12:39;;13839:3;13824:19;;2401:25;2475:4;2464:16;;2458:23;2442:14;;;2435:47;13789:55;2339:149;13855:236;13940:6;13993:2;13981:9;13972:7;13968:23;13964:32;13961:52;;;14009:1;14006;13999:12;13961:52;14032:53;14077:7;14066:9;14032:53;:::i;14096:380::-;14175:1;14171:12;;;;14218;;;14239:61;;14293:4;14285:6;14281:17;14271:27;;14239:61;14346:2;14338:6;14335:14;14315:18;14312:38;14309:161;;14392:10;14387:3;14383:20;14380:1;14373:31;14427:4;14424:1;14417:15;14455:4;14452:1;14445:15;14481:127;14542:10;14537:3;14533:20;14530:1;14523:31;14573:4;14570:1;14563:15;14597:4;14594:1;14587:15;14881:127;14942:10;14937:3;14933:20;14930:1;14923:31;14973:4;14970:1;14963:15;14997:4;14994:1;14987:15;15013:335;15117:4;15175:11;15162:25;15269:2;15265:7;15254:8;15238:14;15234:29;15230:43;15210:18;15206:68;15196:96;;15288:1;15285;15278:12;15196:96;15309:33;;;;;15013:335;-1:-1:-1;;15013:335:39:o;15353:521::-;15430:4;15436:6;15496:11;15483:25;15590:2;15586:7;15575:8;15559:14;15555:29;15551:43;15531:18;15527:68;15517:96;;15609:1;15606;15599:12;15517:96;15636:33;;15688:20;;;-1:-1:-1;;;;;;15720:30:39;;15717:50;;;15763:1;15760;15753:12;15717:50;15796:4;15784:17;;-1:-1:-1;15827:14:39;15823:27;;;15813:38;;15810:58;;;15864:1;15861;15854:12;15879:184;15937:6;15990:2;15978:9;15969:7;15965:23;15961:32;15958:52;;;16006:1;16003;15996:12;15958:52;16029:28;16047:9;16029:28;:::i;16193:542::-;16294:2;16289:3;16286:11;16283:446;;;16330:1;16354:5;16351:1;16344:16;16398:4;16395:1;16385:18;16468:2;16456:10;16452:19;16449:1;16445:27;16439:4;16435:38;16504:4;16492:10;16489:20;16486:47;;;-1:-1:-1;16527:4:39;16486:47;16582:2;16577:3;16573:12;16570:1;16566:20;16560:4;16556:31;16546:41;;16637:82;16655:2;16648:5;16645:13;16637:82;;;16700:17;;;16681:1;16670:13;16637:82;;;16641:3;;;16193:542;;;:::o;16911:1202::-;-1:-1:-1;;;;;17028:3:39;17025:27;17022:53;;;17055:18;;:::i;:::-;17084:93;17173:3;17133:38;17165:4;17159:11;17133:38;:::i;:::-;17127:4;17084:93;:::i;:::-;17203:1;17228:2;17223:3;17220:11;17245:1;17240:615;;;;17899:1;17916:3;17913:93;;;-1:-1:-1;17972:19:39;;;17959:33;17913:93;-1:-1:-1;;16868:1:39;16864:11;;;16860:24;16856:29;16846:40;16892:1;16888:11;;;16843:57;18019:78;;17213:894;;17240:615;16140:1;16133:14;;;16177:4;16164:18;;-1:-1:-1;;17276:17:39;;;17376:9;17398:229;17412:7;17409:1;17406:14;17398:229;;;17501:19;;;17488:33;17473:49;;17608:4;17593:20;;;;17561:1;17549:14;;;;17428:12;17398:229;;;17402:3;17655;17646:7;17643:16;17640:159;;;17779:1;17775:6;17769:3;17763;17760:1;17756:11;17752:21;17748:34;17744:39;17731:9;17726:3;17722:19;17709:33;17705:79;17697:6;17690:95;17640:159;;;17842:1;17836:3;17833:1;17829:11;17825:19;17819:4;17812:33;17213:894;;16911:1202;;;:::o;18118:266::-;18206:6;18201:3;18194:19;18258:6;18251:5;18244:4;18239:3;18235:14;18222:43;-1:-1:-1;18310:1:39;18285:16;;;18303:4;18281:27;;;18274:38;;;;18366:2;18345:15;;;-1:-1:-1;;18341:29:39;18332:39;;;18328:50;;18118:266::o;18389:1772::-;18644:2;18696:21;;;18669:18;;;18752:22;;;18615:4;;18793:2;18811:18;;;18875:1;18871:14;;;18856:30;;18852:39;;18914:6;18615:4;18948:1184;18962:6;18959:1;18956:13;18948:1184;;;19027:22;;;-1:-1:-1;;19023:36:39;19011:49;;19099:20;;19174:14;19170:27;;;-1:-1:-1;;19166:41:39;19142:66;;19132:94;;19222:1;19219;19212:12;19132:94;19252:31;;19306:4;19368:10;19342:24;19252:31;19342:24;:::i;:::-;19338:41;19330:6;19323:57;19456:6;19421:33;19450:2;19443:5;19439:14;19421:33;:::i;:::-;19417:46;19412:2;19404:6;19400:15;19393:71;19529:2;19522:5;19518:14;19505:28;19618:2;19614:7;19606:5;19590:14;19586:26;19582:40;19560:20;19556:67;19546:95;;19637:1;19634;19627:12;19546:95;19669:32;;;19777:16;;;;-1:-1:-1;19728:21:39;-1:-1:-1;;;;;19809:30:39;;19806:50;;;19852:1;19849;19842:12;19806:50;19905:6;19889:14;19885:27;19876:7;19872:41;19869:61;;;19926:1;19923;19916:12;19869:61;19967:2;19962;19954:6;19950:15;19943:27;19993:59;20048:2;20040:6;20036:15;20028:6;20019:7;19993:59;:::i;:::-;20110:12;;;;19983:69;-1:-1:-1;;;20075:15:39;;;;-1:-1:-1;18984:1:39;18977:9;18948:1184;;;-1:-1:-1;20149:6:39;;18389:1772;-1:-1:-1;;;;;;;;18389:1772:39:o;20166:331::-;20271:9;20282;20324:8;20312:10;20309:24;20306:44;;;20346:1;20343;20336:12;20306:44;20375:6;20365:8;20362:20;20359:40;;;20395:1;20392;20385:12;20359:40;-1:-1:-1;;20421:23:39;;;20466:25;;;;;-1:-1:-1;20166:331:39:o;20502:476::-;20693:3;20731:6;20725:13;20747:66;20806:6;20801:3;20794:4;20786:6;20782:17;20747:66;:::i;:::-;20835:16;;20888:6;20880;20835:16;20860:35;20952:1;20914:18;;20941:13;;;-1:-1:-1;20914:18:39;;20502:476;-1:-1:-1;;;20502:476:39:o;20983:244::-;21140:2;21129:9;21122:21;21103:4;21160:61;21217:2;21206:9;21202:18;21194:6;21186;21160:61;:::i;21232:331::-;21331:4;21389:11;21376:25;21483:3;21479:8;21468;21452:14;21448:29;21444:44;21424:18;21420:69;21410:97;;21503:1;21500;21493:12;21568:129;-1:-1:-1;;;;;21646:5:39;21642:30;21635:5;21632:41;21622:69;;21687:1;21684;21677:12;21702:992;22080:10;22053:25;22071:6;22053:25;:::i;:::-;22049:42;22038:9;22031:61;22155:4;22147:6;22143:17;22130:31;22123:4;22112:9;22108:20;22101:61;22012:4;22209;22201:6;22197:17;22184:31;22224:30;22248:5;22224:30;:::i;:::-;-1:-1:-1;;;;;22296:5:39;22292:30;22285:4;22274:9;22270:20;22263:60;;22359:6;22354:2;22343:9;22339:18;22332:34;22403:3;22397;22386:9;22382:19;22375:32;22430:62;22487:3;22476:9;22472:19;22464:6;22456;22430:62;:::i;:::-;-1:-1:-1;;;;;22529:32:39;;22549:3;22508:19;;22501:61;22599:22;;;22593:3;22578:19;;22571:51;22639:49;22603:6;22673;22665;22639:49;:::i;:::-;22631:57;21702:992;-1:-1:-1;;;;;;;;;;21702:992:39:o;22699:246::-;22766:2;22760:9;;;22796:15;;-1:-1:-1;;;;;22826:34:39;;22862:22;;;22823:62;22820:88;;;22888:18;;:::i;:::-;22924:2;22917:22;22699:246;:::o;22950:896::-;23029:6;23082:2;23070:9;23061:7;23057:23;23053:32;23050:52;;;23098:1;23095;23088:12;23050:52;23131:9;23125:16;-1:-1:-1;;;;;23201:2:39;23193:6;23190:14;23187:34;;;23217:1;23214;23207:12;23187:34;23255:6;23244:9;23240:22;23230:32;;23300:7;23293:4;23289:2;23285:13;23281:27;23271:55;;23322:1;23319;23312:12;23271:55;23351:2;23345:9;23373:2;23369;23366:10;23363:36;;;23379:18;;:::i;:::-;23454:2;23448:9;23422:2;23508:13;;-1:-1:-1;;23504:22:39;;;23528:2;23500:31;23496:40;23484:53;;;23552:18;;;23572:22;;;23549:46;23546:72;;;23598:18;;:::i;:::-;23638:10;23634:2;23627:22;23673:2;23665:6;23658:18;23713:7;23708:2;23703;23699;23695:11;23691:20;23688:33;23685:53;;;23734:1;23731;23724:12;23685:53;23747:68;23812:2;23807;23799:6;23795:15;23790:2;23786;23782:11;23747:68;:::i;23851:343::-;23940:6;23993:2;23981:9;23972:7;23968:23;23964:32;23961:52;;;24009:1;24006;23999:12;23961:52;24035:17;;:::i;:::-;24088:9;24075:23;24068:5;24061:38;24159:2;24148:9;24144:18;24131:32;24126:2;24119:5;24115:14;24108:56;24183:5;24173:15;;;23851:343;;;;:::o;24917:245::-;24975:6;25028:2;25016:9;25007:7;25003:23;24999:32;24996:52;;;25044:1;25041;25034:12;24996:52;25083:9;25070:23;25102:30;25126:5;25102:30;:::i;25167:479::-;25434:1;25430;25425:3;25421:11;25417:19;25409:6;25405:32;25394:9;25387:51;25474:6;25469:2;25458:9;25454:18;25447:34;25529:6;25521;25517:19;25512:2;25501:9;25497:18;25490:47;25573:3;25568:2;25557:9;25553:18;25546:31;25368:4;25594:46;25635:3;25624:9;25620:19;25612:6;25594:46;:::i;26001:379::-;26194:2;26183:9;26176:21;26157:4;26220:45;26261:2;26250:9;26246:18;26238:6;26220:45;:::i;:::-;26313:9;26305:6;26301:22;26296:2;26285:9;26281:18;26274:50;26341:33;26367:6;26359;26341:33;:::i;26385:245::-;26452:6;26505:2;26493:9;26484:7;26480:23;26476:32;26473:52;;;26521:1;26518;26511:12;26473:52;26553:9;26547:16;26572:28;26594:5;26572:28;:::i;26635:891::-;26858:2;26847:9;26840:21;26916:10;26907:6;26901:13;26897:30;26892:2;26881:9;26877:18;26870:58;26982:4;26974:6;26970:17;26964:24;26959:2;26948:9;26944:18;26937:52;26821:4;27036:2;27028:6;27024:15;27018:22;27077:4;27071:3;27060:9;27056:19;27049:33;27105:52;27152:3;27141:9;27137:19;27123:12;27105:52;:::i;:::-;27091:66;;27206:2;27198:6;27194:15;27188:22;27280:2;27276:7;27264:9;27256:6;27252:22;27248:36;27241:4;27230:9;27226:20;27219:66;27308:41;27342:6;27326:14;27308:41;:::i;:::-;27418:3;27406:16;;;;27400:23;27393:31;27386:39;27380:3;27365:19;;27358:68;-1:-1:-1;;;;;;;;27487:32:39;;;;27480:4;27465:20;;;27458:62;27294:55;26635:891::o;27531:279::-;27601:5;27649:4;27637:9;27632:3;27628:19;27624:30;27621:50;;;27667:1;27664;27657:12;27621:50;27689:17;;:::i;:::-;27680:26;;27735:9;27729:16;27722:5;27715:31;27799:2;27788:9;27784:18;27778:25;27773:2;27766:5;27762:14;27755:49;27531:279;;;;:::o;27815:259::-;27915:6;27968:2;27956:9;27947:7;27943:23;27939:32;27936:52;;;27984:1;27981;27974:12;27936:52;28007:61;28060:7;28049:9;28007:61;:::i;28079:318::-;-1:-1:-1;;;;;;28199:19:39;;28270:11;;;;28301:1;28293:10;;28290:101;;;28378:2;28372;28365:3;28362:1;28358:11;28355:1;28351:19;28347:28;28343:2;28339:37;28335:46;28326:55;;28290:101;;;28079:318;;;;:::o;28402:683::-;28506:6;28559:3;28547:9;28538:7;28534:23;28530:33;28527:53;;;28576:1;28573;28566:12;28527:53;28609:2;28603:9;28651:4;28643:6;28639:17;28722:6;28710:10;28707:22;-1:-1:-1;;;;;28674:10:39;28671:34;28668:62;28665:88;;;28733:18;;:::i;:::-;28769:2;28762:22;28808:16;;28793:32;;28868:2;28853:18;;28847:25;28881:30;28847:25;28881:30;:::i;:::-;28939:2;28927:15;;28920:30;28983:70;29045:7;29040:2;29025:18;;28983:70;:::i;:::-;28978:2;28966:15;;28959:95;28970:6;28402:683;-1:-1:-1;;;28402:683:39:o;29090:127::-;29151:10;29146:3;29142:20;29139:1;29132:31;29182:4;29179:1;29172:15;29206:4;29203:1;29196:15;29222:217;29262:1;29288;29278:132;;29332:10;29327:3;29323:20;29320:1;29313:31;29367:4;29364:1;29357:15;29395:4;29392:1;29385:15;29278:132;-1:-1:-1;29424:9:39;;29222:217::o;29444:168::-;29517:9;;;29548;;29565:15;;;29559:22;;29545:37;29535:71;;29586:18;;:::i;29617:255::-;29737:19;;29776:2;29768:11;;29765:101;;;-1:-1:-1;;29837:2:39;29833:12;;;29830:1;29826:20;29822:33;29811:45;29617:255;;;;:::o;29877:331::-;-1:-1:-1;;;;;;29997:19:39;;30081:11;;;;30112:1;30104:10;;30101:101;;;30173:1;30169:11;;;;30166:1;30162:19;30158:28;;;30150:37;30146:46;;;;29877:331;-1:-1:-1;;29877:331:39:o;30213:568::-;-1:-1:-1;;;;;30478:3:39;30474:28;30465:6;30460:3;30456:16;30452:51;30447:3;30440:64;30564:10;30559:3;30555:20;30546:6;30541:3;30537:16;30533:43;30529:1;30524:3;30520:11;30513:64;30607:6;30602:2;30597:3;30593:12;30586:28;30422:3;30643:6;30637:13;30659:75;30727:6;30722:2;30717:3;30713:12;30706:4;30698:6;30694:17;30659:75;:::i;:::-;30754:16;;;;30772:2;30750:25;;30213:568;-1:-1:-1;;;;;30213:568:39:o;30786:125::-;30851:9;;;30872:10;;;30869:36;;;30885:18;;:::i;31211:532::-;31452:6;31447:3;31440:19;-1:-1:-1;;;;;31515:3:39;31511:28;31502:6;31497:3;31493:16;31489:51;31484:2;31479:3;31475:12;31468:73;31571:6;31566:2;31561:3;31557:12;31550:28;31422:3;31607:6;31601:13;31623:73;31689:6;31684:2;31679:3;31675:12;31670:2;31662:6;31658:15;31623:73;:::i;:::-;31716:16;;;;31734:2;31712:25;;31211:532;-1:-1:-1;;;;;31211:532:39:o;31748:251::-;31818:6;31871:2;31859:9;31850:7;31846:23;31842:32;31839:52;;;31887:1;31884;31877:12;31839:52;31919:9;31913:16;31938:31;31963:5;31938:31;:::i;32384:287::-;32513:3;32551:6;32545:13;32567:66;32626:6;32621:3;32614:4;32606:6;32602:17;32567:66;:::i

Swarm Source

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